| 130 | } |
| 131 | |
| 132 | void ParallelAnimation::AddAnimation(drape_ptr<Animation> && animation) |
| 133 | { |
| 134 | SetCouldBeInterrupted(CouldBeInterrupted() && animation->CouldBeInterrupted()); |
| 135 | SetCouldBeBlended(CouldBeBlended() && animation->CouldBeBlended()); |
| 136 | SetCouldBeRewinded(CouldBeRewinded() && animation->CouldBeRewinded()); |
| 137 | |
| 138 | m_animations.emplace_back(std::move(animation)); |
| 139 | ObtainObjectProperties(); |
| 140 | } |
| 141 | |
| 142 | void ParallelAnimation::OnStart() |
| 143 | { |
no test coverage detected