drawCubeWiresV function

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

Draw cube wires (Vector version).

Implementation

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