有人可以告诉我,例如它是如何工作的
function animate(t) {
sun.rotation.y = t/1000;
renderer.clear();
camera.lookAt(sun.position);
renderer.render(scene, camera);
window.requestAnimationFrame(animate, renderer.domElement);
};
animate(new Date().getTime());
如您所见, animate() 函数具有参数“t”。我们用它来调用这个函数。但是在 animate() func requestAnimationFrame 内部调用它没有“t”并且程序运行完美..我很困惑