drawLine3D: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (line disappears after one frame)
No edit summary
Line 23: Line 23:




|x1= <code>drawLine3D [getPos soldier, getPos cursorTarget, [1,1,1,1]]</code>|= EXAMPLE1  
|x1= <code>[[drawLine3D]] <nowiki>[</nowiki>[[getPos]] soldier, [[getPos]] [[cursorTarget]], [1,1,1,1]]</code>|= EXAMPLE1  
 
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= SEEALSO  
| [[drawIcon3D]] |= SEEALSO  


|  |= MPBEHAVIOUR  
|  |= MPBEHAVIOUR  
Line 36: Line 35:
<dl class='command_description'>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on August 31, 2013
<dt class="note">'''[[User:Killzone_Kid|Killzone_Kid]]'''
<dd class="note">As command syntax indicates, this command expects starting and ending position in format [[Position]] meaning that over the land it expects [[PositionATL]] and over the sea [[PositionASL]]. Use additional [[ASLToATL]] and [[ATLToASL]] commands wherever is necessary.
<code>[[drawLine3D]] <nowiki>[</nowiki>[[ASLToATL]] [[eyePos]] soldier1, [[ASLToATL]] [[eyePos]] soldier2, [1,0,0,1]]</code>


<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 09:27, 31 August 2013

Hover & click on the images for description

Description

Description:
Draws a line of a given color between two 3D positions. Line disappears after one frame.
Groups:
Uncategorised

Syntax

Syntax:
drawLine3D [start, end, color]
Parameters:
[start, end, color]: Array
start: Position
end: Position
color: Color
Return Value:
Nothing

Examples

Example 1:
drawLine3D [getPos soldier, getPos cursorTarget, [1,1,1,1]]

Additional Information

See also:
drawIcon3D

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

Posted on August 31, 2013
Killzone_Kid
As command syntax indicates, this command expects starting and ending position in format Position meaning that over the land it expects PositionATL and over the sea PositionASL. Use additional ASLToATL and ATLToASL commands wherever is necessary. drawLine3D [ASLToATL eyePos soldier1, ASLToATL eyePos soldier2, [1,0,0,1]]

Bottom Section