mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
418 B
Plaintext
21 lines
418 B
Plaintext
|
/*
|
||
|
Name: AGM_Goggles_fnc_RemoveDirtEffect
|
||
|
|
||
|
Author: Garth de Wet (LH)
|
||
|
|
||
|
Description:
|
||
|
Removes dirt from the glasses.
|
||
|
|
||
|
Parameters:
|
||
|
Nothing
|
||
|
|
||
|
Returns:
|
||
|
Nothing
|
||
|
|
||
|
Example:
|
||
|
call AGM_Goggles_fnc_RemoveDirtEffect;
|
||
|
*/
|
||
|
if (!isNull(uiNamespace getVariable ["AGM_Goggles_DisplayEffects", displayNull])) then {
|
||
|
(uiNamespace getVariable ["AGM_Goggles_DisplayEffects", displayNull] displayCtrl 10660) ctrlSetText "";
|
||
|
};
|