mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-23 08:54:26 +02:00
revert accidental CCD change
This commit is contained in:
parent
361b4b80e6
commit
2acfbd0f8f
1 changed files with 6 additions and 1 deletions
|
@ -135,7 +135,12 @@ void ObjectMotionState::updateCCDConfiguration() {
|
||||||
btVector3 center;
|
btVector3 center;
|
||||||
btScalar radius;
|
btScalar radius;
|
||||||
_shape->getBoundingSphere(center, radius);
|
_shape->getBoundingSphere(center, radius);
|
||||||
_body->setCcdMotionThreshold(radius / 4.0f);
|
_body->setCcdMotionThreshold(radius * RADIUS_MOTION_THRESHOLD_MULTIPLIER);
|
||||||
|
|
||||||
|
// TODO: Ideally the swept sphere radius would be contained by the object. Using the bounding sphere
|
||||||
|
// radius works well for spherical objects, but may cause issues with other shapes. For arbitrary
|
||||||
|
// objects we may want to consider a different approach, such as grouping rigid bodies together.
|
||||||
|
|
||||||
_body->setCcdSweptSphereRadius(radius);
|
_body->setCcdSweptSphereRadius(radius);
|
||||||
} else {
|
} else {
|
||||||
// Disable CCD
|
// Disable CCD
|
||||||
|
|
Loading…
Reference in a new issue