Closed GoogleCodeExporter closed 9 years ago
should be type-Enhancement of course
Original comment by opengen...@gmail.com
on 25 Sep 2012 at 2:01
It looks like a good solution, I'll have a look.
Original comment by erwin.coumans
on 25 Sep 2012 at 11:05
added one fix to catch all "end collision" events to btPersistentManifold.h:
SIMD_FORCE_INLINE void clearManifold()
{
int i;
for (i=0;i<m_cachedPoints;i++)
{
clearUserCache(m_pointCache[i]);
}
if(gCollisionEndedCallback && m_cachedPoints)
{
gCollisionEndedCallback(this);
}
m_cachedPoints = 0;
}
Original comment by opengen...@gmail.com
on 29 Sep 2012 at 9:34
See https://github.com/bulletphysics/bullet3/issues/120
Original comment by erwin.coumans
on 30 Mar 2014 at 7:25
Original issue reported on code.google.com by
opengen...@gmail.com
on 25 Sep 2012 at 1:55