Move to fixed schedule.

This commit is contained in:
Nolan Darilek 2025-01-07 20:51:50 -05:00
parent 1fa48f89ab
commit 7470e8fa8d

View File

@ -127,7 +127,7 @@ pub struct FootstepPlugin;
impl Plugin for FootstepPlugin { impl Plugin for FootstepPlugin {
fn build(&self, app: &mut App) { fn build(&self, app: &mut App) {
app.add_systems(PreUpdate, added).add_systems( app.add_systems(PreUpdate, added).add_systems(
PostUpdate, FixedPostUpdate,
update.after(TransformSystem::TransformPropagate), update.after(TransformSystem::TransformPropagate),
); );
} }