Is there any particular reason most types representing a gltf type, like Node, Mesh or Primitive, are only clone and not copy? Or may I PR all the copy derives?
If we take Node for example, Copy could be trivially derived, and also does not copy too many bytes as it does not copy the underlying json object:
Is there any particular reason most types representing a gltf type, like
Node
,Mesh
orPrimitive
, are only clone and not copy? Or may I PR all the copy derives?If we take
Node
for example,Copy
could be trivially derived, and also does not copy too many bytes as it does not copy the underlying json object: