fix #650: call something somethingChangedNotification() from setLocalJointXXXX

This commit is contained in:
HifiExperiments 2023-11-06 00:36:34 -08:00
parent 894f8cec2b
commit 0a08f11d7e

View file

@ -903,6 +903,7 @@ bool RenderableModelEntityItem::setLocalJointRotation(int index, const glm::quat
jointData.rotationDirty = true;
result = true;
_needsJointSimulation = true;
somethingChangedNotification();
}
}
});
@ -922,6 +923,7 @@ bool RenderableModelEntityItem::setLocalJointTranslation(int index, const glm::v
jointData.translationDirty = true;
result = true;
_needsJointSimulation = true;
somethingChangedNotification();
}
}
});