drawLine3D [start, end, color]

Operand types

[start, end, color] : Array

Type of returned value

Description

Draws a line of a given color between two 3D positions.
Command has to be executed each frame. Use onEachFrame or addMissionEventHandler "Draw3D".

Used In

Arma3

Example

onEachFrame {
drawLine3D [getPos player, getPos cursorTarget, [1,1,1,1]];
};
Search OFPEC COMREF