godot-bevy 0.8.3

Bridge between Bevy ECS and Godot 4 for Rust-powered game development
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod conversions;
pub mod math;
pub mod plugin;
pub mod sync_systems;

// Re-export main components and types
pub use conversions::{IntoBevyTransform, IntoGodotTransform, IntoGodotTransform2D};
pub use plugin::GodotTransformSyncPlugin;

// Re-export math utilities for advanced users
pub use math::*;