Remove joint.transform self-assignment

This commit is contained in:
sabrina-shanman 2019-10-30 11:50:03 -07:00
parent ff908a36d6
commit 61825f2e06

View file

@ -1015,7 +1015,6 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
joint.transform = parentJoint.transform * joint.transform;
joint.globalTransform = joint.globalTransform * parentJoint.globalTransform;
} else {
joint.transform = joint.transform;
joint.globalTransform = hfmModel.offset * joint.globalTransform;
}