Undo change

master
John 2022-06-02 12:22:53 -04:00
parent 1a37787012
commit 8d7b62c065
1 changed files with 16 additions and 4 deletions

View File

@ -29,10 +29,22 @@ public class GenericSprite extends Rectangle{
//updates the direction of the ball based on user input
//if the keyboard input isn't any of the options (d, a, w, s), then nothing happens
public void keyPressed(KeyEvent e){
rightPressed = e.getKeyChar() == 'd';
leftPressed = e.getKeyChar() == 'a';
upPressed = e.getKeyChar() == 'w';
downPressed = e.getKeyChar() == 's';
if(e.getKeyChar() == 'd'){
rightPressed = true;
}
if(e.getKeyChar() == 'a'){
leftPressed = true;
}
if(e.getKeyChar() == 'w'){
upPressed = true;
}
if(e.getKeyChar() == 's'){
downPressed = true;
}
move();
}