Merge pull request #708 from HifiExperiments/renderUpdate

Call somethingChangedNotification() from setLocalJointXXXX
This commit is contained in:
ksuprynowicz 2023-11-07 17:51:47 +01:00 committed by GitHub
commit 478a0bbeaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();
}
}
});