Fix STL Expoter error.

This commit is contained in:
xiaohunqupo
2021-01-20 16:29:30 +08:00
committed by GitHub
parent c52e5c4da8
commit 8ba1d38dea

View File

@@ -147,7 +147,7 @@ STLExporter::STLExporter(const char* _filename, const aiScene* pScene, bool expo
for(unsigned int i = 0; i < pScene->mNumMeshes; ++i) {
WriteMesh(pScene->mMeshes[ i ]);
}
mOutput << EndSolidToken << name << endl;
mOutput << EndSolidToken << " " << name << endl;
}
}