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
pub mod autosync;
pub mod plugin;

// Re-export main components
pub use autosync::{
    AutoSyncBundleRegistry, BundleCreatorFn, register_all_autosync_bundles,
    try_add_bundles_for_node,
};
pub use plugin::{
    GodotSceneTreePlugin, Groups, SceneTreeEvent, SceneTreeEventReader, SceneTreeEventType,
    SceneTreeRef,
};