Version: 2019.1

説明

選択可能にしたり、常に描画したいギズモを描画するには OnDrawGizmos を使用します

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

OnDrawGizmos はシーンビューから相対的なマウス位置を使用することに注意してください。

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.

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); } }

関連項目: OnDrawGizmosSelected.