Changeset 7516 in orxonox.OLD
- Timestamp:
- May 3, 2006, 3:32:05 PM (19 years ago)
- Location:
- branches/atmospheric_engine/src/lib/graphics/effects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/atmospheric_engine/src/lib/graphics/effects/volfog_effect.cc
r7515 r7516 32 32 if (root != NULL) 33 33 this->loadParams(root); 34 jhljkhlkjhlkjh34 35 35 this->activate(); 36 36 } 37 37 38 38 39 40 VolFogEffect::~VolFogEffdect() 39 VolFogEffect::~VolFogEffect() 41 40 { 42 41 this->deactivate(); … … 59 58 } 60 59 61 62 63 60 bool VolFogEffect::deactivate() 64 61 { … … 67 64 68 65 66 /** 67 * draws the effect, if needed 68 */ 69 void VolFogEffect::draw() const 70 {} 71 72 73 74 /** 75 * ticks the effect if there is any time dependancy 76 */ 77 void VolFogEffect::tick(float dt) 78 79 {} -
branches/atmospheric_engine/src/lib/graphics/effects/volfog_effect.h
r7515 r7516 23 23 virtual bool deactivate(); 24 24 25 virtual void draw() const; 26 virtual void tick(float dt); 25 27 26 28 private:
Note: See TracChangeset
for help on using the changeset viewer.