- Timestamp:
- Aug 15, 2005, 10:10:50 PM (19 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/debug.h
r4932 r5034 81 81 82 82 #define DEBUG_MODULE_COLLISON_DETECTION 0 83 #define DEBUG_MODULE_SPATIAL_SEPARATION 383 #define DEBUG_MODULE_SPATIAL_SEPARATION 0 84 84 85 85 #define HARD_DEBUG_LEVEL DEBUG_SPECIAL_MODULE -
orxonox/trunk/src/story_entities/world.cc
r5004 r5034 927 927 { 928 928 if( entity->isVisible() ) entity->draw(); 929 entity->drawBVTree(2, 226); 929 930 //entity = this->entities->nextElement(); 930 931 entity = iterator->nextElement(); -
orxonox/trunk/src/subprojects/collision_detection/collision_detection.cc
r5033 r5034 257 257 entity->draw(); 258 258 entity->drawBVTree(depth, drawMode); 259 printf("%i, %i\n", depth, drawMode); 259 260 entity = iterator->nextElement(); 260 261 } -
orxonox/trunk/src/world_entities/npc.cc
r5033 r5034 37 37 } 38 38 39 39 40 NPC::~NPC () {} 40 41 … … 42 43 void NPC::collidesWith(WorldEntity* entity, const Vector& location) 43 44 { 44 45 PRINTF(0)("COLLISION ---------------------------- with object: %s\n", entity->getName()); 45 46 } 46 47
Note: See TracChangeset
for help on using the changeset viewer.