ACE3/addons/goggles/functions/fnc_applyDirtEffect.sqf

41 lines
1.1 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
2015-09-29 17:51:41 +00:00
/*
* 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
*/
if (call FUNC(externalCamera)) exitWith {false};
private _unit = ACE_player;
2015-09-29 17:51:41 +00:00
private _effects = GETGLASSES(_unit);
2015-09-29 17:51:41 +00:00
_effects set [DIRT, true];
SETGLASSES(_unit,_effects);
if ([_unit] call FUNC(isGogglesVisible)) then {
2015-11-17 16:43:07 +00:00
private _dirtImage = getText (configFile >> "CfgGlasses" >> goggles _unit >> "ACE_OverlayDirt");
2015-09-29 17:51:41 +00:00
if (_dirtImage != "") then {
GVAR(GogglesEffectsLayer) cutRsc ["RscACE_GogglesEffects", "PLAIN", 0.1, false, false];
2015-09-29 17:51:41 +00:00
(GETUVAR(GVAR(DisplayEffects),displayNull) displayCtrl 10660) ctrlSetText _dirtImage;
private _effectBrightness = linearConversion [0,1,([] call EFUNC(common,ambientBrightness)),0.25,1];
(GETUVAR(GVAR(DisplayEffects),displayNull) displayCtrl 10660) ctrlSetTextColor [_effectBrightness, _effectBrightness, _effectBrightness, 1];
TRACE_1("dirt",_effectBrightness);
2015-09-29 17:51:41 +00:00
};
};
true