setMarkerBrush: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}")
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]OFP[ _]Elite *(\|.*)?\]\]" to "{{GameCategory|ofpe|Scripting Commands}}")
Line 57: Line 57:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|SETMARKERBRUSH]]
[[Category:Scripting Commands|SETMARKERBRUSH]]
[[Category:Scripting Commands OFP Elite |SETMARKERBRUSH]]
{{GameCategory|ofpe|Scripting Commands}}
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma1|Scripting Commands}}



Revision as of 22:40, 10 January 2021

Hover & click on the images for description

Description

Description:
Selects the fill texture for the marker ("RECTANGLE" or "ELLIPSE"). Brush is the name of the subclass in CfgMarkerBrushes.

brush can be:
  • "Solid"
  • "SolidFull" (A3 only)
  • "Horizontal"
  • "Vertical"
  • "Grid"
  • "FDiagonal"
  • "BDiagonal"
  • "DiagGrid"
  • "Cross"
  • "Border"
  • "SolidBorder"
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 setMarkerBrush brush
Parameters:
markerName: String
brush: String
Return Value:
Nothing

Examples

Example 1:
"Marker1" setMarkerBrush "DIAGGRID";

Additional Information

See also:
setMarkerAlphasetMarkerAlphaLocalsetMarkerBrushLocalsetMarkerColorsetMarkerColorLocalsetMarkerDirsetMarkerDirLocalsetMarkerPossetMarkerPosLocalsetMarkerShapesetMarkerShapeLocalsetMarkerSizesetMarkerSizeLocalsetMarkerTextsetMarkerTextLocalsetMarkerTypesetMarkerTypeLocal

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