You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file btCollisionWorld.h, ContactResultCallback has attributes m_collisionFilterGroup and m_collisionFilterMask. However, there is no way for us to set these values via ConcreteContactResultCallback, which is [JSImplementation="ContactResultCallback"] according to ammo.idl
We are able to set the group and mask values of ClosestRayResultCallback via set_m_collisionFilterGroup() and set_m_collisionFilterMask(). So, I'm unsure why we cannot do the same with ConcreteContactResultCallback.
Without this capability, we have little control over contactTest and when ConcreteContactResultCallback.addSingleResult is triggered.
Thank you for your time and help!
The text was updated successfully, but these errors were encountered:
regnaio
changed the title
Please add set_m_collisionFilterGroup(), set_m_collisionFilterMask() to ConcreteContactResultCallback
Please add set_m_collisionFilterGroup(), set_m_collisionFilterMask() to ConcreteContactResultCallback
Jan 25, 2021
regnaio
changed the title
Please add set_m_collisionFilterGroup(), set_m_collisionFilterMask() to ConcreteContactResultCallback
Please add set_m_collisionFilterGroup() and set_m_collisionFilterMask() to ConcreteContactResultCallback
Jan 25, 2021
In the file
btCollisionWorld.h
,ContactResultCallback
has attributesm_collisionFilterGroup
andm_collisionFilterMask
. However, there is no way for us to set these values viaConcreteContactResultCallback
, which is[JSImplementation="ContactResultCallback"]
according toammo.idl
We are able to set the group and mask values of
ClosestRayResultCallback
viaset_m_collisionFilterGroup()
andset_m_collisionFilterMask()
. So, I'm unsure why we cannot do the same withConcreteContactResultCallback
.Without this capability, we have little control over
contactTest
and whenConcreteContactResultCallback.addSingleResult
is triggered.Thank you for your time and help!
The text was updated successfully, but these errors were encountered: