Unity Editor 添加 Custom Shortcuts

1. 在 MenuItem 标签内使用特殊字符

  • % (ctrl on Windows and Linux, cmd on macOS),
  • ^ (ctrl on Windows, Linux, and macOS),
  • # (shift),
  • & (alt).

例如以下代码的快捷键为 CTRL + G

[MenuItem("Test/example %g")]
private static void Test()
{
    Debug.Log("TEST!");
}

2. ShortcutManager(Editor -> Shortcuts) 直接添加全局快捷键

–EOF–

王小兵 /
Published under (CC) BY-NC-SA in categories Unity  tagged with Unity