We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9afb0 commit 9c1a7aaCopy full SHA for 9c1a7aa
crates/bevy_hierarchy/src/lib.rs
@@ -4,11 +4,9 @@
4
//! Most commonly, these hierarchies are used for inheriting [`Transform`](bevy_transform::Transform) values
5
//! from the [`Parent`] to its [`Children`].
6
7
-/// The basic components of the hierarchy
8
mod components;
9
pub use components::*;
10
11
-/// Establishing and updating the transform hierarchy
12
mod hierarchy;
13
pub use hierarchy::*;
14
@@ -21,7 +19,7 @@ pub use systems::*;
21
19
#[doc(hidden)]
22
20
pub mod prelude {
23
24
- pub use crate::{components::*, hierarchy::*, HierarchyPlugin};
+ pub use crate::{child_builder::*, components::*, hierarchy::*, HierarchyPlugin};
25
}
26
27
use bevy_app::prelude::*;
0 commit comments