Skip to content

Instantly share code, notes, and snippets.

@haeric
Created May 19, 2013 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haeric/5607803 to your computer and use it in GitHub Desktop.
Save haeric/5607803 to your computer and use it in GitHub Desktop.
function animate() {
requestAnimationFrame( animate );
delta = Math.min( 1.0, clock.getDelta() );
if ( settings.paused )
return;
world.update( delta );
gui.render( delta );
renderer.render( delta );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment