Im working on a simple platformer in java and am having trouble with the jumping of the player. What is happening is that if I hold down the spacebar the player just keeps going up. I need some way to have the player jump once per spacebar press. My current KeyListener setup for jumping is below.
public void keyPressed(KeyEvent e) {
int key = e.getKeyCode();
if (key == KeyEvent.VK_SPACE)
Input.jump = true;
}
public void keyReleased(KeyEvent e) {
int key = e.getKeyCode();
if (key == KeyEvent.VK_SPACE)
Input.jump = false;
}
In my Player class I have the following for toggling the jump
if(Input.jump == true) jump();
Any help would be much appreciated!
