Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

MonoBehaviour.OnDrawGizmos()

Switch to Manual

Description

Implement OnDrawGizmos if you want to draw gizmos that are also pickable and always drawn.

This allows you to quickly pick important objects in your scene.

Note that OnDrawGizmos will use a mouse position that is relative to the Scene View.

This function does not get called if the component is collapsed in the inspector.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void OnDrawGizmos() {
        Gizmos.color = Color.yellow;
        Gizmos.DrawSphere(transform.position, 1);
    }
}