Unity Editor 右键单击​​键禁用

Unity Editor right-click key disabled

在 Unity 2017.3.0f3 中,我注意到一些 Windows 快捷方式已被禁用。

即最有用的右键单击键(又名菜单键)和 alt 快捷键来访问菜单。

有什么解决办法吗?我发现能够主要依靠键盘提供比必须不断地在鼠标和键盘之间切换更快的工作流程。

右键单击应该有效,例如在资产文件夹视图中创建和编辑资产和文件夹。我不知道还有什么地方需要。


默认情况下,某些菜单(如 <b>)实际上应该有 <kbd>alt</kbd>+<kbd>letter</kbd> F</b>ile, <b>E</b>dit, <b>W</b>indow<b>H</b>elp.

在创建自己的 menu items 时,您还可以为它们定义自定义快捷方式:

To create a hotkey you can use the following special characters: % (ctrl on Windows, cmd on macOS), # (shift), & (alt). If no special modifier key combinations are required the key can be given after an underscore. For example to create a menu with hotkey shift-alt-g use "MyMenu/Do Something #&g". To create a menu with hotkey g and no key modifiers pressed use "MyMenu/Do Something _g".

Some special keyboard keys are supported as hotkeys, for example "#LEFT" would map to shift-left. The keys supported like this are: LEFT, RIGHT, UP, DOWN, F1 .. F12, HOME, END, PGUP, PGDN.

A hotkey text must be preceded with a space character ("MyMenu/Do_g" won't be interpreted as hotkey, while "MyMenu/Do _g" will).