Simple question: Menu Item - how to make menu hotkeys witch Numpad keys? For example CTRL+Numpad1 instead of CTRL+1 (%1)?
There is for now, no way to specify it to only affect numpad-keys.
Here’s some info about Numpad hotkeys, but the solution (%Numpad 1) didn’t work.
You can’t define hotkeys with numpad keys, but you can do something in OnGUI’s Keydown event. Check for any key you like.
if (Event.current.type == EventType.KeyDown && Event.current.keyCode == KeyCode.Keypad1)
{
//
}
Keep in mind this isn’t a hotkey. This won’t eat up the key press like a hotkey would.