Version: 2023.2
언어: 한국어
public bool autoClose ;

설명

Whether to automatically close a contextual menu when an item action executes.

This parameter does not affect custom-built menu items.

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() { autoClose = true, });

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

rootVisualElement.Add(contextMenuContainer); } }