| 573 | } |
| 574 | |
| 575 | List<AudioInstancePtr> StatusController::pullNewAudios() { |
| 576 | List<AudioInstancePtr> newAudios; |
| 577 | for (auto const& animator : m_effectAnimators.netElements()) |
| 578 | newAudios.appendAll(animator->dynamicTarget.pullNewAudios()); |
| 579 | return newAudios; |
| 580 | } |
| 581 | |
| 582 | List<Particle> StatusController::pullNewParticles() { |
| 583 | List<Particle> newParticles; |
nothing calls this directly
no test coverage detected