godot-bevy 0.9.0

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
16
17
pub mod change_filter;
pub mod config;
pub mod conversions;
pub mod custom_sync;
pub mod math;
pub mod plugin;
pub mod sync_systems;

// Re-export main components and types
pub use change_filter::TransformSyncMetadata;
pub use config::{GodotTransformConfig, TransformSyncMode};
pub use conversions::{IntoBevyTransform, IntoGodotTransform, IntoGodotTransform2D};
pub use custom_sync::{GodotTransformSyncPluginExt, add_transform_sync_systems};
pub use plugin::GodotTransformSyncPlugin;

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