markerShape: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>")
No edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 21: Line 21:
|s1= [[markerShape]]  name
|s1= [[markerShape]]  name


|p1= name: [[String]] - Name of the marker
|p1= name: [[String]] - name of the marker


|r1= [[String]] - Shape of given marker. Can be return:
|r1= [[String]] - shape of given marker. Can be return:
* {{hl|"ICON"}}
* {{hl|"ICON"}}
* {{hl|"RECTANGLE"}}
* {{hl|"RECTANGLE"}}
* {{hl|"ELLIPSE"}}
* {{hl|"ELLIPSE"}}
* {{GVI|arma3|1.60|size=0.8}} {{hl|"POLYLINE"}} (Hand drawn markers)
* {{GVI|arma3|1.60|size= 0.75}} {{hl|"POLYLINE"}} (Hand drawn markers)
* {{hl|"ERROR"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"TRIANGLE"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"PENTAGON"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"HEXAGON"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"HEPTAGON"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"OCTAGON"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"NONAGON"}}
* {{GVI|arma3|2.20|size= 0.75}} {{hl|"DECAGON"}}


|x1= <code>if (markerShape "Marker1" == "RECTANGLE") then {hint "Marker1 is a rectangle!"}</code>
|x1= <sqf>if (markerShape "Marker1" == "RECTANGLE") then { hint "Marker1 is a rectangle!" };</sqf>


|seealso= [[setMarkerShape]] [[setMarkerShapeLocal]]
|seealso= [[setMarkerShape]] [[setMarkerShapeLocal]]
}}
}}

Latest revision as of 20:52, 1 November 2024

Hover & click on the images for description

Description

Description:
Returns the shape of given marker.
Groups:
Markers

Syntax

Syntax:
markerShape name
Parameters:
name: String - name of the marker
Return Value:
String - shape of given marker. Can be return:
  • "ICON"
  • "RECTANGLE"
  • "ELLIPSE"
  • Arma 3 logo black.png1.60 "POLYLINE" (Hand drawn markers)
  • Arma 3 logo black.png2.20 "TRIANGLE"
  • Arma 3 logo black.png2.20 "PENTAGON"
  • Arma 3 logo black.png2.20 "HEXAGON"
  • Arma 3 logo black.png2.20 "HEPTAGON"
  • Arma 3 logo black.png2.20 "OCTAGON"
  • Arma 3 logo black.png2.20 "NONAGON"
  • Arma 3 logo black.png2.20 "DECAGON"

Examples

Example 1:
if (markerShape "Marker1" == "RECTANGLE") then { hint "Marker1 is a rectangle!" };

Additional Information

See also:
setMarkerShape setMarkerShapeLocal

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