Changeset 8203 in orxonox.OLD for branches/bsp_model/src/lib/collision_reaction
- Timestamp:
- Jun 7, 2006, 4:42:44 PM (18 years ago)
- Location:
- branches/bsp_model/src/lib/collision_reaction
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/lib/collision_reaction/collision.h
r8190 r8203 43 43 inline void setEntityBCollide(bool flag) { this->entityACollide = flag; } 44 44 45 45 46 /** @returns true if this Collision has already been dispatched */ 46 47 inline bool isDispatched() { return this->bDispatched; } -
branches/bsp_model/src/lib/collision_reaction/collision_event.h
r8190 r8203 38 38 inline BoundingVolume* getBVB() const { return this->bvB; } 39 39 40 /** @return ground plane if collided with bsp model */ 41 inline Plane* getGroundPlane() { return this->ground; } 42 43 40 44 41 45 inline void operator()(WorldEntity* entityA, WorldEntity* entityB, BoundingVolume* bvA, BoundingVolume* bvB) { this->collide(entityA, entityB, bvA, bvB); } -
branches/bsp_model/src/lib/collision_reaction/cr_physics_ground_walk.cc
r8200 r8203 33 33 : CollisionReaction() 34 34 { 35 this->setClassID(CL_CR_ OBJECT_DAMAGE, "CRPhysicsGroundWalk");35 this->setClassID(CL_CR_PHYSICS_GROUND_WALK, "CRPhysicsGroundWalk"); 36 36 37 37 } … … 52 52 void CRPhysicsGroundWalk::reactToCollision(Collision* collision) 53 53 { 54 54 // Vector normal = collision 55 55 56 56
Note: See TracChangeset
for help on using the changeset viewer.