setMarkerPolylineLocal: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " <dl class="command_description"> <!-- BEGIN Note Section --> <!-- END Note Section --> </dl>" to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\|effect= * " to " ") |
||
Line 5: | Line 5: | ||
|version1= 2.01 | |version1= 2.01 | ||
|eff= local | |eff= local | ||
|gr1= Markers | |gr1= Markers |
Revision as of 15:49, 7 February 2021
Description
- Description:
- Sets a polyline marker's path. Works only on the computer that executes this command.
- Groups:
- Markers
Syntax
- Syntax:
- marker setMarkerPolylineLocal 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" setMarkerPolylineLocal _return;
Additional Information
- See also:
- markerPolyline setMarkerPolyline
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 2.01]][[ Category: arma3dev: New Scripting Commands | SETMARKERPOLYLINELOCAL]][[ Category: arma3dev: Scripting Commands | SETMARKERPOLYLINELOCAL]]