Changeset 9513 in orxonox.OLD for branches/proxy/src/world_entities/world_entity.cc
- Timestamp:
- Jul 27, 2006, 5:38:53 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/world_entities/world_entity.cc
r9494 r9513 141 141 .describe("The Health the WorldEntity has at this moment") 142 142 .defaultValues(1.0f); 143 144 LoadParam(root, "list", this, WorldEntity, toListS); 143 145 } 144 146 … … 478 480 } 479 481 482 void WorldEntity::toListS(const std::string& listName) 483 { 484 OM_LIST id = ObjectManager::StringToOMList(listName); 485 if (id != OM_NULL) 486 this->toList(id); 487 else 488 PRINTF(2)("List %s not found\n", listName.c_str()); 489 } 490 491 480 492 void WorldEntity::toReflectionList() 481 493 { … … 822 834 PRINT(0)("WorldEntity %s::%s (DEBUG)\n", this->getClassCName(), this->getCName()); 823 835 this->debugNode(); 824 PRINT(0)("List: %s ; ModelCount %d - ", ObjectManager::OMListToString(this->objectListNumber) 836 PRINT(0)("List: %s ; ModelCount %d - ", ObjectManager::OMListToString(this->objectListNumber).c_str(), this->models.size()); 825 837 for (unsigned int i = 0; i < this->models.size(); i++) 826 838 {
Note: See TracChangeset
for help on using the changeset viewer.