mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
370 B
Plaintext
21 lines
370 B
Plaintext
/*
|
|
Name: ACE_Goggles_fnc_RemoveRainEffect
|
|
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Removes rain effects from the screen. Resets the rain array.
|
|
|
|
Parameters:
|
|
Nothing
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
call ACE_Goggles_fnc_RemoveRainEffect;
|
|
*/
|
|
if (!isNull (ACE_Goggles_RainDrops)) then {
|
|
deleteVehicle (ACE_Goggles_RainDrops);
|
|
};
|
|
ACE_Goggles_Rain_Active = false; |