Changeset 8590 in orxonox.OLD for branches/bsp_model/src/world_entities
- Timestamp:
- Jun 19, 2006, 10:48:45 PM (18 years ago)
- Location:
- branches/bsp_model/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/world_entities/npcs/generic_npc.cc
r8516 r8590 127 127 * @param coordinate: coordinate to go to 128 128 */ 129 bool GenericNPC::walkTo(const Vector& coordinate) 129 bool GenericNPC::walkTo(const Vector& coordinate, float time) 130 { 131 132 return true; 133 } 134 135 136 /** 137 * walt to 138 * @param coordinate: coordinate to go to 139 */ 140 bool GenericNPC::walkTo(float x, float y, float z, float time) 130 141 { 131 142 -
branches/bsp_model/src/world_entities/world_entity.cc
r8511 r8590 204 204 this->buildObbTree(obbTreeDepth); 205 205 } 206 else if(fileName.find(".md3") != std::string::npos)206 else /*if(fileName.find(".md3") != std::string::npos)*/ 207 207 { 208 208 PRINTF(4)("fetching MD3 file: %s\n", fileName.c_str());
Note: See TracChangeset
for help on using the changeset viewer.