We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd269ab commit 4f5b651Copy full SHA for 4f5b651
indra/newview/lldrawable.cpp
@@ -33,6 +33,7 @@
33
34
// viewer includes
35
#include "llagent.h"
36
+#include "llagentcamera.h"
37
#include "llcriticaldamp.h"
38
#include "llface.h"
39
#include "lllightconstants.h"
@@ -778,6 +779,14 @@ bool LLDrawable::updateMove()
778
779
780
makeActive();
781
782
+ // #3256 force undampened movement for attached objects in mouselook
783
+ // to prevent animation bork for linkset with animated parts
784
+ if (!isRoot() && gAgentCamera.cameraMouselook() &&
785
+ !mVObjp->isRiggedMesh() && mVObjp->getAvatar() && mVObjp->getAvatar()->isSelf())
786
+ {
787
+ return updateMoveUndamped();
788
+ }
789
+
790
return isState(MOVE_UNDAMPED) ? updateMoveUndamped() : updateMoveDamped();
791
}
792
0 commit comments