Changeset 7836 in orxonox.OLD
- Timestamp:
- May 24, 2006, 10:05:32 PM (18 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/class_id.h
r7819 r7836 290 290 291 291 CL_GRAPHICS_EFFECT = 0x00a01000, 292 CL_SUN_EFFECT = 0x00a02000, 293 CL_WEATHER_EFFECT = 0x00a04000, 292 CL_WEATHER_EFFECT = 0x00a10000, 294 293 CL_FOG_EFFECT = 0x00000a10, 295 294 CL_VOLFOG_EFFECT = 0x00000a11, -
trunk/src/lib/graphics/effects/atmospheric_engine.cc
r7810 r7836 126 126 std::list<BaseObject*>::const_iterator it; 127 127 for (it = weatherEffects->begin(); it != weatherEffects->end(); it++) 128 { 129 printf("%s::%s \n", (*it)->getClassName(), (*it)->getName()); 128 130 dynamic_cast<WeatherEffect*>(*it)->tick(dt); 131 } 129 132 } 130 133 } -
trunk/src/lib/graphics/effects/sun_effect.cc
r7810 r7836 30 30 SunEffect::SunEffect(const TiXmlElement* root) 31 31 { 32 this->setClassID(CL_SUN_EFFECT, "SunEffect");32 // this->setClassID(CL_SUN_EFFECT, "SunEffect"); 33 33 this->bActivated = false; 34 34 } -
trunk/src/util/object_manager.cc
r7785 r7836 210 210 "environ-notick", 211 211 "environ", 212 "background", 212 213 "common", 213 214 -
trunk/src/util/object_manager.h
r7785 r7836 18 18 OM_ENVIRON_NOTICK, 19 19 OM_ENVIRON, 20 OM_BACKGROUND, 20 21 OM_COMMON, 21 22
Note: See TracChangeset
for help on using the changeset viewer.