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
0.6
Archlinux
Switched keyboard layout from en-US to he-IL.
Expected bevy to capture keys and operate without a difference.
Bevy captures key events (tested with EventReader<KeyboardInput>) but input.pressed returns false while in a non english layout.
EventReader<KeyboardInput>
input.pressed
Currently only tested with Russian and Hebrew without success.
Edit: Testing more I found that the scan_code in the event doesn't change but the key_code is None while in Hebrew layout.
scan_code
key_code
None
The text was updated successfully, but these errors were encountered:
probably related to #2052, #1666, #862
Sorry, something went wrong.
I think its #2052, the scan code woks but key code is not english so its not recognized. its pretty annoying for people with other layouts,
No branches or pull requests
Bevy version
0.6
Operating system & version
Archlinux
What you did
Switched keyboard layout from en-US to he-IL.
What you expected to happen
Expected bevy to capture keys and operate without a difference.
What actually happened
Bevy captures key events (tested with
EventReader<KeyboardInput>
) butinput.pressed
returns false while in a non english layout.Additional information
Currently only tested with Russian and Hebrew without success.
Edit: Testing more I found that the
scan_code
in the event doesn't change but thekey_code
isNone
while in Hebrew layout.The text was updated successfully, but these errors were encountered: