We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As requested by iddq_tea on discord https://discord.com/channels/959169147550445598/959169147550445601/1041456301311529042, they want an easy way to find which character was last pressed.
Solution: Add a variable key that contains last ASCII-based key pressed. We might also need another callback like keyTyped that is called whenever a key is supposed to be typed/repeated. GLFW supports this out-of-the-box: https://www.glfw.org/docs/3.3/group__input.html#gab25c4a220fd8f5717718dbc487828996
key
keyTyped
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe your idea
As requested by iddq_tea on discord https://discord.com/channels/959169147550445598/959169147550445601/1041456301311529042, they want an easy way to find which character was last pressed.
Solution:
Add a variable
key
that contains last ASCII-based key pressed. We might also need another callback likekeyTyped
that is called whenever a key is supposed to be typed/repeated. GLFW supports this out-of-the-box: https://www.glfw.org/docs/3.3/group__input.html#gab25c4a220fd8f5717718dbc487828996The text was updated successfully, but these errors were encountered: