Version: 2021.2

EditorUtility.OpenPropertyEditor

切换到手册
public static void OpenPropertyEditor (Object obj);

参数

obj The editor will should the properties of the Object.

描述

Open properties editor for an Object.

This will open an inspector like window to show and edit the properties of the Object.

using UnityEditor;
using UnityEngine;

public class EditorUtilityOpenPropertyEditor { [MenuItem("Examples/OpenPropertyEditor")] public static void OpenSceneProperties() { var scene = AssetDatabase.LoadAssetAtPath<UnityEngine.Object>("Assets/Scenes/SampleScene.unity"); EditorUtility.OpenPropertyEditor(scene); } }