underwater

From Bohemia Interactive Community
Revision as of 18:44, 4 January 2023 by Lou Montana (talk | contribs) (Text replacement - "{{HashLink" to "{{Link")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Returns whether the object is fully underwater.
This command works well with Arma 3 mini-submarines, which was most likely the primary design goal.
Groups:
Object Manipulation

Syntax

Syntax:
underwater object
Parameters:
object: Object - mini-submarine
Return Value:
Boolean - true if submerged

Examples

Example 1:
private _isUnderwater = underwater vehicle player;
Example 2:
private _isHeadUnderwater = eyePos player select 2 < 0;

Additional Information

See also:
isTouchingGround isAbleToBreathe

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Killzone_Kid - c
Posted on Feb 02, 2017 - 18:08 (UTC)
This command is quite buggy with objects other than mini-subs. Code in Example 2 is a good alternative.