Changeset 5044 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Aug 16, 2005, 8:44:55 PM (19 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/npc.cc
r5042 r5044 43 43 void NPC::collidesWith(WorldEntity* entity, const Vector& location) 44 44 { 45 PRINTF(0)("COLLISION ---------------------------- with object: %s\n", entity->getName());45 PRINTF(0)("COLLISION with an NPC\n"); 46 46 } 47 47 -
orxonox/trunk/src/world_entities/world_entity.cc
r5042 r5044 105 105 void WorldEntity::collidesWith(WorldEntity* entity) 106 106 { 107 //this->obbTree->collideWith(entity->obbTree, (PNode*)this, (PNode*)entity);] 108 PRINTF(0)("COLLISION ---------------------------- with object: %s\n", entity->getName()); 107 PRINTF(0)("COLLISION with a WorldEntity\n"); 109 108 } 110 109 … … 118 117 void WorldEntity::collidesWith(WorldEntity* entity, const Vector& location) 119 118 { 120 //this->obbTree->collideWith(entity->obbTree, (PNode*)this, (PNode*)entity);] 121 PRINTF(0)("COLLISION ---------------------------- with object: %s\n", entity->getName()); 119 PRINTF(0)("COLLISION with a WorldEntity\n"); 122 120 } 123 121
Note: See TracChangeset
for help on using the changeset viewer.