EditorUtility.DisplayPopupMenu
Declaration
public static void DisplayPopupMenu(Rect position, string menuItemPath, MenuCommand command);Описание
Отображает всплывающее меню.
Меню отображается в позиции pos, генерируется из подменю, указанного menuItemPath, используя MenuCommand в качестве контекста меню.
using UnityEditor; using UnityEngine; using System.Collections;
// Shows the Assets menu when you right click on the contextRect Rectangle. public class EditorUtilityDisplayPopupMenu : MonoBehaviour { void OnGUI() { Event evt = Event.current; Rect contextRect = new Rect(10, 10, 100, 100); if (evt.type == EventType.ContextClick) { Vector2 mousePos = evt.mousePosition; if (contextRect.Contains(mousePos)) { EditorUtility.DisplayPopupMenu(new Rect(mousePos.x, mousePos.y, 0, 0), "Assets/", null); evt.Use(); } } } }