Changeset 9995 in orxonox.OLD for branches/coll_rect/src/lib/collision_reaction/collision_tube.cc
- Timestamp:
- Dec 3, 2006, 6:26:47 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/coll_rect/src/lib/collision_reaction/collision_tube.cc
r9994 r9995 72 72 73 73 // check if there is already a collision defined between these objects or this is the first collision at all 74 if( collision != NULL || !collision->match(*entityA, *entityB))74 if( collision == NULL || !collision->match(*entityA, *entityB)) 75 75 { 76 76 collision = CREngine::getInstance()->popCollisionObject(); … … 103 103 104 104 // check if there is already a collision defined between these objects 105 if( collision != NULL &&!collision->match(*entity, *groundEntity))105 if( collision == NULL || !collision->match(*entity, *groundEntity)) 106 106 { 107 107 // get a new collision object
Note: See TracChangeset
for help on using the changeset viewer.