Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Gizmos.DrawCube

public static void DrawCube(Vector3 center, Vector3 size);

Description

Draw a solid box with center and size.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnDrawGizmosSelected() { Gizmos.color = new Color(1, 0, 0, 0.5F); Gizmos.DrawCube(transform.position, new Vector3(1, 1, 1)); } }