Global system keyboard input monitoring? #6961
-
Hello! Does Bevy's input handling have a way to monitor keyboard input even when the application is not in focus? Or will I need a third party library to handle this? I can't seem to find anything in the documentation that suggests it's available, but I thought I should ask in case I'm missing something. Thank you for your time! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
As far as I'm aware winit does not provide this, in part because this only works on some platform. You'll need an external library. |
Beta Was this translation helpful? Give feedback.
-
https://github.com/laundmo/bevy_global_input may work for you. |
Beta Was this translation helpful? Give feedback.
As far as I'm aware winit does not provide this, in part because this only works on some platform.
You'll need an external library.