Skip to content

Instantly share code, notes, and snippets.

@bfunc
Created June 4, 2019 12:13
Show Gist options
  • Save bfunc/7f2ae9610cacc0db324ce25d8faec19a to your computer and use it in GitHub Desktop.
Save bfunc/7f2ae9610cacc0db324ce25d8faec19a to your computer and use it in GitHub Desktop.
stats.js gist
var stats = new Stats();
document.body.appendChild(stats.dom);
requestAnimationFrame(function loop() {
stats.update();
requestAnimationFrame(loop)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment