Version: 2023.2
언어: 한국어
public static void SetDescriptor (UIElements.DropdownMenu menu, UIElements.DropdownMenuDescriptor descriptor);

파라미터

menu The menu to add a descriptor to.
descriptor The menu features descriptor to add to a menu.

설명

Adds a descriptor to a dropdown menu.

using UnityEditor;
using UnityEditor.UIElements;
using UnityEngine;
using UnityEngine.UIElements;

public class ContextMenuWindow : EditorWindow { [MenuItem("My/Context Menu Window")] static void ShowMe() => GetWindow<ContextMenuWindow>();

void CreateGUI() { var contextMenuContainer = new VisualElement(); contextMenuContainer.style.flexGrow = 1; contextMenuContainer.AddManipulator(new ContextualMenuManipulator(e => { e.menu.SetDescriptor(new DropdownMenuDescriptor() { title = "My Action Menu" });

e.menu.AppendAction("Action 1", a => Debug.Log("Action 1 Works"), DropdownMenuAction.AlwaysEnabled); }));

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