DrawCube(Vector3, Vector3)
Draw a solid box at center with size.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static void DrawCube(Vector3 center, Vector3 size)
Parameters
Examples
using UnityEngine;using System.Collections;public class ExampleClass : MonoBehaviour{ void OnDrawGizmosSelected() { // Draw a semitransparent red cube at the transforms position Gizmos.color = new Color(1, 0, 0, 0.5f); Gizmos.DrawCube(transform.position, new Vector3(1, 1, 1)); }}