Changeset 9729 in orxonox.OLD for branches/new_class_id
- Timestamp:
- Sep 14, 2006, 10:33:07 PM (18 years ago)
- Location:
- branches/new_class_id/src
- Files:
-
- 3 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, '\\')); -
branches/new_class_id/src/story_entities/story_entity.cc
r9727 r9729 102 102 void StoryEntity::setLoadFile(const std::string& fileName) 103 103 { 104 printf("===Testing %s:: %s\n", this->getCName(), fileName.c_str());105 104 if (File(fileName).isFile()) 106 105 {
Note: See TracChangeset
for help on using the changeset viewer.