Appearance
const tick = () => { console.log('tick'); window.requestAnimationFrame(tick); } tick();
用于计时
const theClock = new THREE.Clock();
获取帧间隔
theClock.getDelta(); // 不推荐使用
获取经过的时间
theClock.getElapsedTime();