Skip to content

Commit 9c1a7aa

Browse files
Expose ChildBuilder traits in prelude
1 parent ef9afb0 commit 9c1a7aa

File tree

1 file changed

+1
-3
lines changed
  • crates/bevy_hierarchy/src

1 file changed

+1
-3
lines changed

crates/bevy_hierarchy/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
//! Most commonly, these hierarchies are used for inheriting [`Transform`](bevy_transform::Transform) values
55
//! from the [`Parent`] to its [`Children`].
66
7-
/// The basic components of the hierarchy
87
mod components;
98
pub use components::*;
109

11-
/// Establishing and updating the transform hierarchy
1210
mod hierarchy;
1311
pub use hierarchy::*;
1412

@@ -21,7 +19,7 @@ pub use systems::*;
2119
#[doc(hidden)]
2220
pub mod prelude {
2321
#[doc(hidden)]
24-
pub use crate::{components::*, hierarchy::*, HierarchyPlugin};
22+
pub use crate::{child_builder::*, components::*, hierarchy::*, HierarchyPlugin};
2523
}
2624

2725
use bevy_app::prelude::*;

0 commit comments

Comments
 (0)