Changeset 8534 in orxonox.OLD for branches/bsp_model/src/lib/collision_reaction
- Timestamp:
- Jun 16, 2006, 3:25:28 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/lib/collision_reaction/collision_handle.cc
r8490 r8534 102 102 103 103 // add element 104 PRINTF( 0)("addTarget: %i \n", target);104 PRINTF(5)("addTarget: %i \n", target); 105 105 this->targetList.push_back(target); 106 106 } … … 176 176 177 177 c->registerCollisionEvent(collisionEvent); 178 PRINTF( 0)("Registering Collision Event: %s, %s\n", collisionEvent->getEntityA()->getClassName(), collisionEvent->getEntityB()->getClassName());178 PRINTF(5)("Registering Collision Event: %s, %s\n", collisionEvent->getEntityA()->getClassName(), collisionEvent->getEntityB()->getClassName()); 179 179 } 180 180 … … 230 230 if( collisionEvent->getEntityA() == this->owner) { 231 231 if( collisionEvent->getEntityB()->isA((ClassID)(*it))) { 232 PRINTF( 0)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(),232 PRINTF(5)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(), 233 233 collisionEvent->getEntityB()->getClassName(), *it); 234 234 return true; } … … 236 236 else { 237 237 if( collisionEvent->getEntityA()->isA((ClassID)(*it))) { 238 PRINTF( 0)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(),238 PRINTF(5)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(), 239 239 collisionEvent->getEntityA()->getClassName(), *it); 240 240 return true; }
Note: See TracChangeset
for help on using the changeset viewer.