Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8183 in orxonox.OLD


Ignore:
Timestamp:
Jun 7, 2006, 11:46:00 AM (18 years ago)
Author:
patrick
Message:

cr: work flush

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/cr/src/world_entities/world_entity.cc

    r8182 r8183  
    369369/**
    370370 * registers a new collision event to this world entity
    371  *  @param collisionEvent the event
     371 *  @param entityA entity of the collision
     372 *  @param entityB entity of the collision
     373 *  @param bvA colliding bounding volume of entityA
     374 *  @param bvB colliding bounding volume of entityA
    372375 */
    373376bool WorldEntity::registerCollision(WorldEntity* entityA, WorldEntity* entityB, BoundingVolume* bvA, BoundingVolume* bvB)
     
    377380    return false;
    378381
    379   // create a collision event
     382  // get a collision event
    380383  CollisionEvent* c = CREngine::getInstance()->popCollisionEventObject();
    381384  assert(c != NULL); // if this should fail: we got not enough precached CollisionEvents: alter value in cr_defs.h
     
    400403    return false;
    401404
    402   // create a collision event
     405  // get a collision event
    403406  CollisionEvent* c = CREngine::getInstance()->popCollisionEventObject();
    404407  assert(c != NULL); // if this should fail: we got not enough precached CollisionEvents: alter value in cr_defs.h
Note: See TracChangeset for help on using the changeset viewer.