godot-bevy 0.11.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
pub mod autosync;
pub mod node_type_checking;
pub mod plugin;
pub mod relationship;

// Re-export main components
pub use autosync::{
    AutoSyncBundleRegistry, BundleCreatorFn, register_all_autosync_bundles,
    try_add_bundles_for_node,
};
pub use plugin::{
    GodotSceneTreePlugin, Groups, NodeEntityIndex, ProtectedNodeEntity, SceneTreeConfig,
    SceneTreeMessage, SceneTreeMessageReader, SceneTreeMessageType, SceneTreeRef,
};
pub use relationship::{GodotChildOf, GodotChildren};