Merge pull request #4423 from youkeyao/parse_obj_anisotropy

Fix getting anisotropy in obj
pull/4425/head^2
Kim Kulling 2022-03-15 08:38:13 +01:00 committed by GitHub
commit 9e0357a8b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -238,6 +238,7 @@ void ObjFileMtlImporter::load() {
case 'a': // Anisotropy
{
++m_DataIt;
getFloatValue(m_pModel->m_pCurrentMaterial->anisotropy);
m_DataIt = skipLine<DataArrayIt>(m_DataIt, m_DataItEnd, m_uiLine);
} break;