Notifications
Clear all

[Closed] Exporting Animated Vertex Info

I have a mesh weighted to a skeleton and animated across on number of frames. Does anyone know a way to get the world space vertices for the mesh. As in, I would like to export the vertex info at each frame.

Thanks in Advance!!

2 Replies
1 Reply
(@bobo)
Joined: 11 months ago

Posts: 0

The method snapshotAsMesh() returns a TriMesh value containing the world space coordinates of the vertices after all modifiers, node transforms and space warps.
You could snapshot the mesh on each frame and export the coordinates to a file.

Alternatively, you could create a snapshot (using the snapshot tool or MAXScript) of the object on each frame and export to some supported format like OBJ, 3DS etc.

Thanks! Thats just what i needed.