Fixes bug in collision detection code of Chipmunk2D physics library used by the dynamics 2D engine. Previously, the anyCollision flag would sometimes get cleared erroneously after a collision had already been detected. This affects the IsCollidingWithSomething function of CDynamics2DSingleBodyObjectModel and CDynamics2DMultiBodyObjectModel, which both call cpSpaceShapeQuery.
Fixes bug in collision detection code of Chipmunk2D physics library used by the dynamics 2D engine. Previously, the
anyCollision
flag would sometimes get cleared erroneously after a collision had already been detected. This affects theIsCollidingWithSomething
function ofCDynamics2DSingleBodyObjectModel
andCDynamics2DMultiBodyObjectModel
, which both callcpSpaceShapeQuery
.Fixes issue #147.