Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/base/physics.cc')
-rw-r--r--src/game/base/physics.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/base/physics.cc b/src/game/base/physics.cc
index e0b6a70..b76e0c1 100644
--- a/src/game/base/physics.cc
+++ b/src/game/base/physics.cc
@@ -267,7 +267,7 @@ void PhysicsBody::init_physics(const float mass)
collider_body = new btRigidBody(body_info);
collider_body->setUserPointer((void *)entity());
collider_body->setLinearFactor(btVector3(1,1,1));
- //collider_body->setCcdMotionThreshold(0.0001f);
+ collider_body->setCcdMotionThreshold(0.0001f);
} else {
collider_body = new btRigidBody(mass, 0, collider_shape->bullet_shape(), inertia);
collider_body->setWorldTransform(t);