标签: three.js
在调试three.js代码时,我在网格实例中看到了以下成员(由THREE.PlaneGeometry构成):
up : THREE.Vector3 x : 0 y : 1 z : 0
'up'表示什么意思?
并且,如果我通过以下方式旋转网格:
rotation.set(Math.PI/2, 0, 0);
它会影响'up'吗?
答案 0 :(得分:0)
' up'表示?
看看official documentation。 lookAt()使用它来计算3D对象的方向。
lookAt()
它会影响' up'太?
没有