copy method
Copies another source
to this source
.
Implementation
@override
InstancedInterleavedBuffer copy(InterleavedBuffer source) {
super.copy(source);
if (source is InstancedInterleavedBuffer) {
meshPerAttribute = source.meshPerAttribute;
}
return this;
}