Przeglądaj źródła

Update glTFExporter.cpp

Replacing tabs by spaces.
Kim Kulling 5 lat temu
rodzic
commit
0af44fb3e8
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      code/glTF/glTFExporter.cpp

+ 1 - 1
code/glTF/glTFExporter.cpp

@@ -353,7 +353,7 @@ void glTFExporter::GetMatColorOrTex(const aiMaterial* mat, glTF::TexProperty& pr
                     if (path[0] == '*') { // embedded
                         aiTexture* tex = mScene->mTextures[atoi(&path[1])];
 						
-						prop.texture->source->name = tex->mFilename.C_Str();
+                        prop.texture->source->name = tex->mFilename.C_Str();
 
                         uint8_t* data = reinterpret_cast<uint8_t*>(tex->pcData);
                         prop.texture->source->SetData(data, tex->mWidth, *mAsset);