Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Gizmos

Gizmos are used to give visual debugging or setup aids in the Scene view.
Read time 2 minutesLast updated 4 days ago

Definition

  • Type: Class
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public sealed class Gizmos

Remarks

All gizmo drawing has to be done in either MonoBehaviour.OnDrawGizmos() or MonoBehaviour.OnDrawGizmosSelected() functions of the script. MonoBehaviour.OnDrawGizmos() is called when the Scene view or Game view is repainted. All gizmos that render in MonoBehaviour.OnDrawGizmos() are pickable. MonoBehaviour.OnDrawGizmosSelected() is called only if the object the script is attached to is selected.
Additional Resources: GizmoUtility.
using UnityEngine;public class GizmosExample : MonoBehaviour{ public float rotationSpeed = 50.0f; void OnDrawGizmosSelected() { Gizmos.color = new Color(0.75f, 0.0f, 0.0f, 0.75f); // Convert the local coordinate values into world // coordinates for the matrix transformation. Gizmos.matrix = transform.localToWorldMatrix; Gizmos.DrawCube(Vector3.zero, Vector3.one); } // Rotate the cube. void Update() { float zRot = rotationSpeed * Time.deltaTime; transform.Rotate(0.0f, 0.0f, zRot); }}
Most of the provided Gizmo drawing methods accept additional transform parameters, like position and rotation. These transforms are applied on top of the currently set Gizmos.matrix.

Static Properties

Property

Description

colorSets the Color of the gizmos that are drawn next.
exposureSet a texture that contains the exposure correction for LightProbe gizmos. The value is sampled from the red channel in the middle of the texture.
matrixSets the Matrix4x4 that the Unity Editor uses to draw Gizmos.
probeSizeSet a scale for Light Probe gizmos. This scale will be used to render the spherical harmonic preview spheres.

Static Methods

Method

Description

CalculateLODDetermines the appropriate level of detail for a gizmo in the Scene view at a specified position with a specified radius.
DrawCubeDraws a solid box at
center
with
size
in the Scene view for visualization and debugging purposes.
DrawFrustumDraws a camera frustum using the currently set
Gizmos.matrix
for its location and rotation.
DrawGUITextureDraw a texture in the Scene.
DrawIconDraw an icon at a position in the Scene view.
DrawLineDraws a line between two points in the Scene view.
DrawLineListDraws multiple lines between pairs of points.
DrawLineStripDraws a line between each point in the supplied span.
DrawMeshDraws a mesh gizmo at the specified transform.
DrawRayDraws a ray starting at a specified position
from
and extending in a given
direction
in the Scene view.
DrawSphereDraws a solid color sphere with
center
and
radius
in the Scene view.
DrawWireCubeDraws a wireframe box at
center
with
size
in the Scene view for visualization and debugging purposes.
DrawWireMeshDraws a wireframe of a mesh at the specified transform.
DrawWireSphereDraws a wireframe sphere with
center
and
radius
in the Scene view.