getPosASL: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (note formate)
m (template:command argument fix)
(5 intermediate revisions by 3 users not shown)
Line 9: Line 9:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns the object position height above sea level. |= Description
| Returns the object position height above sea level. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Array]] <nowiki>=</nowiki> '''getPosASL''' object |= Syntax
| [[Array]] <nowiki>=</nowiki> '''getPosASL''' object |SYNTAX=


|p1= object: [[Object]] |= Parameter 1
|p1= object: [[Object]] |PARAMETER1=


| [[Array]] - format [[PositionASL]] |= Return value
| [[Array]] - format [[PositionASL]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_AslPos = [[getPosASL]] [[player]];</code> |= Example 1
|x1= <code>_AslPos = [[getPosASL]] [[player]];</code> |EXAMPLE1=
|x2= <code>[[hint]] [[format]] ["position above sea level: %1", ([[getPosASL]] [[player]]) [[select]] 2];</code> |= Example 2
|x2= <code>[[hint]] [[format]] ["position above sea level: %1", ([[getPosASL]] [[player]]) [[select]] 2];</code> |EXAMPLE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[setPosASL]], [[setPosASL2]], [[position]], [[getPos]], [[getPosATL]], [[getPosASLW]], [[visiblePosition]], [[visiblePositionASL]], [[getTerrainHeightASL]] |= See also
| [[getPosASLVisual]], [[setPosASL]], [[setPosASL2]], [[position]], [[getPos]], [[getPosATL]], [[getPosASLW]], [[visiblePosition]], [[visiblePositionASL]], [[getTerrainHeightASL]] |SEEALSO=


}}
}}
Line 46: Line 46:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|GETPOSASL]]
[[Category:Scripting Commands|GETPOSASL]]
[[Category:Scripting Commands OFP 1.99|GETPOSASL]]
[[Category:Scripting Commands OFP Elite |GETPOSASL]]
[[Category:Scripting Commands OFP Elite |GETPOSASL]]
[[Category:Scripting Commands ArmA|GETPOSASL]]
[[Category:Scripting Commands ArmA|GETPOSASL]]
Line 52: Line 53:
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on June 1, 2018 - 09:36 (UTC)</dd>
<dt class="note">[[User:Tankbuster|Tankbuster]]</dt>
<dd class="note">
Further to Florians post, getPosASL is indeed faster than position and getpos, but is no faster that getposATL
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 15:40, 7 April 2019

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Returns the object position height above sea level.
Groups:
Uncategorised

Syntax

Syntax:
Array = getPosASL object
Parameters:
object: Object
Return Value:
Array - format PositionASL

Examples

Example 1:
_AslPos = getPosASL player;
Example 2:
hint format ["position above sea level: %1", (getPosASL player) select 2];

Additional Information

See also:
getPosASLVisualsetPosASLsetPosASL2positiongetPosgetPosATLgetPosASLWvisiblePositionvisiblePositionASLgetTerrainHeightASL

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

Notes

Posted on 23 Feb, 2007
Dr_Eyeball
getPosASL _obj select 2; might sometimes return the vertical position above sea level, but over land for stacked objects, it returns the vertical position above the object beneath it or at least affected by this offset. The same problem exists for getPos. There was a discussion thread in the BIS forums which suggested the use of the command modelToWorld instead to get around this issue where an absolute vertical position is required. ArmA Ver 1.02.
Posted on 27 Mar, 2014
Floriangeyer
According to Code Optimisation, this function is the fastest (2x) and should be used instead of getPos, getPosATL and position. Conversion keep this speed ratio and is structured like: ASLtoATL getPosASL Object;

Bottom Section

Posted on June 1, 2018 - 09:36 (UTC)
Tankbuster
Further to Florians post, getPosASL is indeed faster than position and getpos, but is no faster that getposATL