locationPosition: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma1 |Game name=
| arma1 |Game name=
Line 11: Line 10:


|gr1= Locations |GROUP1=
|gr1= Locations |GROUP1=
____________________________________________________________________________________________


| Returns the [[Position|position]] of a location. If the location is attached to an object, that object's position is returned. |DESCRIPTION=
| Returns the [[Position|position]] of a location. If the location is attached to an object, that object's position is returned. |DESCRIPTION=
____________________________________________________________________________________________


| '''locationPosition''' location |SYNTAX=
| '''locationPosition''' location |SYNTAX=
Line 21: Line 18:


| [[Array]] - format [x,y,z], where z is <tt>-1 * [[getTerrainHeightASL]]</tt> at the location |RETURNVALUE=
| [[Array]] - format [x,y,z], where z is <tt>-1 * [[getTerrainHeightASL]]</tt> at the location |RETURNVALUE=
____________________________________________________________________________________________
   
   
|x1= <code>_locationPos = [[locationPosition]] myLocation;</code> |EXAMPLE1=
|x1= <code>_locationPos = [[locationPosition]] myLocation;</code> |EXAMPLE1=
Line 27: Line 23:
|x2= <code>_location = [[nearestLocation]] [<nowiki/>[[getPos]] [[player]], "nameCity"];
|x2= <code>_location = [[nearestLocation]] [<nowiki/>[[getPos]] [[player]], "nameCity"];
_locationPos = [[locationPosition]] _location;</code> |EXAMPLE2=
_locationPos = [[locationPosition]] _location;</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[setPosition]], [[createLocation]], [[nearestLocation]], [[nearestLocations]], [[position]], [[size]] |SEEALSO=
| [[setPosition]], [[createLocation]], [[nearestLocation]], [[nearestLocations]], [[position]], [[size]] |SEEALSO=

Revision as of 03:00, 17 January 2021

Hover & click on the images for description

Description

Description:
Returns the position of a location. If the location is attached to an object, that object's position is returned.
Groups:
Locations

Syntax

Syntax:
locationPosition location
Parameters:
location: Location
Return Value:
Array - format [x,y,z], where z is -1 * getTerrainHeightASL at the location

Examples

Example 1:
_locationPos = locationPosition myLocation;
Example 2:
_location = nearestLocation [getPos player, "nameCity"]; _locationPos = locationPosition _location;

Additional Information

See also:
setPositioncreateLocationnearestLocationnearestLocationspositionsize

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

Bottom Section