-----------------------------------------------------------------------
| 691 | } |
| 692 | //----------------------------------------------------------------------- |
| 693 | void ParticleSystem::_triggerAffectors( Real timeElapsed ) |
| 694 | { |
| 695 | ParticleAffectorList::iterator i, itEnd; |
| 696 | |
| 697 | itEnd = mAffectors.end(); |
| 698 | for( i = mAffectors.begin(); i != itEnd; ++i ) |
| 699 | { |
| 700 | ( *i )->_affectParticles( this, timeElapsed ); |
| 701 | } |
| 702 | } |
| 703 | //----------------------------------------------------------------------- |
| 704 | void ParticleSystem::increasePool( size_t size ) |
| 705 | { |
nothing calls this directly
no test coverage detected