mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
34 lines
681 B
Plaintext
34 lines
681 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Nelson Duarte, AACO, kymckay
|
|
* Function used to toggle the whole user interface
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_spectator_fnc_ui_toggleUI
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
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;
|