How to control framerate / lower cpu usage
Posted: Wed Jul 10, 2019 9:28 am
Hi, this is a code example of how to control (lower) the framerate. Main reason would be to lower the cpu usage, but I guess there are any number of uses.
Here is the magic part of the code, checking if enough time has passed:
Here is the magic part of the code, checking if enough time has passed:
Code: Select all
var fpsInterval = 1000 / 5; // Giving 5 fps.
var Now, ElapsedTime, LastDraw;
function GameLoop()
{
Now = Date.now();
ElapsedTime = Now - LastDraw;
if (ElapsedTime >= fpsInterval)
{
// Enough time has passed, time to draw.
LastDraw = Now;
// Do your drawing here.
}
window.requestAnimationFrame(GameLoop);
}