标签: camera three.js
我看到ColladaLoader有办法将upAxis设置为'Z'...有没有办法在Three.js中做到这一点,以便摄像机的上轴为Z?
谢谢!
答案 0 :(得分:18)
您可以像这样设置相机up矢量:
up
camera.up.set( 0, 0, 1 );
然后,当您致电camera.lookAt( point )时,它会按预期运作。
camera.lookAt( point )
编辑:更新为three.js r.68