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.
对于我的项目,我想手动设置投影矩阵参数。
例如,我希望能够做这样的事情:
camera.projectionMatrix[15] = 1;
我怎样才能在 Three.JS 中做到这一点?
这应该这样做:
camera.projectionMatrix.elements[15] = 1;