diff --git a/tiny_gltf_loader.h b/tiny_gltf_loader.h index 109147c..430fbd9 100644 --- a/tiny_gltf_loader.h +++ b/tiny_gltf_loader.h @@ -1021,6 +1021,7 @@ static void ParseObjectProperty(Value *ret, const picojson::object &o) { } else if (v.is()) { tinygltf::Value child_value; ParseObjectProperty(&child_value, v.get()); + vo[it->first] = child_value; } // TODO(syoyo) binary, array }