0

有我的代码 http://codepen.io/usf/pen/pGscf

在这部分

 function animate() {   
   //sun.rotation.x = t/1000;
    sun.rotation.y += 0.01;

    t  += 0.1;
    earth.position.x = Math.sin((2*Math.PI/24*60*60)*timeScale*t)*300;
    earth.position.z = Math.cos((2*Math.PI/24*60*60)*timeScale*t)*200;

    camera.position.set(sun.position);
    camera.lookAt(earth.position);
    //sun.lookAt(earth.position);

    renderer.clear();
    renderer.render(scene, camera);        
    window.requestAnimationFrame(animate, renderer.domElement);
};

我想从太阳看地球(笑),但我什么也看不见。我该如何解决?我认为有一些小错误,但找不到

4

1 回答 1

2

这里有问题:camera.position.set(sun.position);

set 方法应该像这样使用:

set: function ( x, y, z ) {
    this.x = x;
    this.y = y;
    this.z = z;

    return this;
}

改为使用camera.position.copy(sun.position)

于 2013-05-29T11:52:38.800 回答