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
The scancodes look correct, but the virtual_keycode for numpad8 is coming back as Some(Key8), when I would expect it to be Some(Numpad8)
I was seeing this issue trying to get the numpad input working in bracket-lib here amethyst/bracket-lib#222
And it looks like someone using Bevy is seeing something similar bevyengine/bevy#1666
The text was updated successfully, but these errors were encountered:
I'm using winit 0.25.0 and macOS 11.5.2
When I run
cargo run --example window | grep KeyboardInput
And I press the 8 key I get this output:
I press the numpad 8 key:
I press the NumpadEnter key:
The scancodes look correct, but the virtual_keycode for numpad8 is coming back as
Some(Key8)
, when I would expect it to beSome(Numpad8)
I was seeing this issue trying to get the numpad input working in bracket-lib here amethyst/bracket-lib#222
And it looks like someone using Bevy is seeing something similar bevyengine/bevy#1666
The text was updated successfully, but these errors were encountered: