Merge pull request #76 from mynz/devel

parse extras on the root object
This commit is contained in:
Syoyo Fujita 2018-06-28 20:25:23 +02:00 committed by GitHub
commit 90e2c9cc74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3334,6 +3334,9 @@ bool TinyGLTF::LoadFromString(Model *model, std::string *err, const char *str,
} }
} }
// 19. Parse Extras
ParseExtrasProperty(&model->extras, v);
return true; return true;
} }