| 1521 | } |
| 1522 | |
| 1523 | void ParticleSystem::onExit() |
| 1524 | { |
| 1525 | this->unscheduleUpdate(); |
| 1526 | Node::onExit(); |
| 1527 | |
| 1528 | auto iter = std::find(std::begin(__allInstances), std::end(__allInstances), this); |
| 1529 | if (iter != std::end(__allInstances)) |
| 1530 | { |
| 1531 | __allInstances.erase(iter); |
| 1532 | } |
| 1533 | } |
| 1534 | |
| 1535 | void ParticleSystem::stopSystem() |
| 1536 | { |
nothing calls this directly
no test coverage detected