Editing LoadMesh meshes

Blitz3D Forums/Blitz3D Beginners Area/Editing LoadMesh meshes

fox95871(Posted 2010) [#1]
Hi, is there a way to edit the vertexes of a LoadMesh mesh? I've done it with a CreateMesh cube, but I don't know how to do it with LoadMesh because I don't know how to get at the vertexes, or save their new positions after, which I do know how to do with CreateMesh. Any ideas?


Ross C(Posted 2010) [#2]
You first need to do a countsurface() command, then getsurface, using an index number (in range of the countsurface() command ).

Once you have your surface you can now access the vertices on that surface.


Ross C(Posted 2010) [#3]
.


fox95871(Posted 2010) [#4]
Thanks, I'll try that.