Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2007, 11:14:26 PM (17 years ago)
Author:
patrick
Message:

tried fixing the segfault on tardis, emitter mount point attach

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/particles/particle_system.cc

    r10520 r10523  
    281281}
    282282
     283
     284/**
     285 * attackes
     286 * @param node
     287 */
     288void ParticleSystem::attachEmmittersTo(PNode* node, const Vector& offset)
     289{
     290  std::list<ParticleEmitter*>::iterator it = this->emitters.begin();
     291  for( ; it != this->emitters.end(); it++)
     292  {
     293    //
     294    (*it)->setParent(node);
     295    (*it)->setRelCoor(offset);
     296  }
     297}
     298
     299
     300
    283301/**
    284302 * @brief does a Precaching, meaning, that the ParticleSystem(and its emitters) will be ticked force
Note: See TracChangeset for help on using the changeset viewer.