I have a:
@Override
public boolean onTouchEvent(MotionEvent event) {
synchronized (event)
{
try {
Thread.sleep(16);
} catch (InterruptedException e) {
e.printStackTrace();
}
if(event.getAction() == MotionEvent.ACTION_DOWN){
isDown = true;
}else if(event.getAction() == MotionEvent.ACTION_MOVE){
isDown = true;
}else if(event.getAction() == MotionEvent.ACTION_UP){
isDown = false;
}
return true;
}
}
Then in my MainGame thread I use setCharacterPosition();
public void setCharacterPosition(){
if(isDown){
CharacterX += 32;
}
}
but this make my Character to run toooo quickly so i tried to add:
Thread.sleep(500);
Because i only want my character to increase with 32 every half a sencond.
IT works but bring my FPS down to 2-3.
How do i do it right?
//Simon