BIS fnc rotateMarker: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (page filling)
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *N([a-z ])" to "$1 - n$2")
 
(21 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function
{{RV|type=function


|game1= arma3
|game1= arma3
|version1= 1.78
|version1= 1.78


<!--|exec= server|=-->
|gr1= Map and Markers


|arg= global
|arg= global
Line 13: Line 12:
|descr= Rotating a marker to new azimuth, using shortest turn, clockwise or anticlockwise movement.
|descr= Rotating a marker to new azimuth, using shortest turn, clockwise or anticlockwise movement.


|s1= [marker, newAzimuth, absoluteOrRelativ, shortestTurn, duraton] spawn [[BIS_fnc_rotateMarker]]


|s1= [marker, newAzimuth, absoluteOrRelativ, shortestTurn, duraton] [[spawn]] [[BIS_fnc_rotateMarker]]
|p1= marker: [[String]] - marker to rotate
 
|p1= marker: [[String]] - Marker to rotate


|p2= newAzimuth: [[Number]] - New azimuth
|p2= newAzimuth: [[Number]] - new azimuth


|p3= absoluteOrRelativ: [[Boolean]] - (Optional, default [[true]]) Defines if the azimuth is absolute [[true]] or relative [[false]]
|p3= absoluteOrRelativ: [[Boolean]] - (Optional, default [[true]]) defines if the azimuth is absolute [[true]] or relative [[false]]


|p4= shortestTurn: [[Number]] - (Optional, default 0) 0 - shortest turn (default, if used with relative dir, counter clockwise is used)<br>1 - force clockwise<br>2 - force counter clockwise
|p4= shortestTurn: [[Number]] - (Optional, default 0) 0 - shortest turn (default, if used with relative dir, counter clockwise is used)<br>1 - force clockwise<br>2 - force counter clockwise


|p5= duraton: [[Number]] - (Optional, default 2) Duraton for the complete rotation in seconds
|p5= duraton: [[Number]] - (Optional, default 2) duration for the complete rotation in seconds


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


|x1= <code>["BIS_marker",90] [[spawn]] [[BIS_fnc_rotateMarker]];</code>
|x1= <sqf>["BIS_marker",90] spawn BIS_fnc_rotateMarker;</sqf>


|x2= <code>["BIS_marker",90,[[false]],2,5] [[spawn]] [[BIS_fnc_rotateMarker]];</code>
|x2= <sqf>["BIS_marker",90,false,2,5] spawn BIS_fnc_rotateMarker;</sqf>


|exec= spawn
|exec= spawn


|seealso= [[BIS_fnc_blinkMarker]] [[BIS_fnc_resizeMarker]] [[BIS_fnc_moveMarker]]
|seealso= [[BIS_fnc_blinkMarker]] [[BIS_fnc_resizeMarker]] [[BIS_fnc_moveMarker]]
}}
}}
[[Category:Function Group: Map|{{uc:rotateMarker}}]]
[[Category:Functions|{{uc:rotateMarker}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:rotateMarker}}]]

Latest revision as of 16:39, 8 November 2023

Hover & click on the images for description

Description

Description:
Rotating a marker to new azimuth, using shortest turn, clockwise or anticlockwise movement.
Execution:
spawn
Groups:
Map and Markers

Syntax

Syntax:
[marker, newAzimuth, absoluteOrRelativ, shortestTurn, duraton] spawn BIS_fnc_rotateMarker
Parameters:
marker: String - marker to rotate
newAzimuth: Number - new azimuth
absoluteOrRelativ: Boolean - (Optional, default true) defines if the azimuth is absolute true or relative false
shortestTurn: Number - (Optional, default 0) 0 - shortest turn (default, if used with relative dir, counter clockwise is used)
1 - force clockwise
2 - force counter clockwise
duraton: Number - (Optional, default 2) duration for the complete rotation in seconds
Return Value:
Nothing

Examples

Example 1:
["BIS_marker",90] spawn BIS_fnc_rotateMarker;
Example 2:
["BIS_marker",90,false,2,5] spawn BIS_fnc_rotateMarker;

Additional Information

See also:
BIS_fnc_blinkMarker BIS_fnc_resizeMarker BIS_fnc_moveMarker

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