ACE3/addons/trenches/functions/fnc_canCamouflageTrench.sqf
Cyruz 1a95070b80
Trenches - Add camouflage action using surfaceTexture (#8935)
* Port 7833 to use surfaceTexture
* Add camo action
* Remove unused args from statement call
* Rogue missing space
* Add animation + delay for camo action
* Add authors
2022-07-15 15:42:00 +01:00

30 lines
675 B
Plaintext

#include "script_component.hpp"
/*
* Author: Cyruz
* Checks if a unit can camouflage a trench.
*
* Arguments:
* 0: Trench <OBJECT>
* 1: Unit <OBJECT>
*
* Return Value:
* Can camouflage <BOOL>
*
* Example:
* [TrenchObj, ACE_player] call ace_trenches_fnc_canCamouflageTrench
*
* Public: No
*/
params ["_trench", "_unit"];
if !("ACE_EntrenchingTool" in (_unit call EFUNC(common,uniqueItems))) exitWith {false};
// Prevent camouflage if not fully dug
if ((_trench getVariable [QGVAR(progress), 0]) != 1) exitWith {false};
// Prevent camouflage being applied once already camouflaged
if (_trench getVariable [QGVAR(camouflaged), false]) exitWith {false};
true