| 70 | } |
| 71 | |
| 72 | std::vector<std::string> Animation::getAllAnimationGroupName() const |
| 73 | { |
| 74 | std::vector<std::string> animationGroupKeys; |
| 75 | animationGroupKeys.reserve(m_groups.size()); |
| 76 | std::transform(m_groups.cbegin(), m_groups.cend(), animationGroupKeys.begin(), |
| 77 | [](const auto& pair) { return pair.first; }); |
| 78 | return animationGroupKeys; |
| 79 | } |
| 80 | |
| 81 | AnimationPlayMode Animation::getPlayMode() const noexcept |
| 82 | { |
no test coverage detected