Frame.js icon indicating copy to clipboard operation
Frame.js copied to clipboard

Might be able to use new Date() for timer

Open bishopZ opened this issue 13 years ago • 2 comments

instead of Javascript ticks

bishopZ avatar May 05 '12 00:05 bishopZ

or this... https://github.com/mrdoob/stats.js

bishopZ avatar May 17 '12 14:05 bishopZ

var x = 100; var y = 100; var lastRender = new Date(); function render() { var delta = new Date() - lastRender; x += delta; y += delta; context.fillRect(x, y, W, H); requestAnimationFrame(render); } render();

bishopZ avatar May 22 '12 14:05 bishopZ