Version: 2018.1
public static EditorApplication.SerializedPropertyCallbackFunction contextualPropertyMenu ;

説明

Callback raised whenever the user contex-clicks on a property in an Inspector.

This callback is useful to add custom contextual menu items which can perform operations on a particular property.

//This script creates a new menu item named "Example" in the Window dropdown menu. Press this to create the Example window.

using UnityEngine; using UnityEditor; using System.Collections;

public class Example : EditorWindow { [MenuItem("Window/Example")]

public static void ShowWindow() { EditorWindow.GetWindow(typeof(Example)); }

void OnEnable() { EditorApplication.contextualPropertyMenu += OnPropertyContextMenu; }

void OnDestroy() { EditorApplication.contextualPropertyMenu -= OnPropertyContextMenu; }

void OnPropertyContextMenu(GenericMenu menu, SerializedProperty property) { // show a custom menu item only for Vector3 properties if (property.propertyType != SerializedPropertyType.Vector3) return;

// and only when called on a Transform component if (property.serializedObject.targetObject.GetType() != typeof(Transform)) return;

var propertyCopy = property.Copy(); menu.AddItem(new GUIContent("Randomize Vector"), false, () => { propertyCopy.vector3Value = Random.insideUnitSphere * 5; propertyCopy.serializedObject.ApplyModifiedProperties(); }); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961