saves value in the 'Ke'-Attribute in ObjMtl Files in COLOR_EMISSIVE

This commit is contained in:
Judith Hartmann
2014-03-16 21:30:10 +01:00
parent 9af1dfd48d
commit 7d1a704ed7
4 changed files with 11 additions and 0 deletions

View File

@@ -146,6 +146,11 @@ void ObjFileMtlImporter::load()
++m_DataIt;
getColorRGBA( &m_pModel->m_pCurrentMaterial->specular );
}
else if (*m_DataIt == 'e')
{
++m_DataIt;
getColorRGBA( &m_pModel->m_pCurrentMaterial->emissive );
}
m_DataIt = skipLine<DataArrayIt>( m_DataIt, m_DataItEnd, m_uiLine );
}
break;