diff --git a/assets/spritesheets/player/woodcutter/Woodcutter_spritesheet.png b/assets/spritesheets/player/woodcutter/Woodcutter_spritesheet.png index 45be3b4..67989ab 100644 Binary files a/assets/spritesheets/player/woodcutter/Woodcutter_spritesheet.png and b/assets/spritesheets/player/woodcutter/Woodcutter_spritesheet.png differ diff --git a/lesson#29 - Player spritesheet animation/ourGame/source/game/animation/animation.d b/lesson#29 - Player spritesheet animation/ourGame/source/game/animation/animation.d index 2779e44..c03365d 100644 --- a/lesson#29 - Player spritesheet animation/ourGame/source/game/animation/animation.d +++ b/lesson#29 - Player spritesheet animation/ourGame/source/game/animation/animation.d @@ -11,15 +11,17 @@ struct Animation { float frameTimeSecs; float frameTimeSecsLeft; bool isActive; + bool flip; } - this(in Texture2D texture, in int numFrames, in int numRows, in float frameTimeSecs, in int useRow = 1) { + this(in Texture2D texture, in int numFrames, in int numRows, in float frameTimeSecs, in int useRow = 1, in bool flip = false) { this.texture = texture; this.numFrames = numFrames; this.frameTimeSecs = frameTimeSecs; this.frameTimeSecsLeft = frameTimeSecs; this.currentFrame = 0; this.isActive = true; + this.flip = flip; // create rectangle frames immutable frameWidth = texture.width / numFrames; @@ -55,7 +57,18 @@ struct Animation { } void draw(in Vector2 position) { - DrawTextureRec(texture, rectFrames[currentFrame], position, Colors.WHITE); + if (flip) { + DrawTextureRec(texture, + Rectangle( + rectFrames[currentFrame].x, + rectFrames[currentFrame].y, + -rectFrames[currentFrame].width, + rectFrames[currentFrame].height + ), + position, Colors.WHITE); + } else { + DrawTextureRec(texture, rectFrames[currentFrame], position, Colors.WHITE); + } } } 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 df67601..fc01220 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 @@ -12,14 +12,14 @@ class Player: Entity { super(texture, frame, position); this.movementSpeed = movementSpeed; - animationManager.add(KeyboardKey.KEY_NULL, Animation(texture, 6, 6, 0.15, 1)); - animationManager.add(KeyboardKey.KEY_W, Animation(texture, 6, 6, 0.1, 5)); - animationManager.add(KeyboardKey.KEY_S, Animation(texture, 6, 6, 0.1, 5)); - animationManager.add(KeyboardKey.KEY_A, Animation(texture, 6, 6, 0.1, 6)); - animationManager.add(KeyboardKey.KEY_D, Animation(texture, 6, 6, 0.1, 5)); - animationManager.add(KeyboardKey.KEY_SPACE, Animation(texture, 6, 6, 0.12, 2)); - animationManager.add(KeyboardKey.KEY_X, Animation(texture, 6, 6, 0.1, 3)); - animationManager.add(KeyboardKey.KEY_Z, Animation(texture, 6, 6, 0.13, 4)); + animationManager.add(KeyboardKey.KEY_NULL, Animation(texture, 6, 5, 0.15, 1)); + animationManager.add(KeyboardKey.KEY_W, Animation(texture, 6, 5, 0.1, 5)); + animationManager.add(KeyboardKey.KEY_S, Animation(texture, 6, 5, 0.1, 5)); + animationManager.add(KeyboardKey.KEY_A, Animation(texture, 6, 5, 0.1, 5, true)); + animationManager.add(KeyboardKey.KEY_D, Animation(texture, 6, 5, 0.1, 5)); + animationManager.add(KeyboardKey.KEY_SPACE, Animation(texture, 6, 5, 0.12, 2)); + animationManager.add(KeyboardKey.KEY_X, Animation(texture, 6, 5, 0.1, 3)); + animationManager.add(KeyboardKey.KEY_Z, Animation(texture, 6, 5, 0.13, 4)); } override void update() {}