Hello,
There is nice method modifierKeysChanged(), but I’ve fount it can only check which key is pressed down.
And modifierKeysChanged() is called also when I release key, but I don’t know how to check which key is released.
So for example I assume if I have if statement like that:
if ( ! modifiers.isCommandDown() ) it will pass if I press “alt” key and all other keys.
Is there any method to check which key is released?
