Global Mouse and Keyboard events for bevy.
log out global mouse position every half second.
```rust use bevy::{prelude::*, time::FixedTimestep}; use bevyglobalinput::{GlobalInputPlugins, GlobalMousePos};
fn main() { App::new() .addplugins(MinimalPlugins) .addplugins(GlobalInputPlugins) .addsystemset( SystemSet::new() .withruncriteria(FixedTimestep::step(1.0 / 2.0)) .withsystem(mousepos), ) .run(); }
fn mouse_pos(pos: Res
Find more in Examples
| bevy | bevyglobalinput | | ---- | ----------------- | | 0.9 | 0.2.0 | | 0.9 | 0.1.0 |