You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tobspr_shapez.io/src/js/webworkers/background_animation_frame_...

17 lines
335 B

4 years ago
// We clamp high deltas so 30 fps is fairly ok
const bgFps = 30;
const desiredMsDelay = 1000 / bgFps;
4 years ago
let lastTick = performance.now();
4 years ago
function tick() {
const now = performance.now();
const delta = now - lastTick;
4 years ago
lastTick = now;
4 years ago
// @ts-ignore
self.postMessage({ delta });
4 years ago
}
setInterval(tick, desiredMsDelay);