使用GenericMenu 创建自定义上下文菜单和下拉菜单丰富自己的编辑器功能。
GenericMenu 介绍
变量
allowDuplicateNames
允许菜单具有多个同名的菜单项。
公共函数
AddDisabledItem
向菜单添加已禁用的项。
AddItem
向菜单添加一个项。
AddSeparator
向菜单添加一个分隔符项。
- 这个就是一条分割线。
- 注意添加的时机觉得分割线位置。
- 多级菜单分割线要带对应路径,如"Root1/"
DropDown
在给定屏幕矩形中显示菜单。
- 这里使用的时Rect默认size用Vector3.zero也就是自己自适应。
GetItemCount
获取菜单中的项数。
AddSeparator
也算计数项
ShowAsContext
显示菜单
- 这里使用的时鼠标位置。如果要是有指定位置用
DropDown
。
GenericMenu 使用
创建一级菜单
GenericMenu genericMenu = new GenericMenu();
//当前选中的按钮
genericMenu.AddItem(new GUIContent("Item1", ""), true, () => { });
//当前未选中的按钮,传递用户参数,值类型有拆装箱消耗
genericMenu.AddItem(new GUIContent("Item2", ""), false, (param) => { },1);
//当前未选中的按钮
genericMenu.AddItem(new GUIContent("Item3", ""), false, () => { });
//由于传递的方法是null默认不可选
genericMenu.AddItem(new GUIContent("Item4", ""), true,null);
///添加个分隔符
genericMenu.AddSeparator("");
//添加一个不可选项
genericMenu.AddDisabledItem(new GUIContent("Item5", ""));
genericMenu.ShowAsContext();
创建多级菜单
- 多级菜单的规则就是采用"/"进行分割。
GenericMenu genericMenu = new GenericMenu();
genericMenu.AddItem(new GUIContent("Root1/Item1", ""), true, () => { });
genericMenu.AddItem(new GUIContent("Root1/Item2", ""), false, () => { });
///添加个分隔符
genericMenu.AddSeparator("");
//当前未选中的按钮
genericMenu.AddItem(new GUIContent("Root2/Item3", ""), false, () => { });
///添加个分隔符在Root2里,这里一定注意位置
genericMenu.AddSeparator("Root2/");
genericMenu.AddItem(new GUIContent("Root2/Item4", ""), false,null);
genericMenu.ShowAsContext();
GenericMenu 优化
如果在意编辑器GC
- 一种可以相同菜单的new 个全局,触发时对应参数缓存下来。
currentMenuTestFunctionElement = testFunctionElements[i];
if (elementGenericMenu == null)
{
elementGenericMenu = new GenericMenu();
elementGenericMenu.AddItem(new GUIContent(MENU_IMPORT, ""), false, ImportParam);
elementGenericMenu.AddItem(new GUIContent(MENU_EXPORT, ""), false, ExportParam);
}
elementGenericMenu.ShowAsContext();
- 另一种根据GenericMenu 制作一个新的GenericMenuUtility,核心代码如下:
internal void DropDown(Rect position, bool shouldDiscardMenuOnSecondClick)
{
string[] array = new string[m_MenuItems.Count];
bool[] array2 = new bool[m_MenuItems.Count];
ArrayList arrayList = new ArrayList();
bool[] array3 = new bool[m_MenuItems.Count];
for (int i = 0; i < m_MenuItems.Count; i++)
{
MenuItem menuItem = m_MenuItems[i];
array[i] = menuItem.content.text;
array2[i] = menuItem.func != null || menuItem.func2 != null;
array3[i] = menuItem.separator;
if (menuItem.on)
{
arrayList.Add(i);
}
}
EditorUtility.DisplayCustomMenuWithSeparators(position, array, array2, array3, (int[])arrayList.ToArray(typeof(int)), CatchMenu, null, showHotkey: true, allowDuplicateNames, shouldDiscardMenuOnSecondClick);
}