Version: 2020.1
言語: 日本語
Experimental: this API is experimental and might be changed or removed in the future.

AssetImporterEditor.OnInspectorGUI

マニュアルに切り替える
public void OnInspectorGUI ();

説明

Override this method to create your own Inpsector GUI for a ScriptedImporter.

For the OnInspectorGUI Undo/Redo and cancel feature to work in the Inspector, you must either call ApplyRevertGUI or override needsApplyRevert to return false.

Example of an InspectorGUI using ApplyRevertGUI:

using UnityEditor;
using UnityEditor.Experimental.AssetImporters;
using UnityEngine;

public class CustomInspector : ScriptedImporterEditor { SerializedProperty myProperty;

public override void OnEnable() { base.OnEnable();

myProperty = serializedObject.FindProperty("m_MyProperty"); }

public override void OnInspectorGUI() { serializedObject.Update();

EditorGUILayout.PropertyField(myProperty);

serializedObject.ApplyModifiedProperties();

ApplyRevertGUI(); } }

Example of an InspectorGUI where the user cannot change anything and does not require an ApplyRevertGUI:

using UnityEditor;
using UnityEditor.Experimental.AssetImporters;
using UnityEngine;

public class CustomInspector : ScriptedImporterEditor { SerializedProperty myProperty;

public override void OnEnable() { base.OnEnable();

myProperty = serializedObject.FindProperty("m_MyProperty"); }

protected override bool needsApplyRevert => false;

public override void OnInspectorGUI() { serializedObject.Update();

EditorGUILayout.LabelField(myProperty.displayName, myProperty.stringValue);

serializedObject.ApplyModifiedProperties(); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961