| 303 | } |
| 304 | |
| 305 | List<LightSource> TechController::lightSources() const { |
| 306 | List<LightSource> lightSources; |
| 307 | |
| 308 | for (auto const& animator : m_techAnimators.netElements()) { |
| 309 | if (animator->isVisible()) |
| 310 | lightSources.appendAll(animator->animator.lightSources(m_movementController->position())); |
| 311 | } |
| 312 | |
| 313 | return lightSources; |
| 314 | } |
| 315 | |
| 316 | List<AudioInstancePtr> TechController::pullNewAudios() { |
| 317 | List<AudioInstancePtr> newAudios; |
nothing calls this directly
no test coverage detected