mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 16:09:22 +02:00
cleanups
This commit is contained in:
parent
36a523478f
commit
487131dde1
2 changed files with 5 additions and 7 deletions
|
@ -174,8 +174,6 @@ public:
|
|||
void setMotionState(AvatarMotionState* motionState) { _motionState = motionState; }
|
||||
AvatarMotionState* getMotionState() { return _motionState; }
|
||||
|
||||
virtual RigPointer getRig() const { return _skeletonModel.getRig(); }
|
||||
|
||||
public slots:
|
||||
glm::vec3 getLeftPalmPosition();
|
||||
glm::vec3 getLeftPalmVelocity();
|
||||
|
|
|
@ -121,11 +121,11 @@ bool AvatarActionHold::updateArguments(QVariantMap arguments) {
|
|||
holderID = myAvatar->getSessionUUID();
|
||||
|
||||
if (somethingChanged ||
|
||||
relativePosition != _relativePosition
|
||||
|| relativeRotation != _relativeRotation
|
||||
|| timeScale != _linearTimeScale
|
||||
|| hand != _hand
|
||||
|| holderID != _holderID) {
|
||||
relativePosition != _relativePosition ||
|
||||
relativeRotation != _relativeRotation ||
|
||||
timeScale != _linearTimeScale ||
|
||||
hand != _hand ||
|
||||
holderID != _holderID) {
|
||||
needUpdate = true;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue