Version: 2022.3
언어: 한국어

Editor.DrawDefaultInspector

매뉴얼로 전환
public bool DrawDefaultInspector ();

반환

bool Returns true if any GUI controls in the default Inspector changed the value of the input data, otherwise returns false.

설명

Draws the built-in Inspector.

Call this method, within the OnInspectorGUI method, to automatically draw the Inspector. This is useful if you want to add a few buttons without having to redo the entire Inspector. See Also: OnInspectorGUI.

// This example shows a custom inspector for an
// object "MyPlayer", which has a variable speed.
using UnityEngine;
using UnityEditor;

class MyPlayer : MonoBehaviour { // Hide this field so that it is not shown twice when drawing the default Inspector. [HideInInspector] public float speed;

public int gear; }

[CustomEditor(typeof(MyPlayer))] public class Example : Editor { public override void OnInspectorGUI() { MyPlayer targetPlayer = (MyPlayer)target; EditorGUILayout.LabelField ("Some help", "Some other text");

targetPlayer.speed = EditorGUILayout.Slider ("Speed", targetPlayer.speed, 0, 100);

// Show default inspector property editor if(DrawDefaultInspector()) Debug.Log("Gear was changed!"); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961