| 72 | } |
| 73 | |
| 74 | Animation AiDatabase::staticAnimation(String const& species) const { |
| 75 | auto staticAnimation = m_animationConfig.staticAnimation; |
| 76 | staticAnimation.setTag("image", m_speciesParameters.get(species).staticFrames); |
| 77 | staticAnimation.setColor(Color::rgbaf(1.0f, 1.0f, 1.0f, m_animationConfig.staticOpacity)); |
| 78 | return staticAnimation; |
| 79 | } |
| 80 | |
| 81 | Animation AiDatabase::scanlineAnimation() const { |
| 82 | auto animation = m_animationConfig.scanlineAnimation; |
no test coverage detected