drawArrow: Difference between revisions
Jump to navigation
Jump to search
Waffle SS. (talk | contribs) No edit summary |
Killzone Kid (talk | contribs) (example, syntax) |
||
Line 7: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | Draws a single line arrow on the map. |= Description | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| map '''drawArrow''' [ | | map '''drawArrow''' [from, to, color] |= Syntax | ||
|p1= map: [[Control]] |= Parameter 1 | |p1= map: [[Control]] |= Parameter 1 | ||
|p2= [ | |p2= [from, to, color]: [[Array]] |= Parameter 2 | ||
|p3= from: [[Array]] or [[Object]] - arrow start position in format: [[Position2D]], [[Position3D]] or [[Object]] |= Parameter 3 | |||
|p4= to: [[Array]] or [[Object]] - arrow end position in format: [[Position2D]], [[Position3D]] or [[Object]] |= Parameter 4 | |||
|p5= color: [[Array]] - arrow color in format [r,g,b,a]|= Parameter 5 | |||
| [[Nothing]] |= Return value | |||
| [[ | |x1=<code>[[findDisplay]] 12 [[displayCtrl]] 51 [[ctrlAddEventHandler]] ["Draw", | ||
{ | |||
_this [[select]] 0 [[drawArrow]] [ | |||
[[player]], [[player]] [[getRelPos]] [100, 0], [1,0,0,1] | |||
]; | |||
}];</code>|= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 21:58, 9 February 2016
Description
- Description:
- Draws a single line arrow on the map.
- Groups:
- Uncategorised
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
- See also:
- drawEllipsedrawIcondrawLinedrawRectangle
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.