| 66 | } |
| 67 | |
| 68 | Animation AiDatabase::animation(String const& species, String const& animationName) const { |
| 69 | auto faceAnimation = m_animationConfig.aiAnimations.get(animationName); |
| 70 | faceAnimation.setTag("image", m_speciesParameters.get(species).aiFrames); |
| 71 | return faceAnimation; |
| 72 | } |
| 73 | |
| 74 | Animation AiDatabase::staticAnimation(String const& species) const { |
| 75 | auto staticAnimation = m_animationConfig.staticAnimation; |
no test coverage detected