All setInterval

This commit is contained in:
Thomas FORGIONE
2015-06-30 14:21:51 +02:00
parent 64b27b3e1f
commit 5259a8feea
3 changed files with 9 additions and 3 deletions

View File

@@ -53,10 +53,12 @@ function init() {
plane.translate(0,0,-100);
plane.addToScene(scene);
setInterval(animate, 20);
}
function animate() {
requestAnimationFrame(animate);
// requestAnimationFrame(animate);
var currentTime = Date.now() - previousTime;
camera.update(isNaN(currentTime) ? 20 : currentTime);