From c0d4d1c50c645f2a5d985e2a6a4c88c103609c39 Mon Sep 17 00:00:00 2001 From: mynz Date: Thu, 28 Jun 2018 23:06:00 +0900 Subject: [PATCH] parse extras on the root object --- tiny_gltf.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tiny_gltf.h b/tiny_gltf.h index 0a158df..bb74afa 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -3334,6 +3334,9 @@ bool TinyGLTF::LoadFromString(Model *model, std::string *err, const char *str, } } + // 19. Parse Extras + ParseExtrasProperty(&model->extras, v); + return true; }