drawArrow: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
| arma1 |Game name= | | arma1 |Game name= | ||
Line 9: | Line 8: | ||
| Draws a single line arrow on the map. To draw a color filled arrow of custom shape see [[BIS_fnc_drawArrow]] |DESCRIPTION= | | Draws a single line arrow on the map. To draw a color filled arrow of custom shape see [[BIS_fnc_drawArrow]] |DESCRIPTION= | ||
| map '''drawArrow''' [from, to, color] |SYNTAX= | | map '''drawArrow''' [from, to, color] |SYNTAX= | ||
Line 30: | Line 27: | ||
]; | ]; | ||
}];</code>|= | }];</code>|= | ||
|[[drawEllipse]], [[drawIcon]], [[drawLine]], [[drawRectangle]], [[drawPolygon]], [[drawTriangle]], [[BIS_fnc_drawArrow]]|SEEALSO= | |[[drawEllipse]], [[drawIcon]], [[drawLine]], [[drawRectangle]], [[drawPolygon]], [[drawTriangle]], [[BIS_fnc_drawArrow]]|SEEALSO= |
Revision as of 01:00, 17 January 2021
Description
- Description:
- Draws a single line arrow on the map. To draw a color filled arrow of custom shape see BIS_fnc_drawArrow
- Groups:
- GUI Control - Map
Syntax
- Syntax:
- map drawArrow [from, to, color]
- Parameters:
- map: Control
- [from, to, color]: Array
- from: Array or Object - arrow start position in format: Position2D, Position3D or Object
- to: Array or Object - arrow end position in format: Position2D, Position3D or Object
- color: Array - arrow color in format [r,g,b,a]
- Return Value:
- Nothing
Examples
- Example 1:
findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw", { _this select 0 drawArrow [ player, player getRelPos [100, 0], [1,0,0,1] ]; }];
Additional Information
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
- Posted on July 7, 2015 - 21:28 (UTC)
- Waffle SS.
- Be careful when using this command. Unlike map markers, the draw commands can decrease your framerate.