| 1540 | } |
| 1541 | |
| 1542 | void ParticleSystem::resetSystem() |
| 1543 | { |
| 1544 | _isActive = true; |
| 1545 | _elapsed = 0; |
| 1546 | // Setting _particleCount to zero could prevent Out-of-Range exception when updating |
| 1547 | // particle's loop animation after calling setTotalParticle(). |
| 1548 | _particleCount = 0; |
| 1549 | } |
| 1550 | |
| 1551 | bool ParticleSystem::isFull() |
| 1552 | { |
no outgoing calls
no test coverage detected