Do not rewind follow animations when reseting them by another follow animation.

This commit is contained in:
Daria Volvenkova 2016-12-28 17:41:04 +03:00
parent 8846a23bc3
commit d4675739ea
2 changed files with 7 additions and 7 deletions

View file

@ -491,7 +491,7 @@ bool UserEventStream::InterruptFollowAnimations(bool force)
if (followAnim != nullptr)
{
if (force || followAnim->CouldBeInterrupted())
ResetAnimations(followAnim->GetType(), followAnim->GetCustomType());
ResetAnimations(followAnim->GetType(), followAnim->GetCustomType(), !followAnim->CouldBeInterrupted());
else
return false;
}
@ -575,18 +575,18 @@ void UserEventStream::SetAutoPerspective(bool isAutoPerspective)
return;
}
void UserEventStream::ResetAnimations(Animation::Type animType, bool finishAll)
void UserEventStream::ResetAnimations(Animation::Type animType, bool rewind, bool finishAll)
{
bool const hasAnimations = m_animationSystem.HasAnimations();
m_animationSystem.FinishAnimations(animType, true /* rewind */, finishAll);
m_animationSystem.FinishAnimations(animType, rewind, finishAll);
if (hasAnimations)
ApplyAnimations();
}
void UserEventStream::ResetAnimations(Animation::Type animType, string const & customType, bool finishAll)
void UserEventStream::ResetAnimations(Animation::Type animType, string const & customType, bool rewind, bool finishAll)
{
bool const hasAnimations = m_animationSystem.HasAnimations();
m_animationSystem.FinishAnimations(animType, customType, true /* rewind */, finishAll);
m_animationSystem.FinishAnimations(animType, customType, rewind, finishAll);
if (hasAnimations)
ApplyAnimations();
}

View file

@ -452,8 +452,8 @@ private:
void CancelFilter(Touch const & t);
void ApplyAnimations();
void ResetAnimations(Animation::Type animType, bool finishAll = false);
void ResetAnimations(Animation::Type animType, string const & customType, bool finishAll = false);
void ResetAnimations(Animation::Type animType, bool rewind = true, bool finishAll = false);
void ResetAnimations(Animation::Type animType, string const & customType, bool rewind = true, bool finishAll = false);
void ResetMapPlaneAnimations();
bool InterruptFollowAnimations(bool force);