Merge pull request #1899 from arkeon7/ColladaTexture

Correction on Collada parser missing textures when the image is in CDATA
This commit is contained in:
Kim Kulling
2018-04-13 16:32:03 +02:00
committed by GitHub

View File

@@ -3106,7 +3106,7 @@ const char* ColladaParser::TestTextContent()
// read contents of the element
if( !mReader->read() )
return NULL;
if( mReader->getNodeType() != irr::io::EXN_TEXT)
if( mReader->getNodeType() != irr::io::EXN_TEXT && mReader->getNodeType() != irr::io::EXN_CDATA)
return NULL;
// skip leading whitespace