godot-bevy 0.8.4

Bridge between Bevy ECS and Godot 4 for Rust-powered game development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod events;
pub mod input_bridge;

// Re-export the main plugins
pub use events::GodotInputEventPlugin;
pub use input_bridge::BevyInputBridgePlugin;

// Re-export event types for convenience
pub use events::{
    ActionInput, GamepadAxisInput, GamepadButtonInput, KeyboardInput, MouseButton,
    MouseButtonInput, MouseMotion, TouchInput,
};

// Re-export input reader types
pub use events::{InputEventReader, InputEventType};