ACE3/addons/gui/functions/fnc_effectBlackOut.sqf
Thomas Kooi 83128ad3d2 Fixed minor issues with unconscious & blackout effect.
Fixed error in XEH_postInit
2015-01-17 12:35:59 +01:00

29 lines
747 B
Plaintext

/**
* fn_effectBlackOut.sqf
* @Descr: Displays the blacked out effect for clients.
* @Author: Glowbal
*
* @Arguments: [displayEffect BOOL]
* @Return: void
* @PublicAPI: true
*/
#include "script_component.hpp"
private ["_displayEffect","_effect"];
_displayEffect = [_this, 0, false,[false]] call bis_fnc_param;
if (!hasInterface) exitwith {};
disableSerialization;
_effect = uiNamespace getVariable QGVAR(ScreenEffectsBlack);
if (isNil "_effect") then {
45 cutRsc [QGVAR(ScreenEffectsBlack),"PLAIN"];
_effect = uiNamespace getVariable QGVAR(ScreenEffectsBlack);
};
if (_displayEffect) then {
(_effect displayCtrl 11112) ctrlSetTextColor [0.0,0.0,0.0,0.9];
} else {
(_effect displayCtrl 11112) ctrlSetTextColor [0.0,0.0,0.0,0.0];
};