getPosASL
Categories: Scripting CommandsIntroduced with Arma version 1.00Arma: New Scripting CommandsArma: Scripting CommandsOperation Flashpoint: Scripting CommandsCommand Group: PositionsScripting Commands OFP 1.99Scripting Commands OFP EliteScripting Commands Armed AssaultScripting Commands Arma 2Scripting Commands Arma 3Scripting Commands Take On Helicopters
Description
- Description:
- Returns the object position height above sea level.
- Groups:
- Positions
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
Categories:
- Scripting Commands
- Introduced with Arma version 1.00
- Arma: New Scripting Commands
- Arma: Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Positions
- Scripting Commands OFP 1.99
- Scripting Commands OFP Elite
- Scripting Commands Armed Assault
- Scripting Commands Arma 2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters