Skip to content

Commit cb43707

Browse files
committed
rename file to hierarchy_down_propagate
1 parent 7b87274 commit cb43707

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
File renamed without changes.

crates/bevy_ecs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub mod entity_disabling;
3939
pub mod error;
4040
pub mod event;
4141
pub mod hierarchy;
42-
pub mod hierarchy_propagate;
42+
pub mod hierarchy_down_propagate;
4343
pub mod intern;
4444
pub mod label;
4545
pub mod lifecycle;

crates/bevy_transform/src/systems.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::components::{GlobalTransform, Transform, TransformTreeChanged};
22
use bevy_ecs::{
3-
hierarchy_propagate::{
3+
hierarchy_down_propagate::{
44
hierarchy_propagate_complex, hierarchy_propagate_simple,
55
mark_dirty_trees as mark_dirty_trees_generic, DownPropagate,
66
},
@@ -89,7 +89,7 @@ pub fn propagate_parent_transforms(
8989
}
9090

9191
#[cfg(feature = "std")]
92-
use bevy_ecs::hierarchy_propagate::parallel::{NodeQuery, WorkQueue};
92+
use bevy_ecs::hierarchy_down_propagate::parallel::{NodeQuery, WorkQueue};
9393

9494
#[cfg(feature = "std")]
9595
/// Parallel hierarchy traversal with a batched work sharing scheduler. Often 2-5 times faster than

0 commit comments

Comments
 (0)