版本: Unity 6 (6000.0)
语言英语
  • C#

EditorApplication.contextualPropertyMenu

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们不能接受所有提交的内容,但我们确实会阅读用户提出的每项更改建议,并在适用情况下进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public static EditorApplication.SerializedPropertyCallbackFunction contextualPropertyMenu;

描述

每当用户在 Inspector 中右键单击某个属性时,就会触发此回调。

此回调对于添加自定义上下文菜单项非常有用,这些项可以对特定属性执行操作。

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