From 15960e7f80d78c8771992a9f3b9f6613fb872a78 Mon Sep 17 00:00:00 2001 From: Nixon Date: Wed, 24 Aug 2022 14:35:05 +0800 Subject: [PATCH] integrated particle system into player positions --- src/game.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game.rs b/src/game.rs index 76f03c2..3016b66 100644 --- a/src/game.rs +++ b/src/game.rs @@ -34,11 +34,13 @@ impl Plugin for GamePlugin { .with_system(keyboard_input_system) .with_system(character_particle_effect_system) .with_system(move_camera), + .with_system(character_particle_effect_system), ) .add_system_set( SystemSet::on_update(AppState::Win) .with_system(keyboard_input_system) .with_system(move_camera), + .with_system(character_particle_effect_system), ) .add_system_to_stage(CoreStage::PostUpdate, collision_event_system); }