diff options
Diffstat (limited to 'indra/llcharacter')
-rw-r--r-- | indra/llcharacter/llbvhloader.cpp | 2 | ||||
-rw-r--r-- | indra/llcharacter/llkeyframemotion.cpp | 5 | ||||
-rw-r--r-- | indra/llcharacter/llkeyframemotion.h | 2 | ||||
-rw-r--r-- | indra/llcharacter/llmotioncontroller.cpp | 4 |
4 files changed, 7 insertions, 6 deletions
diff --git a/indra/llcharacter/llbvhloader.cpp b/indra/llcharacter/llbvhloader.cpp index 4d4ad39080..a2e6ec12d2 100644 --- a/indra/llcharacter/llbvhloader.cpp +++ b/indra/llcharacter/llbvhloader.cpp @@ -1096,7 +1096,7 @@ void LLBVHLoader::optimize() KeyVector::iterator ki = joint->mKeys.begin(); if (joint->mKeys.size() == 1) { - //FIXME: use single frame to move pelvis + // *FIX: use single frame to move pelvis // if only one keyframe force output for this joint rot_changed = TRUE; } diff --git a/indra/llcharacter/llkeyframemotion.cpp b/indra/llcharacter/llkeyframemotion.cpp index 4dd976d5f1..930deb227c 100644 --- a/indra/llcharacter/llkeyframemotion.cpp +++ b/indra/llcharacter/llkeyframemotion.cpp @@ -922,7 +922,8 @@ void LLKeyframeMotion::applyConstraint(JointConstraint* constraint, F32 time, U8 target_jointp = mCharacter->findCollisionVolume(shared_data->mTargetConstraintVolume); if (target_jointp) { - // FIXME: do proper normal calculation for stretched spheres (inverse transpose) + // *FIX: do proper normal calculation for stretched + // spheres (inverse transpose) norm = target_pos - target_jointp->getWorldPosition(); } @@ -1613,7 +1614,7 @@ BOOL LLKeyframeMotion::deserialize(LLDataPacker& dp) } } - // FIXME: support cleanup of old keyframe data + // *FIX: support cleanup of old keyframe data LLKeyframeDataCache::addKeyframeData(getID(), mJointMotionList); mAssetStatus = ASSET_LOADED; diff --git a/indra/llcharacter/llkeyframemotion.h b/indra/llcharacter/llkeyframemotion.h index 4e82c0672a..daa501af89 100644 --- a/indra/llcharacter/llkeyframemotion.h +++ b/indra/llcharacter/llkeyframemotion.h @@ -416,7 +416,7 @@ protected: class LLKeyframeDataCache { public: - //FIXME: implement this as an actual singleton member of LLKeyframeMotion + // *FIX: implement this as an actual singleton member of LLKeyframeMotion LLKeyframeDataCache(){}; ~LLKeyframeDataCache(); diff --git a/indra/llcharacter/llmotioncontroller.cpp b/indra/llcharacter/llmotioncontroller.cpp index 7ec67b5fd4..2856803c4b 100644 --- a/indra/llcharacter/llmotioncontroller.cpp +++ b/indra/llcharacter/llmotioncontroller.cpp @@ -111,7 +111,7 @@ LLMotion *LLMotionRegistry::createMotion( const LLUUID &id ) if ( motion_entry.getID().isNull() ) { - //FIXME - RN: need to replace with a better default scheme + // *FIX: need to replace with a better default scheme. RN motion = LLKeyframeMotion::create(id); } else @@ -394,7 +394,7 @@ BOOL LLMotionController::stopMotionLocally(const LLUUID &id, BOOL stop_immediate if (isMotionActive(motion) && !motion->isStopped()) { // when using timesteps, set stop time to last frame's time, otherwise grab current timer value - // FIXME: should investigate this inconsistency...hints of obscure bugs + // *FIX: should investigate this inconsistency...hints of obscure bugs F32 stop_time = (mTimeStep != 0.f || mPaused) ? (mTime) : mTimeOffset + (mTimer.getElapsedTimeF32() * mTimeFactor); motion->setStopTime(stop_time); |