1

嘿,我有一个随着时间的推移动画的蒙皮网格。我正在编写一个快速导出脚本来导出我的顶点。

如何输出每帧的顶点?

我正在使用 getVert 获取顶点,但是如何指定从哪个帧获取顶点?

谢谢 ASH

4

2 回答 2

1

以下代码未经测试,但类似的代码应该适合您。如果您需要进行任何更改,请告诉我。

/* Exports mesh data 'm' to file 'f' */ 
def exportData m f = (
  format "%,%\n" m.numverts m.numfaces to:f
  for i = 1 to m.numverts do
  format "%," (getVert m i) to:f
    format "\n" to:f
  for i = 1 to m.numfaces do
    format "%," (getFace m i) to:f
)

/* Exports mesh data from a node 'n' at time 't' to file 'f' */ 
def exportNodeMeshAtTime t n f = 
(
  at time t 
    m = snapshotAsMesh n
  exportMesh m f
)

/* Create a text file for receiving the data */
out_file = createfile ((GetDir #export)+"/testmesh.dat")

/* Enumerate all times in the animation range, exporting
   the mesh data from the selected node at time t. */ 
for t = animationRange.start to animationRange.end do (
  exportNodeMeshAtTime t selection[1] out_file
)

/* Close the text file */
close out_file
于 2010-10-26T18:24:42.207 回答
0

您可以对整个网格使用“at time”。例如“在时间我 mmesh=snapshotAsMesh obj”

其中“i”是您想要的框架,“obj”是现有对象,“mmesh”是生成的网格。在 mmesh 上,您可以执行通常的 getvert 功能。

于 2010-09-07T06:19:44.277 回答