ACE3/addons/spectator/functions/fnc_ui_toggleUI.sqf
SilentSpike d3ce75daef Spectator overhaul (#5171)
- 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.
2017-08-12 14:25:48 +01:00

35 lines
683 B
Plaintext

/*
* Author: Nelson Duarte, AACO, SilentSpike
* Function used to toggle the whole user interface
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* [] call ace_spectator_fnc_ui_toggleUI
*
* Public: No
*/
#include "script_component.hpp"
private _visible = !GVAR(uiVisible);
{
private _fade = 1;
if (_visible) then {
_fade = getNumber (configFile >> QGVAR(display) >> "Controls" >> ctrlClassName _x >> "fade");
};
_x ctrlSetFade _fade;
_x ctrlCommit 0.25;
} forEach [CTRL_LIST, CTRL_TABS, CTRL_CAM_TYPES, CTRL_WIDGET];
showChat !_visible;
playSound (["HintExpand","HintCollapse"] select _visible);
GVAR(uiVisible) = _visible;