Skip to content

Instantly share code, notes, and snippets.

@notepadwebdev
Last active November 21, 2016 22:36
Show Gist options
  • Save notepadwebdev/7d46504dd09dcee9ef51291c2d740167 to your computer and use it in GitHub Desktop.
Save notepadwebdev/7d46504dd09dcee9ef51291c2d740167 to your computer and use it in GitHub Desktop.
Recursive requestAnimationFrame loop
onTick() {
this.raf = requestAnimationFrame(this.onTick.bind(this));
this.analyser.getByteFrequencyData(this.dataArray);
// animations go here...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment