-----------------------------------------------------------------------
| 264 | } |
| 265 | //----------------------------------------------------------------------- |
| 266 | void ParticleSystem::removeAllAffectors() |
| 267 | { |
| 268 | // DON'T delete directly, we don't know what heap these have been created on |
| 269 | ParticleAffectorList::iterator ai; |
| 270 | for( ai = mAffectors.begin(); ai != mAffectors.end(); ++ai ) |
| 271 | { |
| 272 | ParticleSystemManager::getSingleton()._destroyAffector( *ai ); |
| 273 | } |
| 274 | mAffectors.clear(); |
| 275 | } |
| 276 | //----------------------------------------------------------------------- |
| 277 | ParticleSystem &ParticleSystem::operator=( const ParticleSystem &rhs ) |
| 278 | { |
no test coverage detected