feat: Working AnimatedSprite

This commit is contained in:
Alexey 2026-04-20 14:29:44 +03:00
commit 254704135c
3 changed files with 119 additions and 42 deletions

View file

@ -23,8 +23,12 @@ impl Plugin for GamePlugin {
StateMachinePlugin::default(),
))
.add_systems(Startup, setup)
.add_systems(Startup, (
setup,
setup_animated_sprite,
))
.add_systems(Update, (
anim::sprite::update_animated_sprites,
combat::attack::update_attack_areas,
player::systems::handle_input,
timer::update_bpm_timers,