getPosASL: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (getTerrainHeightASL (see also))
m (note formate)
Line 39: Line 39:
<dt class="note">'''[[User:Floriangeyer|Floriangeyer]]'''<dd class="note">
<dt class="note">'''[[User:Floriangeyer|Floriangeyer]]'''<dd class="note">
According to [[Code Optimisation]], this function is the fastest (2x) and should be used instead of [[getPos]], [[getPosATL]] and [[position]].
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: <code>[[ASLtoATL]] getPosASL [[Object]];</code>
Conversion keep this speed ratio and is structured like: <code>[[ASLtoATL]] [[getPosASL]] [[Object]];</code>


<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 15:47, 1 August 2014

-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:
setPosASLsetPosASL2positiongetPosgetPosATLgetPosASLWvisiblePositionvisiblePositionASLgetTerrainHeightASL

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