Sfoglia il codice sorgente

Merge pull request #3594 from xiaohunqupo/master

Fix STL Expoter error.
Kim Kulling 4 anni fa
parent
commit
c9c54822fd
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      code/AssetLib/STL/STLExporter.cpp

+ 1 - 1
code/AssetLib/STL/STLExporter.cpp

@@ -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;
     }
 }