summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2016-05-26 12:52:09 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2016-05-26 12:52:09 -0400
commitb5f4eab65bf458db9247562fd0b265687259890e (patch)
tree79ff5f1e0cda3b3eccefe61290ee79ef1da8f7a6 /indra/newview/llvoavatar.cpp
parentbda6285f1ca671ac2348ed3bbd916b24c8ad5b9d (diff)
SL-117, SL-315 - resetSkeleton() tweaks, additional validation of skeleton file
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rw-r--r--indra/newview/llvoavatar.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 25565715c2..0423f0e380 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -1852,8 +1852,8 @@ void LLVOAvatar::resetSkeleton()
}
// Save mPelvis state
- LLVector3 pelvis_pos = getJoint("mPelvis")->getPosition();
- LLQuaternion pelvis_rot = getJoint("mPelvis")->getRotation();
+ //LLVector3 pelvis_pos = getJoint("mPelvis")->getPosition();
+ //LLQuaternion pelvis_rot = getJoint("mPelvis")->getRotation();
// Clear all attachment pos overrides
clearAttachmentPosOverrides();
@@ -1908,11 +1908,14 @@ void LLVOAvatar::resetSkeleton()
rebuildAttachmentPosOverrides();
// Restore mPelvis state
- getJoint("mPelvis")->setRotation(pelvis_rot);
- getJoint("mPelvis")->setPosition(pelvis_pos);
+ //getJoint("mPelvis")->setRotation(pelvis_rot);
+ //getJoint("mPelvis")->setPosition(pelvis_pos);
- // Restart animations
- resetAnimations();
+ // Restart animations BENTO - not needed? Removing this fixes a
+ // problem seen if avatar is sitting and animated relative to sit
+ // point.
+
+ //resetAnimations();
LL_DEBUGS("Avatar") << avString() << " reset ends" << LL_ENDL;
}