setMarkerPolyline: Difference between revisions
Jump to navigation
Jump to search
m (Removed redundant mp=) |
m (path argument) |
||
Line 20: | Line 20: | ||
|p1= marker: [[String]] | |p1= marker: [[String]] | ||
|p2= path: [[Array]] - <tt>[x1, y1, x2, y2, ... xn, yn]</tt> | |p2= path: [[Array]] - <tt>[x1, y1, x2, y2, ... xn, yn]</tt>{{Important| Be aware that this command expects an array with a minimum array size of 4 elements and that the array count always needs to be dividable by 4 | ||
and return a whole number.}} | |||
|r1= [[Nothing]] |Return Value= | |r1= [[Nothing]] |Return Value= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ |
Revision as of 01:59, 12 November 2020
Description
- Description:
- Sets a polyline marker's path.
- Groups:
- Markers
Syntax
- Syntax:
- marker setMarkerPolyline path
- Parameters:
- marker: String
- path: Array - [x1, y1, x2, y2, ... xn, yn]
- Return Value:
- Nothing
Examples
- Example 1:
- Changes "marker_1" into a polyline and draws a sine curve on your position
"marker_1" setMarkerShape "polyline"; private _return = [] ; for "_i" from 0 to 100 step 0.1 do { _return pushBack (_i + getPos player#0); _return pushBack ((sin (_i*10))*10 + getPos player#1); } ; "marker_1" setMarkerPolyline _return;
Additional Information
- See also:
- markerPolyline setMarkerPolylineLocal
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
[[Category:Introduced with arma3dev version ]][[ Category: arma3dev: New Scripting Commands | SETMARKERPOLYLINE]][[ Category: arma3dev: Scripting Commands | SETMARKERPOLYLINE]]