drawCubeV function

void drawCubeV(
  1. Vector3 position,
  2. Vector3 size,
  3. Color color
)

Draw cube (Vector version).

Implementation

void drawCubeV(Vector3 position, Vector3 size, Color color) {
  return library.DrawCubeV(position.ref, size.ref, color.ref);
}