ACE3/addons/common/functions/fnc_isUnderwater.sqf

28 lines
477 B
Plaintext
Raw Normal View History

2015-10-19 21:28:50 +00:00
/*
* Author: Glowbal
* Check if unit's head is underwater
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* If unit's head is underwater <BOOL>
*
* Public: Yes
*/
#include "script_component.hpp"
params [["_unit", objNull, [objNull]]];
2015-10-19 21:28:50 +00:00
private _return = false;
2015-10-19 21:28:50 +00:00
if (surfaceIsWater getPosASL _unit) then {
private _pos = _unit modelToWorldVisual (_unit selectionPosition "head");
2015-10-19 21:28:50 +00:00
if (_pos select 2 < 0) then {
_return = true;
};
};
_return