문제

After looking at timer showed on the LWJGL wiki milliseconds weren't fast enough. It kept an inconsistent speed of the player. I can't find anything on how to produce a more accurate timer, like 3.2 milliseconds instead of 3 milliseconds. I know this sounds stupid, but I'm really stuck.

도움이 되었습니까?

해결책

You could use System.nanoTime():

long startTime = System.nanoTime();    
//Stuff in-between
long timeTaken = System.nanoTime() - startTime;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top