Changeset 9729 in orxonox.OLD for branches/new_class_id/src/lib
- Timestamp:
- Sep 14, 2006, 10:33:07 PM (19 years ago)
- Location:
- branches/new_class_id/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/graphics/light.cc
r9727 r9729 264 264 void LightManager::loadParams(const TiXmlElement* root) 265 265 { 266 printf("Loading Lights\n");267 266 LoadParamXML(root, "Lights", this, LightManager, loadLights) 268 267 .describe("an XML-Element to load lights from."); … … 277 276 void LightManager::loadLights(const TiXmlElement* root) 278 277 { 279 printf("Loading single Lights\n");280 281 278 const TiXmlElement* element = root->FirstChildElement(); 282 279 -
branches/new_class_id/src/lib/util/loading/load_param.cc
r9727 r9729 81 81 if (!loadString.empty()) 82 82 { 83 PRINTF( 0)("Loading value '%s' with Parameters '%s' onto: %s::%s\n",83 PRINTF(4)("Loading value '%s' with Parameters '%s' onto: %s::%s\n", 84 84 this->paramName.c_str(), loadString.c_str(), this->object->getClassCName(), this->object->getCName()); 85 85 (*this->executor)(this->object, SubString(loadString, ",", SubString::WhiteSpaces, false, '\\'));
Note: See TracChangeset
for help on using the changeset viewer.