Проектная работа - WIP

This commit is contained in:
8 changed files with 60 additions and 4 deletions
+8 -1
View File
@@ -32,7 +32,14 @@ fn main() {
// snake_game::debug::print_all_entities,
),
)
.add_systems(Update, (head_rotation,))
.add_systems(
Update,
(
|| {}, //
head_rotation,
snake_game::debug::grow_up_on_tab,
),
)
.add_systems(FixedUpdate, (head_moving, snake_moving))
.add_systems(
PostUpdate,