bevy_input_bindings 0.0.2

High level, flexible and shareable input binding library for the Bevy game engine
Documentation
1
2
3
4
5
6
use bevy::ecs::schedule::SystemSet;

/// System set for all the controllers systems. These are in sets because other systems must run
/// after.
#[derive(SystemSet, Debug, Clone, PartialEq, Eq, Hash)]
pub struct ControllersSet;