You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently you can only check for keys using keyboard.isPressed(int keyCode). The corresponding KeyCodes of the keyboard constants might not actually reflect the key that is actually pressed, for example on an azerty keyboard. Fix this by adding a method checking for characters instead of keyCodes; they can be tracked using keyEvent.getKeyChar().
The text was updated successfully, but these errors were encountered:
Currently you can only check for keys using
keyboard.isPressed(int keyCode)
. The corresponding KeyCodes of the keyboard constants might not actually reflect the key that is actually pressed, for example on an azerty keyboard. Fix this by adding a method checking for characters instead of keyCodes; they can be tracked usingkeyEvent.getKeyChar()
.The text was updated successfully, but these errors were encountered: