Changeset 8108 in orxonox.OLD for branches/cr/src/lib/collision_reaction/collision.cc
- Timestamp:
- Jun 1, 2006, 11:14:54 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cr/src/lib/collision_reaction/collision.cc
r7968 r8108 29 29 this->entityA = NULL; 30 30 this->entityB = NULL; 31 32 this->bDispatched = false; 33 this->entityACollide = false; 34 this->entityBCollide = false; 31 35 } 32 36 … … 46 50 { 47 51 48 52 this->bDispatched = true; 49 53 this->flushCollisionEvents(); 50 54 } … … 56 60 void Collision::flushCollisionEvents() 57 61 { 62 this->entityA = NULL; 63 this->entityB = NULL; 64 65 this->entityACollide = false; 66 this->entityBCollide = false; 67 58 68 this->collisionEvents.clear(); 59 69 }
Note: See TracChangeset
for help on using the changeset viewer.