MaxScript 随着时间的推移导出顶点
嘿,我有一个随着时间的推移而产生动画的蒙皮网格。 我正在编写一个快速导出脚本来导出我的顶点。
如何输出每帧的顶点?
我使用 getVert 获取顶点,但如何指定从哪个帧获取顶点?
谢谢 灰
Hey, I have a skinned mesh that animates over time.
I'm writing a quick export script to export out my verticies.
How do I output the vertices per frame?
I'm getting the verticies using getVert, but how do I specify which frame to get the vertex from?
Thanks
ASH
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下代码未经测试,但类似的代码应该适合您。如果您需要进行任何更改,请告诉我。
The following code is untested, but something like it should work for you. Please let me know if there are any changes you need to make.
您可以对整个网格使用“at time”。
例如“at time i mmesh=snapshotAsMesh obj”,
其中“i”是您想要的框架,“obj”是现有对象,“mmesh”是生成的网格。
在 mmesh 上,您可以执行常用的 getvert 功能。
you can use "at time" for the whole mesh.
e.g. "at time i mmesh=snapshotAsMesh obj"
where "i" is the frame you want, "obj" the existing object and "mmesh" the resulting mesh.
on mmesh you can do your usual getvert functions.