Merge pull request #1662 from sponji/master

Fixed a collision check bug with CCD
This commit is contained in:
erwincoumans
2018-05-03 06:40:22 -07:00
committed by GitHub

View File

@@ -842,6 +842,9 @@ public:
btCollisionObject* otherObj = (btCollisionObject*) proxy0->m_clientObject;
if(!m_dispatcher->needsCollision(m_me, otherObj))
return false;
//call needsResponse, see http://code.google.com/p/bullet/issues/detail?id=179
if (m_dispatcher->needsResponse(m_me,otherObj))
{