Changeset 5653 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Nov 20, 2005, 6:43:58 PM (19 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/light.cc
r5652 r5653 258 258 void LightManager::loadParams(const TiXmlElement* root) 259 259 { 260 LoadParam <LightManager>(root, "Lights", this, &LightManager::loadLights)260 LoadParamXML(root, "Lights", this, LightManager, loadLights) 261 261 .describe("an XML-Element to load lights from."); 262 262 263 LoadParam <LightManager>(root, "ambient-color", this, &LightManager::setAmbientColor)263 LoadParamNEW(root, "ambient-color", this, LightManager, setAmbientColor) 264 264 .describe("sets the ambient Color of the Environmental Light"); 265 265 } -
trunk/src/lib/particles/particle_emitter.cc
r5652 r5653 117 117 118 118 119 LoadParam <ParticleEmitter>(root, "emission-direction", this, &ParticleEmitter::setDirection);119 LoadParamNEW(root, "emission-direction", this, ParticleEmitter, setDirection); 120 120 } 121 121
Note: See TracChangeset
for help on using the changeset viewer.