Changeset 10090 in orxonox.OLD for branches/mount_points/src/lib/graphics/importer
- Timestamp:
- Dec 18, 2006, 12:13:47 PM (18 years ago)
- Location:
- branches/mount_points/src/lib/graphics/importer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/lib/graphics/importer/obj/objModel.cc
r10070 r10090 44 44 45 45 this->finalize(); 46 47 this->extractMountPoints(); 46 48 } 47 49 -
branches/mount_points/src/lib/graphics/importer/oif/resource_oif.cc
r10059 r10090 33 33 else 34 34 { 35 PRINTF( 0)("NOT FOUND OIF: %s\n", fileName.c_str());35 PRINTF(4)("NOT FOUND OIF: %s\n", fileName.c_str()); 36 36 // std::string modelFileName = this->Resource::locateFile(modelName); 37 37 // //std::string skinFileName = this->Resource::locateFile(skinName); -
branches/mount_points/src/lib/graphics/importer/static_model.cc
r10089 r10090 105 105 for( ; groupPtr != NULL; groupPtr = groupPtr->next) 106 106 { 107 //PRINTF(0)("Found a MountPoint: %s\n", groupName.c_str()); 108 107 109 // get the name of this group and check if it's a mout point identifier 108 110 std::string groupName = groupPtr->name; 109 111 if( groupName.find("MP.", 0) != std::string::npos) 110 {} 112 { 113 PRINTF(0)("Found a MountPoint: %s\n", groupName.c_str()); 114 115 } 111 116 } 112 117 } -
branches/mount_points/src/lib/graphics/importer/static_model_data.cc
r10089 r10090 368 368 bool StaticModelData::addGroup(const std::string& groupString) 369 369 { 370 PRINTF( 0)("Read Group: %s.\n", groupString.c_str());370 PRINTF(4)("Read Group: %s.\n", groupString.c_str()); 371 371 if (this->groupCount != 0 && this->currentGroup->faceCount > 0) 372 372 {
Note: See TracChangeset
for help on using the changeset viewer.