Changeset 5065 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Aug 18, 2005, 1:41:24 PM (19 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/npc.cc
r5064 r5065 42 42 { 43 43 if (entity->isA(CL_PROJECTILE)) 44 PRINTF( 0)("collision %s vs %s @ (%f,%f,%f)\n", this->getName(), entity->getName(), location.x, location.y, location.z);44 PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getName(), entity->getName(), location.x, location.y, location.z); 45 45 this->setVisibiliy(false); 46 46 State::getWorldEntityList()->remove(this); -
orxonox/trunk/src/world_entities/world_entity.cc
r5061 r5065 134 134 void WorldEntity::collidesWith(WorldEntity* entity, const Vector& location) 135 135 { 136 PRINTF( 0)("collision %s vs %s @ (%f,%f,%f)\n", this->getClassName(), entity->getClassName(), location.x, location.y, location.z);136 PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getClassName(), entity->getClassName(), location.x, location.y, location.z); 137 137 } 138 138
Note: See TracChangeset
for help on using the changeset viewer.