A little bit FPS independency

This commit is contained in:
2014-08-10 20:59:50 +02:00
parent 59b679756a
commit faf6e21500
13 changed files with 315 additions and 44 deletions

View File

@@ -12,6 +12,14 @@ public class DesktopLauncher {
config.width = 1000;
config.height = 563;
/*
* For FPS Independence Testing
*/
// config.vSyncEnabled = false; // Setting to false disables vertical sync
// config.foregroundFPS = 0; // Setting to 0 disables foreground fps throttling
// config.backgroundFPS = 0; // Setting to 0 disables background fps throttling
new LwjglApplication(new CRGame(), config);
}
}