| 341 | } |
| 342 | |
| 343 | void AnimationSystem::FinishObjectAnimations(Animation::Object object, bool rewind, bool finishAll) |
| 344 | { |
| 345 | FinishAnimations([&object](std::shared_ptr<Animation> const & anim) { return anim->HasObject(object); }, rewind, |
| 346 | finishAll); |
| 347 | } |
| 348 | |
| 349 | void AnimationSystem::Advance(double elapsedSeconds) |
| 350 | { |
no test coverage detected