diff --git a/src/core/io/ObjLoader.cpp b/src/core/io/ObjLoader.cpp index 630f9083..73f48f5d 100644 --- a/src/core/io/ObjLoader.cpp +++ b/src/core/io/ObjLoader.cpp @@ -302,7 +302,7 @@ std::shared_ptr ObjLoader::convertObjMaterial(const ObjMaterial &mat) result = std::make_shared(texture, result); } if (mat.hasBumpMap()) { - PathPtr path = std::make_shared(mat.alphaMap); + PathPtr path = std::make_shared(mat.bumpMap); path->freezeWorkingDirectory(); auto texture = _textureCache->fetchTexture(path, TexelConversion::REQUEST_AVERAGE);