Advertisement
Gordon___From

Frame Time

Mar 12th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function animate() {
  2.   var last = Date.now(), now, frameTime;
  3.  
  4.   function frame() {
  5.     now = Date.now();
  6.     frameTime = now - last;
  7.     last = now;
  8.     console.log( frameTime );
  9.     requestAnimationFrame( frame );
  10.   }
  11.   frame();
  12. }
  13. animate();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement