glTF2Importer: Support .vrm extension (#5569)
Co-authored-by: Kim Kulling <kimkulling@users.noreply.github.com>pull/5573/head^2
parent
001bb01eb2
commit
b6d53a0047
|
@ -92,7 +92,7 @@ static constexpr aiImporterDesc desc = {
|
|||
0,
|
||||
0,
|
||||
0,
|
||||
"gltf glb"
|
||||
"gltf glb vrm"
|
||||
};
|
||||
|
||||
glTF2Importer::glTF2Importer() :
|
||||
|
@ -106,7 +106,7 @@ const aiImporterDesc *glTF2Importer::GetInfo() const {
|
|||
|
||||
bool glTF2Importer::CanRead(const std::string &filename, IOSystem *pIOHandler, bool checkSig) const {
|
||||
const std::string extension = GetExtension(filename);
|
||||
if (!checkSig && (extension != "gltf") && (extension != "glb")) {
|
||||
if (!checkSig && (extension != "gltf") && (extension != "glb") && (extension != "vrm")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue