Skip to content

Commit

Permalink
Expose ChildBuilder traits in prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile committed Mar 11, 2022
1 parent ef9afb0 commit 9c1a7aa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/bevy_hierarchy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
//! Most commonly, these hierarchies are used for inheriting [`Transform`](bevy_transform::Transform) values
//! from the [`Parent`] to its [`Children`].

/// The basic components of the hierarchy
mod components;
pub use components::*;

/// Establishing and updating the transform hierarchy
mod hierarchy;
pub use hierarchy::*;

Expand All @@ -21,7 +19,7 @@ pub use systems::*;
#[doc(hidden)]
pub mod prelude {
#[doc(hidden)]
pub use crate::{components::*, hierarchy::*, HierarchyPlugin};
pub use crate::{child_builder::*, components::*, hierarchy::*, HierarchyPlugin};
}

use bevy_app::prelude::*;
Expand Down

0 comments on commit 9c1a7aa

Please sign in to comment.