Skip to content

Commit

Permalink
fix: default property deserializer was missing for nested extras obje…
Browse files Browse the repository at this point in the history
…cts in MeshPrimitive

fixes prefrontalcortex#126
  • Loading branch information
hybridherbst committed Jan 6, 2024
1 parent e13847b commit 05b1671
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Runtime/Plugins/GLTFSerialization/Schema/MeshPrimitive.cs
Expand Up @@ -161,6 +161,9 @@ public static MeshPrimitive Deserialize(GLTFRoot root, JsonReader reader)
case "targetNames":
primitive.TargetNames = reader.ReadStringList();
break;
default:
primitive.DefaultPropertyDeserializer(root, reader);
break;
}
}
}
Expand Down

0 comments on commit 05b1671

Please sign in to comment.