From 7470e8fa8d8aa5aa6d71081a1b9141567d6b1098 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 7 Jan 2025 20:51:50 -0500 Subject: [PATCH] Move to fixed schedule. --- src/sound/footstep.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), ); }