| 209 | } |
| 210 | |
| 211 | void Animation::setActiveAnimationGroup(const std::string& groupName) |
| 212 | { |
| 213 | if (m_groups.find(groupName) != m_groups.end()) |
| 214 | { |
| 215 | m_currentGroupName = groupName; |
| 216 | } |
| 217 | throw Exceptions::UnknownAnimationGroup( |
| 218 | m_name, groupName, this->getAllAnimationGroupName(), EXC_INFO); |
| 219 | } |
| 220 | |
| 221 | void Animation::loadMeta(vili::node& meta) |
| 222 | { |
nothing calls this directly
no test coverage detected