drawArrow: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also)
(Add onDraw reference due to NikkoJT insistence :-p)
 
(59 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= arma1
|version1= 1.00


|1.00|= Game version
|game2= arma2
____________________________________________________________________________________________
|version2= 1.00


| Draws a single line arrow on the map. To draw a color filled arrow of custom shape see [[BIS_fnc_drawArrow]] |= Description
|game3= arma2oa
____________________________________________________________________________________________
|version3= 1.50


| map '''drawArrow''' [from, to, color] |= Syntax
|game4= tkoh
|version4= 1.00


|p1= map: [[Control]] |= Parameter 1
|game5= arma3
|version5= 0.50


|p2= [from, to, color]: [[Array]] |= Parameter 2
|gr1= GUI Control - Map
|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",  
|descr= Draws a single line arrow on the map.
{
As this command needs to be called every frame, it is preferable using the [[User Interface Event Handlers#onDraw|onDraw]] UI Event Handler.
_this [[select]] 0 [[drawArrow]] [
To draw a color filled arrow of custom shape see [[BIS_fnc_drawArrow]].
[[player]], [[player]] [[getRelPos]] [100, 0], [1,0,0,1]
];
}];</code>|=
____________________________________________________________________________________________


|[[drawEllipse]], [[drawIcon]], [[drawLine]], [[drawRectangle]], [[drawPolygon]], [[drawTriangle]], [[BIS_fnc_drawArrow]]|= See also
|s1= map [[drawArrow]] [from, to, color]


}}
|p1= map: [[Control]]


<h3 style="display:none">Notes</h3>
|p2= from: [[Object]] or [[Array]] in format [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - arrow start position
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|p3= to: [[Object]] or [[Array]] in format [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - arrow end position
</dl>


<h3 style="display:none">Bottom Section</h3>
|p4= color: [[Array]] - arrow color in format [r,g,b,a]


[[Category:Scripting Commands|DRAWARROW]]
|r1= [[Nothing]]
[[Category:Scripting Commands ArmA|DRAWARROW]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Editor_Control|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
|x1= <sqf>
<dl class="command_description">
findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw",
<dd class="notedate">Posted on July 7, 2015 - 21:28 (UTC)</dd>
{
<dt class="note">[[User:Waffle SS.|Waffle SS.]]</dt>
_this select 0 drawArrow [
<dd class="note">
player,
Be careful when using this command. Unlike map markers, the draw commands can decrease your framerate.
player getRelPos [100, 0],
</dd>
[1,0,0,1]
</dl>
];
<!-- DISCONTINUE Notes -->
}];
</sqf>
 
|seealso= [[drawEllipse]] [[drawIcon]] [[drawLine]] [[drawRectangle]] [[drawPolygon]] [[drawTriangle]] [[BIS_fnc_drawArrow]]
}}
 
{{Note
|user= Waffle SS.
|timestamp= 20150707212800
|text= Be careful when using this command. Unlike map markers, the draw commands can decrease your framerate.
}}

Latest revision as of 18:30, 20 January 2023

Hover & click on the images for description

Description

Description:
Draws a single line arrow on the map. As this command needs to be called every frame, it is preferable using the onDraw UI Event Handler. 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: Object or Array in format Position2D or Position3D - arrow start position
to: Object or Array in format Position2D or Position3D - arrow end position
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:
drawEllipse drawIcon drawLine drawRectangle drawPolygon drawTriangle BIS_fnc_drawArrow

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
Waffle SS. - c
Posted on Jul 07, 2015 - 21:28 (UTC)
Be careful when using this command. Unlike map markers, the draw commands can decrease your framerate.