mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d3ce75daef
- Overhauls the spectator module entirely to share a similar UX to BI's "End Game Spectator" while maintaining some of the extended flexibility of ACE Spectator. - Simplifies spectator setup by reducing the number of settings. More advanced setup is still possible via the API functions provided.
29 lines
609 B
Plaintext
29 lines
609 B
Plaintext
/*
|
|
* Author: Nelson Duarte
|
|
* Function used to handle child destroyed event
|
|
* This only matters when abort button is pressed in child escape menu
|
|
* Will close main display to exit client from mission
|
|
*
|
|
* Arguments:
|
|
* 0: Spectator display <DISPLAY>
|
|
* 1: Child display <DISPLAY>
|
|
* 2: Exit code of child <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* _this call ace_spectator_fnc_ui_handleChildDestroyed
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_display","_child","_exitCode"];
|
|
|
|
if (_exitCode == 104) then {
|
|
_display closeDisplay 2;
|
|
MAIN_DISPLAY closeDisplay 2;
|
|
};
|