Fixed GLTF import

I noticed glTF2Importer::CanRead not returning the right value on success 😉
This commit is contained in:
niansa/tuxifan 2021-11-05 18:35:59 +01:00 committed by Yao Wei Tjong
parent e08df3d0cf
commit ecbdb52633

View File

@ -117,7 +117,7 @@ bool glTF2Importer::CanRead(const std::string& pFile, IOSystem* pIOHandler, bool
}
}
return false;
return true;
}