Allow WASD

This commit is contained in:
Matt Low 2019-12-29 12:25:13 +04:00
parent bf0d5e041b
commit 6bfe740416

View File

@ -415,17 +415,22 @@ public class PlayState extends LevelState {
public boolean keyDown(int keycode) {
switch (keycode) {
case Input.Keys.UP:
case Input.Keys.W:
pacman.setNextDirection(Direction.UP);
break;
case Input.Keys.DOWN:
case Input.Keys.S:
pacman.setNextDirection(Direction.DOWN);
break;
case Input.Keys.LEFT:
case Input.Keys.A:
pacman.setNextDirection(Direction.LEFT);
break;
case Input.Keys.RIGHT:
case Input.Keys.D:
pacman.setNextDirection(Direction.RIGHT);
break;
case Input.Keys.ESCAPE:
case Input.Keys.P:
paused = !paused;
break;