setMarkerPolylineLocal: Difference between revisions
Jump to navigation
Jump to search
m (Removed redundant mp=) |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 8: | Line 8: | ||
|gr1= Markers |GROUP1= | |gr1= Markers |GROUP1= | ||
|descr= Sets a polyline marker's path. Works only on the computer that executes this command. |Description= | |descr= Sets a polyline marker's path. Works only on the computer that executes this command. |Description= | ||
|pr= |Problems= | |pr= |Problems= | ||
|s1= marker [[setMarkerPolylineLocal]] path |Syntax= | |s1= marker [[setMarkerPolylineLocal]] path |Syntax= | ||
Line 21: | Line 19: | ||
|r1= [[Nothing]] |Return Value= | |r1= [[Nothing]] |Return Value= | ||
|x1= Changes <tt>"marker_1"</tt> into a polyline and draws a sine curve on your position<code>"marker_1" [[setMarkerShape]] "polyline"; | |x1= Changes <tt>"marker_1"</tt> into a polyline and draws a sine curve on your position<code>"marker_1" [[setMarkerShape]] "polyline"; | ||
Line 32: | Line 29: | ||
"marker_1" [[setMarkerPolylineLocal]] _return;</code> |Example 1= | "marker_1" [[setMarkerPolylineLocal]] _return;</code> |Example 1= | ||
|seealso= [[markerPolyline]] [[setMarkerPolyline]] |See Also= | |seealso= [[markerPolyline]] [[setMarkerPolyline]] |See Also= |
Revision as of 02:30, 17 January 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 ]][[ Category: arma3dev: New Scripting Commands | SETMARKERPOLYLINELOCAL]][[ Category: arma3dev: Scripting Commands | SETMARKERPOLYLINELOCAL]]