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: ACE_Goggles_fnc_RemoveDustEffect
|
|
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Removes dust from the glasses.
|
|
|
|
Parameters:
|
|
Nothing
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
call ACE_Goggles_fnc_RemoveDustEffect;
|
|
*/
|
|
if (!isNull(uiNamespace getVariable ["ACE_Goggles_DisplayEffects", displayNull])) then {
|
|
(uiNamespace getVariable ["ACE_Goggles_DisplayEffects", displayNull] displayCtrl 10662) ctrlSetText "";
|
|
};
|