Fix: Instances component does not copy attributes

This commit is contained in:
Hans Goudey 2021-12-01 12:36:49 -05:00
parent be6e56b36b
commit bc48da3235
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ GeometryComponent *InstancesComponent::copy() const
new_component->instance_reference_handles_ = instance_reference_handles_;
new_component->instance_transforms_ = instance_transforms_;
new_component->references_ = references_;
new_component->attributes_ = attributes_;
return new_component;
}