From 0177090ea3d9ae194f87c14b1669f2b25d87fb7b Mon Sep 17 00:00:00 2001 From: Matt Low Date: Thu, 26 Dec 2019 01:52:34 +0400 Subject: [PATCH] Paccy should start off to the left --- core/src/com/me/pacman/entity/Pacman.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/me/pacman/entity/Pacman.java b/core/src/com/me/pacman/entity/Pacman.java index 7c621b9..1e1bd06 100644 --- a/core/src/com/me/pacman/entity/Pacman.java +++ b/core/src/com/me/pacman/entity/Pacman.java @@ -18,7 +18,7 @@ public class Pacman extends MovableEntity { public int deathFrame = 0; public Pacman(PlayState state, boolean moving) { - super(state, 14, 7.5f, 7.5f, moving, Direction.EAST, 0.3f); + super(state, 14, 7.5f, 7.5f, moving, Direction.WEST, 0.3f); this.state = state; sprite = state.getGame().assets.pacman; death = state.getGame().assets.deathAnimation;