Changeset 5791 for code/branches/core5/src/orxonox
- Timestamp:
- Sep 26, 2009, 2:05:30 AM (15 years ago)
- Location:
- code/branches/core5/src/orxonox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/graphics/ParticleSpawner.h
r5738 r5791 46 46 virtual void processEvent(Event& event); 47 47 48 inline void destroy()49 { this->bForceDestroy_ = true; this->stopParticleSpawner(); }48 inline void stop(bool bDestroy) 49 { this->bForceDestroy_ = bDestroy; this->stopParticleSpawner(); } 50 50 inline void spawn() 51 51 { this->bSuppressStart_ = false; this->startParticleSpawner(); } -
code/branches/core5/src/orxonox/overlays/InGameConsole.h
r5738 r5791 50 50 51 51 void initialise(); 52 void destroy();53 52 void setConfigValues(); 54 53 -
code/branches/core5/src/orxonox/worldentities/BigExplosion.cc
r5747 r5791 333 333 } 334 334 335 void BigExplosion::destroy()336 {337 delete this;338 }339 340 335 /* TODO 341 336 -
code/branches/core5/src/orxonox/worldentities/BigExplosion.h
r5738 r5791 57 57 void checkStop(); 58 58 void stop(); 59 void destroy();60 59 void init(); 61 60 void initZero(); … … 98 97 ParticleInterface* explosionFire_; 99 98 100 LODParticle::Value 101 Timer<BigExplosion> destroyTimer_;99 LODParticle::Value LOD_; 100 Timer<BigExplosion> destroyTimer_; 102 101 }; 103 102 } -
code/branches/core5/src/orxonox/worldentities/ExplosionChunk.cc
r5747 r5791 136 136 } 137 137 138 void ExplosionChunk::destroy()139 {140 delete this;141 }142 143 138 void ExplosionChunk::tick(float dt) 144 139 { -
code/branches/core5/src/orxonox/worldentities/ExplosionChunk.h
r5738 r5791 55 55 void checkStop(); 56 56 void stop(); 57 void destroy();58 57 59 58 bool bStop_; 60 59 ParticleInterface* fire_; 61 60 ParticleInterface* smoke_; 62 LODParticle::Value 61 LODParticle::Value LOD_; 63 62 Timer<ExplosionChunk> destroyTimer_; 64 63 };
Note: See TracChangeset
for help on using the changeset viewer.