mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
379 B
Plaintext
20 lines
379 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Removes dirt from the glasses.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_goggles_fnc_removeDirtEffect;
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
if (!isNull(GETUVAR(GVAR(DisplayEffects),displayNull))) then {
|
|
(GETUVAR(GVAR(DisplayEffects),displayNull) displayCtrl 10660) ctrlSetText "";
|
|
};
|