From 1ea0cb972827f977432c71152ab18b1c5b402eee Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Wed, 19 Jul 2023 16:33:14 +0600 Subject: [PATCH] remove redundant code --- .../ourGame/source/game/entity/player.d | 1 - 1 file changed, 1 deletion(-) diff --git a/lesson#29 - Player spritesheet animation/ourGame/source/game/entity/player.d b/lesson#29 - Player spritesheet animation/ourGame/source/game/entity/player.d index fc01220..761c725 100644 --- a/lesson#29 - Player spritesheet animation/ourGame/source/game/entity/player.d +++ b/lesson#29 - Player spritesheet animation/ourGame/source/game/entity/player.d @@ -38,7 +38,6 @@ class Player: Entity { this.move(movementSpeed, 0); animationManager.update(KeyboardKey.KEY_D); } else if (IsKeyDown(KeyboardKey.KEY_SPACE)) { - // animationManager.update(KeyboardKey.KEY_SPACE); } else if (IsKeyDown(KeyboardKey.KEY_X)) { animationManager.update(KeyboardKey.KEY_X);