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.
在使用 .js 将模型转换为 JSON 后,我在 THREE.js 中从 3ds Max 导入convert_obj_three.py模型 模型保留 3ds Max 文件中的旋转。我想要没有对它们应用任何旋转的模型。有没有办法在 Three.js(或 3ds Max,就此而言)中将旋转重置为零?
convert_obj_three.py
在 3dsmax 中,只需将对象的变换设置为默认矩阵。
$.transform = matrix3 1
这将使平移、旋转和缩放归零。如果您只想重置旋转,请使用:
$.rotation = eulerangles 0 0 0
这些当然是 MAXScript 方法。如果您想手动重置,您只需在转换输入框中输入零(或右键单击微调器)。