From 7c5f0bb62058283579bfc615c4cc53b0358a6e40 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Tue, 10 Nov 2015 08:51:22 -0800 Subject: [PATCH] Update RADIUS_MOTION_THRESHOLD_MULTIPLIER --- libraries/physics/src/ObjectMotionState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/physics/src/ObjectMotionState.cpp b/libraries/physics/src/ObjectMotionState.cpp index 4f2f2b8184..24acb3358c 100644 --- a/libraries/physics/src/ObjectMotionState.cpp +++ b/libraries/physics/src/ObjectMotionState.cpp @@ -122,7 +122,7 @@ void ObjectMotionState::updateCCDConfiguration() { if (_shape) { // If this object moves faster than its bounding radius * RADIUS_MOTION_THRESHOLD_MULTIPLIER, // CCD will be enabled for this object. - const auto RADIUS_MOTION_THRESHOLD_MULTIPLIER = 2.0f; + const auto RADIUS_MOTION_THRESHOLD_MULTIPLIER = 0.5f; btVector3 center; btScalar radius;