diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-09-29 09:59:50 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-09-29 09:59:50 -0400 |
commit | 801a628cc116954f589d8478d5cfa06998db6beb (patch) | |
tree | 8c23706032eb6f055391534ac70b1844b510d490 /indra/llappearance/llavatarappearance.cpp | |
parent | 8d6bb9ee4e9def306454e9ecda1980793dcf7ad5 (diff) |
SL-451 - removed member variable that's no longer used with current joint numbering scheme
Diffstat (limited to 'indra/llappearance/llavatarappearance.cpp')
-rw-r--r-- | indra/llappearance/llavatarappearance.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llappearance/llavatarappearance.cpp b/indra/llappearance/llavatarappearance.cpp index ebeab22dcc..94c431feb4 100644 --- a/indra/llappearance/llavatarappearance.cpp +++ b/indra/llappearance/llavatarappearance.cpp @@ -187,7 +187,6 @@ LLAvatarAppearance::LLAvatarAppearance(LLWearableData* wearable_data) : mHeadOffset(), mRoot(NULL), mWearableData(wearable_data), - mNextJointNum(0), mNumBones(0), mNumCollisionVolumes(0), mCollisionVolumes(NULL), @@ -674,7 +673,6 @@ BOOL LLAvatarAppearance::setupBone(const LLAvatarBoneInfo* info, LLJoint* parent joint->setJointNum(mNumBones+volume_num); volume_num++; } - mNextJointNum++; // setup children @@ -713,7 +711,6 @@ BOOL LLAvatarAppearance::allocateCharacterJoints( U32 num ) BOOL LLAvatarAppearance::buildSkeleton(const LLAvatarSkeletonInfo *info) { LL_DEBUGS("BVH") << "numBones " << info->mNumBones << " numCollisionVolumes " << info->mNumCollisionVolumes << LL_ENDL; - mNextJointNum = 0; // allocate joints if (!allocateCharacterJoints(info->mNumBones)) |