diff --git a/src/sound/footstep.rs b/src/sound/footstep.rs index cbe6351..2e91496 100644 --- a/src/sound/footstep.rs +++ b/src/sound/footstep.rs @@ -127,7 +127,7 @@ pub struct FootstepPlugin; impl Plugin for FootstepPlugin { fn build(&self, app: &mut App) { app.add_systems(PreUpdate, added).add_systems( - PostUpdate, + FixedPostUpdate, update.after(TransformSystem::TransformPropagate), ); }