mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:22:07 +02:00
Merge pull request #708 from HifiExperiments/renderUpdate
Call somethingChangedNotification() from setLocalJointXXXX
This commit is contained in:
commit
478a0bbeaa
1 changed files with 2 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue