Fix issue with the list of contact manifolds of a CollisionBody that was not cleared

This commit is contained in:
Daniel Chappuis 2018-05-30 11:08:34 +02:00
parent 1c12ffe287
commit d15a41f0cc

View File

@ -186,6 +186,9 @@ void CollisionWorld::destroyCollisionBody(CollisionBody* collisionBody) {
// Add the body ID to the list of free IDs
mFreeBodiesIds.add(collisionBody->getId());
// Reset the contact manifold list of the body
collisionBody->resetContactManifoldsList();
// Call the destructor of the collision body
collisionBody->~CollisionBody();