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