Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 16, 2006, 3:25:28 PM (18 years ago)
Author:
patrick
Message:

bsp: less debug output. claudio: well done ground walking seems to work quite fine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/lib/collision_reaction/collision_handle.cc

    r8490 r8534  
    102102
    103103  // add element
    104    PRINTF(0)("addTarget: %i \n", target);
     104   PRINTF(5)("addTarget: %i \n", target);
    105105   this->targetList.push_back(target);
    106106}
     
    176176
    177177 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());
    179179}
    180180
     
    230230    if( collisionEvent->getEntityA() == this->owner) {
    231231      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(),
    233233                  collisionEvent->getEntityB()->getClassName(), *it);
    234234        return true; }
     
    236236    else {
    237237      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(),
    239239                  collisionEvent->getEntityA()->getClassName(), *it);
    240240      return true; }
Note: See TracChangeset for help on using the changeset viewer.