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"
|
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
params [["_unit", objNull, [objNull]]];
|
2015-10-19 21:28:50 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _return = false;
|
2015-10-19 21:28:50 +00:00
|
|
|
|
|
|
|
if (surfaceIsWater getPosASL _unit) then {
|
2015-12-12 15:48:54 +00:00
|
|
|
private _pos = _unit modelToWorldVisual (_unit selectionPosition "head");
|
2015-10-19 21:28:50 +00:00
|
|
|
|
|
|
|
if (_pos select 2 < 0) then {
|
|
|
|
_return = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
_return
|