Package com.jme3.bullet.animation
Interface RagdollCollisionListener
public interface RagdollCollisionListener
Interface to receive notifications whenever a linked rigid body in a
 DynamicAnimControl collides with another physics object.
 
This class is shared between JBullet and Native Bullet.
- 
Method Summary
Modifier and TypeMethodDescriptionvoidcollide(PhysicsLink physicsLink, PhysicsCollisionObject object, PhysicsCollisionEvent event) Invoked when a collision involving a linked rigid body occurs. 
- 
Method Details
- 
collide
Invoked when a collision involving a linked rigid body occurs.- Parameters:
 physicsLink- the physics link that collided (not null)object- the collision object that collided with the bone (not null)event- other event details (not null)
 
 -