How would I check the fps of my javascript? I'm using this to loop:
gameloopId = setInterval(gameLoop, 10);
|
How would I check the fps of my javascript? I'm using this to loop:
| |||
|
feedback
|
|
In
| |||||||
feedback
|
|
The code by @Slaks gives you only the instantaneous FPS of the last frame, which may vary or be misleading with hiccups. I prefer to use an easy-to-write-and-compute low-pass filter to remove quick transients and display a reasonable pseudo-average of recent results:
The 'halflife' of this filter—the number of frames needed to move halfway from the old value to a new, stable value—is For example, a strength of Here is a visual comparison of different filter strengths for a ~30fps game that has a momentary dip to 10fps and then later speeds up to 50fps. As you can see, lower filter values more quickly reflect 'good' changes, but also are more susceptible to temporary hiccups: Finally, here is an example of using the above code to actually benchmark a 'game' loop. | ||||
|
feedback
|