mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-02 08:15:54 +00:00
Early out only when scripted animation is playing
This commit is contained in:
parent
e234dd2a36
commit
6099735c60
1 changed files with 1 additions and 1 deletions
|
@ -565,7 +565,7 @@ void CharacterController::refreshCurrentAnims(CharacterState idle, CharacterStat
|
|||
if (!mAnimQueue.empty())
|
||||
{
|
||||
AnimationQueueEntry& first = mAnimQueue.front();
|
||||
if (first.mPersist)
|
||||
if (first.mPersist && isAnimPlaying(first.mGroup))
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue