Method | Description | |
---|---|---|
DrawCross3D ( |
Draws 3 lines intersecting each other at the specified position.
|
|
DrawPath ( |
Draws the specified path.
|
|
DrawSphere ( |
Draws a sphere at the specified position.
|
public static DrawCross3D ( |
||
position | /// The position where the 3 lines intersect. /// | |
size | float | /// The length of each line. /// |
color | /// The color of the lines. /// | |
duration | float | /// The amount of seconds the line must be visible for. /// A duration of zero shows the line for just one frame. /// |
depthTest | bool | /// A value indicating whether or not the line be obscured by objects closer to the camera? /// |
return | void |
public static DrawPath ( |
||
path | /// The path to draw. /// | |
start | /// The start of the path. /// | |
end | /// The end of the path. /// | |
color | /// The color of the path. /// | |
duration | float | /// The amount of seconds the path must be visible for. /// A duration of zero shows the path for just one frame. /// |
depthTest | bool | /// A value indicating whether or not the path be obscured by objects closer to the camera? /// |
return | void |
public static DrawSphere ( |
||
position | /// The position to draw the sphere at. /// | |
radius | float | /// The radius of the sphere. /// |
color | /// The color of the sphere. /// | |
duration | float | /// The amount of seconds the line must be visible for. /// A duration of zero shows the line for just one frame. /// |
depthTest | bool | /// A value indicating whether or not the line be obscured by objects closer to the camera? /// |
return | void |