setMarkerPolylineLocal: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<tt>([^= ]+)<\/tt>" to "{{hl|$1}}")
m (Some wiki formatting)
 
Line 13: Line 13:


|p1= marker: [[String]]
|p1= marker: [[String]]
|p2= path: [[Array]] - {{hl|[x1, y1, x2, y2, ... xn, yn]}}
|p2= path: [[Array]] - {{hl|[x1, y1, x2, y2, ... xn, yn]}}


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


|x1= Changes {{hl|"marker_1"}} into a polyline and draws a sine curve on your position<code>"marker_1" [[setMarkerShape]] "polyline";
|x1= Changes {{hl|"marker_1"}} into a polyline and draws a sine curve on your position:
[[private]] _return = [] ;
<sqf>
"marker_1" setMarkerShape "polyline";
private _return = [] ;


[[for]] "_i" [[from]] 0 [[to]] 100 [[step]] 0.1 do {
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);
_return pushBack (_i + getPos player#0);
_return pushBack ((sin (_i*10))*10 + getPos player#1);
} ;
} ;


"marker_1" [[setMarkerPolylineLocal]] _return;</code>
"marker_1" setMarkerPolylineLocal _return;
</sqf>


|seealso= [[markerPolyline]] [[setMarkerPolyline]]
|seealso= [[markerPolyline]] [[setMarkerPolyline]]
}}
}}

Latest revision as of 15:21, 5 May 2022

Hover & click on the images for description

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