getRelPos: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1.56)
No edit summary
Line 33: Line 33:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dt class="note">'''[[User:talkingtoaj|talkingtoaj]]'''<dd class="note">
getPos will achieve the same function, but also permits positions as well as objects
<dd class="notedate">Posted on 3 March, 2016
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>

Revision as of 16:53, 3 March 2016

Hover & click on the images for description

Description

Description:
Returns position, which is given distance and relative direction away from original object.
Groups:
Uncategorised

Syntax

Syntax:
object getRelPos [distance, direction]
Parameters:
object: Object - object
[distance, direction]: Array
distance: Number - distance from object
direction: Number - direction relative to object's current direction
Return Value:
Array - format [x,y,z], where z is land surface in format PositionAGL

Examples

Example 1:
Find position 100 metres away at player's 3 o'clock:_relpos = player getRelPos [100, 90];

Additional Information

See also:
getPosASLVisualgetPosATLVisualvisiblePositionASLvisiblePositionpositiongetPosgetPosATLgetPosASLgetPosASLW

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

talkingtoaj
getPos will achieve the same function, but also permits positions as well as objects
Posted on 3 March, 2016

Bottom Section