Parsing shortcut from string - all keys will split by '+' symbol.
Shortcut("Ctrl+C"); // ctrl = true; key = KeyCode.C; Shortcut("Ctrl+Shift+S"); // ctrl = true; shift = true; key = KeyCode.C;
See Implementation
Parsing shortcut from string - all keys will split by '+' symbol.