浏览代码

Update FBXConverter.cpp

Removing dead and unused code.
Kim Kulling 6 年之前
父节点
当前提交
0ec5eb752c
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      code/FBX/FBXConverter.cpp

+ 0 - 3
code/FBX/FBXConverter.cpp

@@ -1407,15 +1407,12 @@ namespace Assimp {
                         const std::vector<unsigned int>& indices = shapeGeometry->GetIndices();
                         animMesh->mName.Set(FixAnimMeshName(shapeGeometry->Name()));
                         for (size_t j = 0; j < indices.size(); j++) {
-                            const unsigned int o_index = indices.at(j);
-                            //unsigned int index = translateIndexMap[indices.at(j)];
                             unsigned int index = indices.at(j);
                             aiVector3D vertex = vertices.at(j);
                             aiVector3D normal = normals.at(j);
                             unsigned int count = 0;
                             const unsigned int* outIndices = mesh.ToOutputVertexIndex(index, count);
                             for (unsigned int k = 0; k < count; k++) {
-                                //unsigned int index = outIndices[k];
                                 unsigned int index = translateIndexMap[outIndices[k]];
 
                                 animMesh->mVertices[index] += vertex;