setMarkerPolyline: Difference between revisions
Jump to navigation
Jump to search
(getPos...oof) |
Lou Montana (talk | contribs) m (Text replacement - "<tt>([a-zA-Z0-9\. _"']+)<\/tt>" to "{{hl|$1}}") |
||
Line 20: | Line 20: | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= Changes | |x1= Changes {{hl|"marker_1"}} into a polyline and draws a sine curve on your position<code>"marker_1" [[setMarkerShape]] "polyline"; | ||
[[private]] _return = [] ; | [[private]] _return = [] ; | ||
Revision as of 23:45, 15 November 2021
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 + getPosASL player#0); _return pushBack ((sin (_i*10))*10 + getPosASL 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