godot-bevy 0.8.1

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
pub mod components;
pub mod conversions;
pub mod math;
pub mod plugin;
pub mod sync_systems;

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

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