-----------------------------------------------------------------------
| 245 | } |
| 246 | //----------------------------------------------------------------------- |
| 247 | ParticleAffector *ParticleSystem::getAffector( unsigned short index ) const |
| 248 | { |
| 249 | assert( index < mAffectors.size() && "Affector index out of bounds!" ); |
| 250 | return mAffectors[index]; |
| 251 | } |
| 252 | //----------------------------------------------------------------------- |
| 253 | unsigned short ParticleSystem::getNumAffectors() const |
| 254 | { |
no test coverage detected