setDirection: Difference between revisions

From Bohemia Interactive Community
(Fixed command group)
mNo edit summary
 
(9 intermediate revisions by one other user not shown)
Line 23: Line 23:


|p1= location: [[Location]]
|p1= location: [[Location]]
|p2= direction: [[Number]]
|p2= direction: [[Number]] in range 0..360


|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>_location = [[createLocation]] ["VegetationPalm", [[getPos]] [[player]], 200, 200];
|x1= <sqf>
_location [[setText]] "Benargee's Palm Tree";
_location = createLocation ["VegetationPalm", getPos player, 200, 200];
_location [[setDirection]] 45;</code>
_location setText "Benargee's Palm Tree";
_location setDirection 45;
</sqf>


|seealso= [[createLocation]], [[setText]], [[direction]]
|seealso= [[createLocation]] [[setText]] [[direction]]
}}
}}

Latest revision as of 06:58, 1 January 2026

Hover & click on the images for description

Description

Description:
Sets the orientation of a location. The location's area and map icon (if its type uses an icon) will be rotated to this orientation.
Groups:
Locations

Syntax

Syntax:
location setDirection direction
Parameters:
location: Location
direction: Number in range 0..360
Return Value:
Nothing

Examples

Example 1:
_location = createLocation ["VegetationPalm", getPos player, 200, 200]; _location setText "Benargee's Palm Tree"; _location setDirection 45;

Additional Information

See also:
createLocation setText direction

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note