setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
ModelD setD(ModelD o) {
originalPointer ??= o.originalPointer;
transform.setD(o.transform);
meshes = .from(o.meshes);
materials = .from(o.materials);
meshMaterial = .from(o.meshMaterial);
bones = .from(o.bones);
bindPose = .from(o.bindPose);
return this;
}