Skip to content

Instantly share code, notes, and snippets.

@iampava
Created January 24, 2018 08:29
Show Gist options
  • Save iampava/3611eb61995b81fb60b3ba6423e618db to your computer and use it in GitHub Desktop.
Save iampava/3611eb61995b81fb60b3ba6423e618db to your computer and use it in GitHub Desktop.
Small snippet showing how to use the "requestAnimationFrame" function to do some work every frame.
paint();
function paint() {
//This function gets called every frame
window.requestAnimationFrame(paint);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment