mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
367 B
Plaintext
22 lines
367 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Removes rain effects from the screen.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_goggles_fnc_removeRainEffect;
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
if (!isNull (GVAR(RainDrops))) then {
|
|
deleteVehicle (GVAR(RainDrops));
|
|
};
|
|
GVAR(RainActive) = false;
|
|
GVAR(RainLastLevel) = 0;
|