Animated Vertex Position
BlitzMax Modules Forums/MiniB3D/Animated Vertex Position
Hello,
Sorry if this question has been ask before, but I would like to find the position of the vertext of an animated mesh. I have routine to scan through all the vertices of a mesh, but it doesnt seem to work with animated b3d models.
Cheers,
Unc
Copy the VertexX, VertexY, VertexX functions, rename them to AnimVertexX, etc, and change the 'verts' arrays to 'anim_verts'.
Thanks Simon. I will give it a go :)
Hi Simon,
I followed your advice, but I can't seem to find the correct verts array to reference i.e. 'anim_verts'. I looked in the source code for the TSurface type but don't see any references to an array which stores the animated vertexs? Am I missing something? I hope you can point me in the right directions.
Cheers,
Unc
Sorry, I got that wrong. There isn't a separate anim_verts array, but instead animated meshes have a separate anim_surf, which you then need to use with the standard VertexX/Y/Z commands.
Cheers Simon and thanks for the pointers. I think I have got it working now.