mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
368 B
Plaintext
22 lines
368 B
Plaintext
/*
|
|
fnc_removeDustEffect.sqf
|
|
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Removes dust from the glasses.
|
|
|
|
Parameters:
|
|
Nothing
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
call FUNC(RemoveDustEffect);
|
|
*/
|
|
#include "script_component.hpp"
|
|
if (!isNull(GETUVAR(GVAR(DisplayEffects),displayNull))) then {
|
|
(GETUVAR(GVAR(DisplayEffects),displayNull) displayCtrl 10662) ctrlSetText "";
|
|
};
|