I saw another post in the help section mentioning mesh modification, but I just wanted to ask this, to help clear my brain up a bit.
An animated mesh is NOT modifiable correct? Example:
IAnimatedMesh* mesh = SceneManager->getMesh(filename);
An IMesh created from an animated mesh, which is the only way that I have seen them created, is NOT modifiable correct? Example:
IMesh* mesh2 = mesh->getMesh(0, 255, -1, -1);
BUT, if I copy the IMesh into an SMesh, that mesh IS modifiable correct? Example:
SMesh* clone = SceneManager->getMeshManipulator()->createMeshCopy(mesh2);
I can then play with the internals of the MeshBuffers of that SMesh correct??
Is it possible then to add that SMesh to a node? I know there is an IMeshSceneNode, but I havent yet seen a SMesh scene node....