Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10523 in orxonox.OLD for trunk/src/world_entities/particles


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

Location:
trunk/src/world_entities/particles
Files:
2 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
  • trunk/src/world_entities/particles/particle_system.h

    r9869 r10523  
    9696  void removeEmitter(ParticleEmitter* emitter);
    9797
     98  void attachEmmittersTo(PNode* node, const Vector& offset);
     99
    98100  virtual void applyField(const Field* field);
    99101  /** @brief this is an empty function, because the Physics are implemented in tick @param dt: useless here */
Note: See TracChangeset for help on using the changeset viewer.