Changeset 9130 in orxonox.OLD for branches/presentation/src
- Timestamp:
- Jul 4, 2006, 2:43:20 PM (18 years ago)
- Location:
- branches/presentation/src/lib/collision_reaction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/lib/collision_reaction/collision_handle.cc
r8724 r9130 25 25 #include "cr_object_damage.h" 26 26 #include "cr_physics_ground_walk.h" 27 #include "cr_physics_full_walk.h" 27 28 28 29 #include "debug.h" … … 52 53 switch( type) 53 54 { 54 case CREngine::CR_PHYSICS_ STEP_BACK:55 // this->collisionReaction = new CRPhysicsGroundWalk();55 case CREngine::CR_PHYSICS_FULL_WALK: 56 this->collisionReaction = new CRPhysicsFullWalk(); 56 57 this->bContinuousPoll = true; 57 58 break; -
branches/presentation/src/lib/collision_reaction/cr_physics_ground_walk.cc
r9123 r9130 71 71 72 72 float CR_MAX_WALK_HEIGHT = 15.0f; 73 float CR_THRESHOLD = 0.2f;74 73 75 74 float height = 0.0f; 76 77 75 78 76
Note: See TracChangeset
for help on using the changeset viewer.