bevy_gearbox 0.7.0

State machine system for the bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use bevy_gearbox_core::*;

// Attribute macros
pub use bevy_gearbox_macros::gearbox_message;
pub use bevy_gearbox_macros::transition_message;
pub use bevy_gearbox_macros::state_component;
pub use bevy_gearbox_macros::state_bridge;


pub mod core {
    pub use bevy_gearbox_core::*;
}

#[cfg(feature = "server")]
pub mod server {
    pub use bevy_gearbox_protocol::server::*;
}