drawLine3D function

void drawLine3D(
  1. Vector3 startPos,
  2. Vector3 endPos,
  3. Color color
)

Draw a line in 3D world space.

Implementation

void drawLine3D(Vector3 startPos, Vector3 endPos, Color color) {
  return library.DrawLine3D(startPos.ref, endPos.ref, color.ref);
}