0
votes
1answer
788 views

Approach for Android game with timers and touch event (move) handling

I'm doing a game with game loop and active rendering (using SurfaceView and SurfaceHolder.Callback). I'm wondering how to make that work together with timed events and touch event management. The ...
3
votes
1answer
517 views

GameLoop checking for input (Android/GlSurfaceView)

If I have some basic game loop in a thread, like this: public void run(){ getInput(); //onTouchEvent method is only available in view class. updateState(); renderScreen(); } I ...