Attachable super class

This commit is contained in:
devZoGok
2022-03-26 15:47:21 +02:00
parent 56e1b2990a
commit fdf751cde5
11 changed files with 39 additions and 24 deletions
+2 -1
View File
@@ -24,10 +24,11 @@ namespace vb01{
this->maxValue = maxValue;
}
MeshData::MeshData(Vertex *vertices, u32 *indices, int numTris, string *vertexGroups, int numVertexGroups, string fullSkeletonName, ShapeKey *shapeKeys, int numShapeKeys){
MeshData::MeshData(Vertex *vertices, u32 *indices, int numTris, string attachableName, string *vertexGroups, int numVertexGroups, string fullSkeletonName, ShapeKey *shapeKeys, int numShapeKeys){
this->vertices = vertices;
this->indices = indices;
this->numTris = numTris;
this->attachableName = attachableName;
this->vertexGroups = vertexGroups;
this->numVertexGroups = numVertexGroups;
this->fullSkeletonName = fullSkeletonName;