diff --git a/tiny_gltf.h b/tiny_gltf.h index a8af40e..76374c0 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -3680,6 +3680,8 @@ static bool ParseNode(Node *node, std::string *err, const json &o) { node->children.clear(); ParseIntegerArrayProperty(&node->children, err, o, "children", false); + ParseNumberArrayProperty(&node->weights, err, o, "weights", false); + ParseExtensionsProperty(&node->extensions, err, o); ParseExtrasProperty(&(node->extras), o);