setDart method
Copies the fields of o into this instance.
Implementation
@override
ModelD setDart(ModelD o) {
transform.setDart(o.transform);
meshes = .from(o.meshes);
materials = .from(o.materials);
meshMaterial = .from(o.meshMaterial);
currentPose = .from(o.currentPose);
boneMatrices = .from(o.boneMatrices);
return this;
}