Empty Synchronized method in game loop
- by Shijima
I am studying the gameloop used in Replica Island to understand a bit about Android game development. The main loop has the below logic...
GameThread.java (note the variable names in sample code dont match exact source code)
while (!finished) {
if (objectManager != null) {
renderer.waitDrawingComplete();
//Do…