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: AGM_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 AGM_Goggles_fnc_RemoveRainEffect;
|
|
*/
|
|
if (!isNull (AGM_Goggles_RainDrops)) then {
|
|
deleteVehicle (AGM_Goggles_RainDrops);
|
|
};
|
|
AGM_Goggles_Rain_Active = false; |