| 273 | } |
| 274 | |
| 275 | List<Drawable> TechController::backDrawables() { |
| 276 | List<Drawable> drawables; |
| 277 | |
| 278 | for (auto const& animator : m_techAnimators.netElements()) { |
| 279 | if (animator->isVisible()) { |
| 280 | for (auto& piece : animator->animator.drawablesWithZLevel(m_movementController->position())) { |
| 281 | if (piece.second < 0.0f) |
| 282 | drawables.append(std::move(piece.first)); |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | return drawables; |
| 288 | } |
| 289 | |
| 290 | List<Drawable> TechController::frontDrawables() { |
| 291 | List<Drawable> drawables; |
no test coverage detected