Remove not needed init.
parent
418c07a9bb
commit
b87f4c03ba
|
@ -47,10 +47,6 @@ namespace Assimp {
|
||||||
aiAnimMesh *aiCreateAnimMesh(const aiMesh *mesh)
|
aiAnimMesh *aiCreateAnimMesh(const aiMesh *mesh)
|
||||||
{
|
{
|
||||||
aiAnimMesh *animesh = new aiAnimMesh;
|
aiAnimMesh *animesh = new aiAnimMesh;
|
||||||
/*animesh->mVertices = NULL;
|
|
||||||
animesh->mNormals = NULL;
|
|
||||||
animesh->mTangents = NULL;
|
|
||||||
animesh->mBitangents = NULL;*/
|
|
||||||
animesh->mNumVertices = mesh->mNumVertices;
|
animesh->mNumVertices = mesh->mNumVertices;
|
||||||
if (mesh->mVertices) {
|
if (mesh->mVertices) {
|
||||||
animesh->mVertices = new aiVector3D[animesh->mNumVertices];
|
animesh->mVertices = new aiVector3D[animesh->mNumVertices];
|
||||||
|
|
Loading…
Reference in New Issue