I have my code.
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == 37){
personx -=2;
}
if (e.getKeyCode() == 38){
persony -=2;
}
if (e.getKeyCode() == 39){
personx +=2;
}
if (e.getKeyCode() == 40){
persony +=2;
}
try {
Thread.sleep((long) 0.04);
} catch (InterruptedException e1) {
e1.printStackTrace();
}
The code will not move the character. I checked if it was being called but whe I wrote:
public void keyPressed(KeyEvent e) {
System.out.println("Test");
}
But it did not print Test.
I'm using Eclipse Java EE IDE.
Thread.sleep((long) 0.04);is the same asThread.sleep(0);which is the same as// no code at all– jlordo Jan 27 at 1:18