0
我使用three.js css3d全景,我想停止加載動畫。我想加載一個靜態的panomara,它只會移動用戶操作。我怎樣才能做到這一點?three.js css3d全景停止加載動畫
我正在使用的代碼是實施http://threejs.org/examples/#css3d_panorama相同:
function animate() {
requestAnimationFrame(animate);
lon += 0.1;
lat = Math.max(- 85, Math.min(85, lat));
phi = THREE.Math.degToRad(90 - lat);
theta = THREE.Math.degToRad(lon);
target.x = Math.sin(phi) * Math.cos(theta);
target.y = Math.cos(phi);
target.z = Math.sin(phi) * Math.sin(theta);
camera.lookAt(target);
renderer.render(scene, camera);
}
感謝您對以下幫助