underwater: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ")
m (Text replacement - "{{HashLink" to "{{Link")
 
(8 intermediate revisions by the same user not shown)
Line 6: Line 6:
|gr1= Object Manipulation
|gr1= Object Manipulation


|descr= Returns whether the object is fully underwater{{Feature | Informative | This command works well with Arma 3 mini-submarines, which was the primary design goal most likely}}
|descr= Returns whether the object is fully underwater.
{{Feature|informative|This command works well with Arma 3 mini-submarines, which was most likely the primary design goal.}}


|s1= '''underwater''' object
|s1= [[underwater]] object


|p1= object: [[Object]] - mini-submarine
|p1= object: [[Object]] - mini-submarine
Line 14: Line 15:
|r1= [[Boolean]] - [[true]] if submerged
|r1= [[Boolean]] - [[true]] if submerged


|x1= <code>_isUnderwater = [[underwater]] [[vehicle]] [[player]];</code>
|x1= <sqf>private _isUnderwater = underwater vehicle player;</sqf>


|x2= <code>_isUnderwater = [[eyePos]] [[player]] [[select]] 2 < 0;</code>
|x2= <sqf>private _isHeadUnderwater = eyePos player select 2 < 0;</sqf>


|seealso= [[isTouchingGround]], [[isAbleToBreathe]]
|seealso= [[isTouchingGround]] [[isAbleToBreathe]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Killzone_Kid
<dt></dt>
|timestamp= 20170202180800
<dd class="notedate">Posted on February 2, 2017 - 18:08 (UTC)</dd>
|text= This command is quite buggy with objects other than mini-subs. Code in {{Link|#Example 2}} is a good alternative.
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
}}
<dd class="note"> This command is quite buggy with objects other than mini-subs. Code in Example 2 is a good alternative.
</dd>
 
</dl>

Latest revision as of 18:44, 4 January 2023

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.