Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ColladaLoader には upAxis を 'Z' に設定する方法があることがわかりました...カメラのアップ軸が Z になるように、適切な Three.js でそれを行う方法はありますか?
ありがとう!
up次のようにカメラ ベクトルを設定できます。
up
camera.up.set( 0, 0, 1 );
その後、 を呼び出すとcamera.lookAt( point )、期待どおりに動作します。
camera.lookAt( point )
編集:three.js r.68に更新