mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
40 lines
872 B
Plaintext
40 lines
872 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Adds dirt effect to the glasses.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* Succeeded <BOOL>
|
|
*
|
|
* Example:
|
|
* _applied = call ace_goggles_fnc_applyDirtEffect
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (GVAR(showInThirdPerson)) exitWith {false};
|
|
if (call FUNC(externalCamera)) exitWith {false};
|
|
|
|
private ["_unit", "_effects"];
|
|
|
|
_unit = ACE_player;
|
|
|
|
_effects = GETGLASSES(_unit);
|
|
_effects set [DIRT, true];
|
|
|
|
SETGLASSES(_unit,_effects);
|
|
|
|
if ([_unit] call FUNC(isGogglesVisible)) then {
|
|
local _dirtImage = getText (configFile >> "CfgGlasses" >> goggles _unit >> "ACE_OverlayDirt");
|
|
|
|
if (_dirtImage != "") then {
|
|
GVAR(GogglesEffectsLayer) cutRsc ["RscACE_GogglesEffects", "PLAIN", 0.1, false];
|
|
(GETUVAR(GVAR(DisplayEffects),displayNull) displayCtrl 10660) ctrlSetText _dirtImage;
|
|
};
|
|
};
|
|
|
|
true
|