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_removeDirtEffect.sqf
|
|
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Removes dirt from the glasses.
|
|
|
|
Parameters:
|
|
Nothing
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
call FUNC(RemoveDirtEffect);
|
|
*/
|
|
#include "script_component.hpp"
|
|
if (!isNull(GETUVAR(GVAR(DisplayEffects),displayNull))) then {
|
|
(GETUVAR(GVAR(DisplayEffects),displayNull) displayCtrl 10660) ctrlSetText "";
|
|
};
|