Skip to content

Instantly share code, notes, and snippets.

@CodeDraken
Created December 10, 2019 09:21
Show Gist options
  • Select an option

  • Save CodeDraken/e7e274402303b74c92b8206a0b207ec5 to your computer and use it in GitHub Desktop.

Select an option

Save CodeDraken/e7e274402303b74c92b8206a0b207ec5 to your computer and use it in GitHub Desktop.
// the main piece of the loop
// runs everything
function update () {
// queue the next update
window.requestAnimationFrame(update)
// logic goes here
// draw after logic/calculations
draw()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment