setMarkerShape: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]OFP[ _]Elite *(\|.*)?\]\]" to "{{GameCategory|ofpe|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma1 |Game name=
| arma1 |Game name=
Line 9: Line 8:


|eff= global |Multiplayer Effects=
|eff= global |Multiplayer Effects=
____________________________________________________________________________________________


| Selects shape (actual type) of the marker. The shape can be:
| Selects shape (actual type) of the marker. The shape can be:
Line 18: Line 16:
{{Informative|'''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).}}
{{Informative|'''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).}}
|DESCRIPTION=
|DESCRIPTION=
____________________________________________________________________________________________


| markerName '''setMarkerShape''' shape |SYNTAX=
| markerName '''setMarkerShape''' shape |SYNTAX=
Line 27: Line 24:


| [[Nothing]] |RETURNVALUE=
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
   
   
|x1= <code>"Marker1" [[setMarkerShape]] "RECTANGLE";</code> |EXAMPLE1=
|x1= <code>"Marker1" [[setMarkerShape]] "RECTANGLE";</code> |EXAMPLE1=
____________________________________________________________________________________________


| [[markerShape]], [[setMarkerBrush]], [[setMarkerColor]], [[setMarkerDir]], [[setMarkerPos]], [[createMarker]], [[setMarkerSize]], [[setMarkerText]], [[setMarkerType]], [[setMarkerAlpha]], [[setMarkerShapeLocal]] |SEEALSO=
| [[markerShape]], [[setMarkerBrush]], [[setMarkerColor]], [[setMarkerDir]], [[setMarkerPos]], [[createMarker]], [[setMarkerSize]], [[setMarkerText]], [[setMarkerType]], [[setMarkerAlpha]], [[setMarkerShapeLocal]] |SEEALSO=

Revision as of 04:07, 17 January 2021

Hover & click on the images for description

Description

Description:
Selects shape (actual type) of the marker. The shape can be:
  • "ICON"
  • "RECTANGLE"
  • "ELLIPSE"
  • "POLYLINE"
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:
markerName setMarkerShape shape
Parameters:
markerName: String
shape: String
Return Value:
Nothing

Examples

Example 1:
"Marker1" setMarkerShape "RECTANGLE";

Additional Information

See also:
markerShapesetMarkerBrushsetMarkerColorsetMarkerDirsetMarkerPoscreateMarkersetMarkerSizesetMarkerTextsetMarkerTypesetMarkerAlphasetMarkerShapeLocal

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

Notes

Bottom Section