mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
469 B
Plaintext
30 lines
469 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Check if unit is underwater
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* if unit is in the water (BOOLEAN)
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
private "_return";
|
|
_return = false;
|
|
|
|
if (surfaceIsWater getPosASL _unit) then {
|
|
private "_pos";
|
|
_pos = _unit modelToWorldVisual (_unit selectionPosition "head");
|
|
|
|
if (_pos select 2 < 0) then {
|
|
_return = true;
|
|
};
|
|
};
|
|
|
|
_return
|