Skip to content

Instantly share code, notes, and snippets.

@bendc
Created August 24, 2017 14:23
Show Gist options
  • Save bendc/9fcd54e3f78e371ff73253e11aa2a91a to your computer and use it in GitHub Desktop.
Save bendc/9fcd54e3f78e371ff73253e11aa2a91a to your computer and use it in GitHub Desktop.
rAF tutorial: basic loop
const tick = now => {
requestAnimationFrame(tick);
};
requestAnimationFrame(tick);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment