Hello everyone. Using 4.0.0.
I have Mesh loaded by md5mesh parser (Body with legs) and have another md5mesh body parts( hands and head) with same skeleton names.
How I can add this parts to main mesh (body with legs)?
Some tutorial, or code help?
mesh = event.asset as Mesh;
mesh.material = GetCurMaterial(body);
mesh.castsShadows = true;
scene.addChild(mesh);
mesh.addChild(placeHolder);
HMesh = event.asset as Mesh;
HMesh.material = GetCurMaterial(head);
what next I must to do?