| 693 | } |
| 694 | |
| 695 | void UserEventStream::ResetAnimations(Animation::Type animType, bool rewind, bool finishAll) |
| 696 | { |
| 697 | bool const hasAnimations = m_animationSystem.HasAnimations(); |
| 698 | m_animationSystem.FinishAnimations(animType, rewind, finishAll); |
| 699 | if (hasAnimations) |
| 700 | ApplyAnimations(); |
| 701 | } |
| 702 | |
| 703 | void UserEventStream::ResetAnimations(Animation::Type animType, std::string const & customType, bool rewind, |
| 704 | bool finishAll) |
nothing calls this directly
no test coverage detected