integrated particle system into player positions
This commit is contained in:
parent
2b8e04e4d6
commit
15960e7f80
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue