| 288 | } |
| 289 | |
| 290 | List<Drawable> TechController::frontDrawables() { |
| 291 | List<Drawable> drawables; |
| 292 | |
| 293 | for (auto const& animator : m_techAnimators.netElements()) { |
| 294 | if (animator->isVisible()) { |
| 295 | for (auto& piece : animator->animator.drawablesWithZLevel(m_movementController->position())) { |
| 296 | if (piece.second >= 0.0f) |
| 297 | drawables.append(std::move(piece.first)); |
| 298 | } |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | return drawables; |
| 303 | } |
| 304 | |
| 305 | List<LightSource> TechController::lightSources() const { |
| 306 | List<LightSource> lightSources; |
no test coverage detected