bevy_keybind 1.0.0

Common event interface for bevy_input, so that we can better separate logic from configuration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod input;
pub mod config;

pub mod prelude {
    #[doc(hidden)]
    pub use crate::{
      input::{
          KeyBindPressedEvent,
          KeyBindJustPressedEvent,
          KeyBindJustReleasedEvent,
          KeyBindAxisEvent,
          KeyBindPlugin
      },
      config::KeyBindConfig
    };
}