Browse Source

Correction on Collada parser missing textures when the image is in CDATA
<image id="image-1404706686">
<init_from><![CDATA[textures\burgundy.png]]></init_from>
</image>

Arkeon 7 years ago
parent
commit
f235646030
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/ColladaParser.cpp

+ 1 - 1
code/ColladaParser.cpp

@@ -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