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

Script language

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

MonoBehaviour.OnDrawGizmos()

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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. Use OnDrawGizmosSelected to draw gizmos when the game object is selected.

#pragma strict
function OnDrawGizmos() {
	// Draw a yellow sphere at the transform's position
	Gizmos.color = Color.yellow;
	Gizmos.DrawSphere(transform.position, 1);
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnDrawGizmos() { // Draw a yellow sphere at the transform's position Gizmos.color = Color.yellow; Gizmos.DrawSphere(transform.position, 1); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答