setMarkerPolyline: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (path argument)
m (Text replacement - "_{10,} " to "")
Line 8: Line 8:


|gr1= Markers |GROUP1=
|gr1= Markers |GROUP1=
____________________________________________________________________________________________


|descr= Sets a polyline marker's path.
|descr= Sets a polyline marker's path.
Line 15: Line 14:


|pr= |Problems=
|pr= |Problems=
____________________________________________________________________________________________


|s1= marker [[setMarkerPolyline]] path |Syntax=
|s1= marker [[setMarkerPolyline]] path |Syntax=
Line 23: Line 21:
  and return a whole number.}}
  and return a whole number.}}
|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 34: Line 31:


"marker_1" [[setMarkerPolyline]] _return;</code> |Example 1=
"marker_1" [[setMarkerPolyline]] _return;</code> |Example 1=
____________________________________________________________________________________________


|seealso= [[markerPolyline]] [[setMarkerPolylineLocal]] |See Also=
|seealso= [[markerPolyline]] [[setMarkerPolylineLocal]] |See Also=

Revision as of 03:29, 17 January 2021

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version |?]]
Hover & click on the images for description

Description

Description:
Sets a polyline marker's path.
Multiplayer optimisation: Global marker commands always broadcast the entire marker state over the network. As such, the number of network messages exchanged when creating or editing a marker can be reduced by performing all but the last operation using local marker commands, then using a global marker command for the last change (and subsequent global broadcast of all changes applied to the marker).
Groups:
Markers

Syntax

Syntax:
marker setMarkerPolyline path
Parameters:
marker: String
path: Array - [x1, y1, x2, y2, ... xn, yn]
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.
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]]

Bottom Section