Is there an easier way to let "shift" and other modifier keys into consumed keypresses?
-
HISE doesn't seem to allow me to use just the keycode ("16") of shift to let it pass.
The only way I found to let it in is by copying every single key that I would like to use it as a modifier for changing the boolean, such as:[{ "keyCode": 63232, "description": "cursor up", "shift": false, "cmd": false, "alt": false }, { "keyCode": 63232, "description": "cursor up + shift", "shift": true, "cmd": false, "alt": false },
So that gets quite redundant.
Is there some easier way to let "shift" through with less code? -
@VirtualVirgin Got a snippet?
-
@d-healey After I thought about it, I decided I only needed it to modify 2 keys, so not much work doing it with little copy pasta from the above.