forked from organicmaps/organicmaps
Fixed follow animation after the start of navigation.
This commit is contained in:
parent
b03bc2683b
commit
667532357b
2 changed files with 7 additions and 1 deletions
|
@ -987,7 +987,7 @@ void AnimationSystem::CombineAnimation(drape_ptr<Animation> animation)
|
|||
{
|
||||
for (auto & lst : m_animationChain)
|
||||
{
|
||||
bool couldBeBlended = true;
|
||||
bool couldBeBlended = animation->CouldBeBlended();
|
||||
for (auto it = lst.begin(); it != lst.end();)
|
||||
{
|
||||
auto & anim = *it;
|
||||
|
@ -1013,12 +1013,17 @@ void AnimationSystem::CombineAnimation(drape_ptr<Animation> animation)
|
|||
++it;
|
||||
}
|
||||
}
|
||||
|
||||
if (couldBeBlended)
|
||||
{
|
||||
animation->OnStart();
|
||||
lst.emplace_back(move(animation));
|
||||
return;
|
||||
}
|
||||
else if (m_animationChain.size() > 1 && animation->CouldBeInterrupted())
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
PushAnimation(move(animation));
|
||||
}
|
||||
|
|
|
@ -134,6 +134,7 @@ public:
|
|||
void SetOnFinishAction(TAction const & action) { m_onFinishAction = action; }
|
||||
void SetOnInterruptAction(TAction const & action) { m_onInterruptAction = action; }
|
||||
|
||||
bool CouldBeBlended() const { return m_couldBeBlended; }
|
||||
bool CouldBeInterrupted() const { return m_couldBeInterrupted; }
|
||||
bool CouldBeBlendedWith(Animation const & animation) const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue