| 182 | } |
| 183 | |
| 184 | void ParticleSystem::setLayer(std::uint16_t layer) |
| 185 | { |
| 186 | for (auto& particle : particleArray_) { |
| 187 | particle->setLayer(layer); |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | void ParticleSystem::OnUpdate(float timeMult) |
| 192 | { |
no outgoing calls
no test coverage detected