ACE3/addons/goggles/functions/fnc_clearGlasses.sqf

40 lines
852 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: Garth 'L-H' de Wet
* Clears all dirt, rain, dust from glasses.
* Removes glasses effect (PP, overlay) and then puts it back.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
2015-09-29 19:28:57 +00:00
* call ace_goggles_fnc_clearGlasses
*
* Public: Yes
*/
private _unit = ACE_player;
2015-09-29 19:28:57 +00:00
private _broken = GETBROKEN;
private _effects = GLASSESDEFAULT;
_effects set [BROKEN, _broken];
2015-09-29 19:28:57 +00:00
SETGLASSES(_unit,_effects);
if ((stance _unit != "PRONE") && {primaryWeapon _unit != ""} && {currentWeapon _unit == primaryWeapon _unit}) then {
2016-07-12 14:16:01 +00:00
[_unit, "gestureWipeFace"] call EFUNC(common,doGesture);
};
2015-09-29 19:28:57 +00:00
[{
if (cameraView == "INTERNAL") then {
addCamShake [5, 1.75, 2];
};
}, [], 0.3] call CBA_fnc_waitAndExecute;
call FUNC(removeDirtEffect);
call FUNC(removeRainEffect);
call FUNC(removeDustEffect);