| 314 | } |
| 315 | |
| 316 | List<AudioInstancePtr> TechController::pullNewAudios() { |
| 317 | List<AudioInstancePtr> newAudios; |
| 318 | |
| 319 | for (auto const& animator : m_techAnimators.netElements()) { |
| 320 | if (animator->isVisible()) |
| 321 | newAudios.appendAll(animator->dynamicTarget.pullNewAudios()); |
| 322 | else |
| 323 | animator->dynamicTarget.pullNewAudios(); |
| 324 | } |
| 325 | |
| 326 | return newAudios; |
| 327 | } |
| 328 | |
| 329 | List<Particle> TechController::pullNewParticles() { |
| 330 | List<Particle> newParticles; |