Changeset 8234 in orxonox.OLD for branches/bsp_model/src/lib/collision_reaction
- Timestamp:
- Jun 8, 2006, 1:30:08 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_handle.h
r8190 r8234 41 41 /** @returns true if this handle should be pulled also if there are no collisions */ 42 42 inline bool isContinuousPoll() const { return this->bContinuousPoll; } 43 /** @returns the type */ 44 inline CREngine::CRType getType() const { return this->type; } 43 45 44 46 void handleCollisions(); -
branches/bsp_model/src/lib/collision_reaction/cr_engine.cc
r8213 r8234 145 145 if( (*it)->isCollided() || (*it)->isContinuousPoll()) //does it have any collisions to report at all 146 146 { 147 PRINTF(0)("CREngine: handle %i\n", (*it)->getType()); 147 148 (*it)->handleCollisions(); 148 149 } -
branches/bsp_model/src/lib/collision_reaction/cr_physics_ground_walk.cc
r8203 r8234 53 53 { 54 54 // Vector normal = collision 55 55 PRINTF(0)("Ground\n"); 56 56 57 57 }
Note: See TracChangeset
for help on using the changeset viewer.