Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 22, 2006, 3:14:58 PM (19 years ago)
Author:
bensch
Message:

merged the bsp-model-stuff back here

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/collision_reaction/collision_handle.cc

    r8495 r8724  
    101101      return;
    102102
    103    // add element
    104    //PRINTF(0)("addTarget: %i \n", target);
     103  // add element
     104   PRINTF(5)("addTarget: %i \n", target);
    105105
    106106   this->targetList.push_back(target);
     
    177177
    178178 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());
    180180}
    181181
     
    231231    if( collisionEvent->getEntityA() == this->owner) {
    232232      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(),
    234234                  collisionEvent->getEntityB()->getClassName(), *it);
    235235        return true; }
     
    237237    else {
    238238      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(),
    240240                  collisionEvent->getEntityA()->getClassName(), *it);
    241241      return true; }
Note: See TracChangeset for help on using the changeset viewer.