drawPoint3D function

void drawPoint3D(
  1. Vector3 position,
  2. Color color
)

Draw a point in 3D space, actually a small line.

Implementation

void drawPoint3D(Vector3 position, Color color) {
  return library.DrawPoint3D(position.ref, color.ref);
}