mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 10:23:52 +00:00
Simplify getting the stop time when playing all animation groups
This commit is contained in:
parent
cd8515396a
commit
41f80908d9
1 changed files with 3 additions and 11 deletions
|
@ -87,17 +87,9 @@ void Animation::playGroup(std::string groupname, int mode, int loops)
|
|||
times.mStart = times.mLoopStart = 0.0f;
|
||||
times.mLoopStop = times.mStop = 0.0f;
|
||||
|
||||
if(mEntityList.mSkelBase)
|
||||
{
|
||||
Ogre::AnimationStateSet *aset = mEntityList.mSkelBase->getAllAnimationStates();
|
||||
Ogre::AnimationStateIterator as = aset->getAnimationStateIterator();
|
||||
while(as.hasMoreElements())
|
||||
{
|
||||
Ogre::AnimationState *state = as.getNext();
|
||||
times.mLoopStop = times.mStop = state->getLength();
|
||||
break;
|
||||
}
|
||||
}
|
||||
NifOgre::TextKeyMap::const_reverse_iterator iter = mTextKeys.rbegin();
|
||||
if(iter != mTextKeys.rend())
|
||||
times.mLoopStop = times.mStop = iter->first;
|
||||
}
|
||||
else if(!findGroupTimes(groupname, ×))
|
||||
throw std::runtime_error("Failed to find animation group "+groupname);
|
||||
|
|
Loading…
Reference in a new issue