ACE3/addons/spectator/functions/fnc_ui_toggleUI.sqf
Kyle Mckay e47e18001f
Docs - Update my display name everywhere (#9330)
* Update display name in team

* Update display name everywhere

* order

https://youtu.be/VYycQTm2HrM

---------

Co-authored-by: BrettMayson <brett@mayson.io>
2023-08-17 12:02:17 +02:00

34 lines
678 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;