generated from 2ndbeam/bevy-template
feat: BpmTimer and AttackArea
This commit is contained in:
parent
e4b1475c48
commit
f6022d84b2
7 changed files with 198 additions and 2 deletions
|
|
@ -20,6 +20,9 @@ impl Plugin for GamePlugin {
|
|||
InputManagerPlugin::<input::DebugInput>::default(),
|
||||
))
|
||||
.add_systems(Startup, setup)
|
||||
.add_systems(Update, player::systems::handle_input);
|
||||
.add_systems(Update, (
|
||||
player::systems::handle_input,
|
||||
timer::update_bpm_timers,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue