| Package | Description |
|---|---|
| com.jme3.bullet.animation |
A dynamic animation control and some associated classes.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BoneLink
Link an animated bone in a skeleton to a jointed rigid body in a ragdoll.
|
class |
TorsoLink
Link the torso of an animated model to a rigid body in a ragdoll.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends PhysicsLink> |
DacLinks.listLinks(java.lang.Class<T> linkType)
Enumerate all physics links of the specified type managed by this
control.
|
| Modifier and Type | Method and Description |
|---|---|
PhysicsLink |
DacLinks.findLink(java.lang.String linkName)
Access the named link.
|
PhysicsLink |
PhysicsLink.getParent()
Access this link's parent/manager in the link hierarchy.
|
PhysicsLink |
PhysicsLink.jmeClone()
Create a shallow clone for the JME cloner.
|
PhysicsLink[] |
PhysicsLink.listChildren()
Enumerate this link's immediate children in the link hierarchy.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DynamicAnimControl.animateSubtree(PhysicsLink rootLink,
float blendInterval)
Begin blending the specified link and all its descendants to kinematic
animation.
|
void |
RagdollCollisionListener.collide(PhysicsLink physicsLink,
PhysicsCollisionObject object,
PhysicsCollisionEvent event)
Invoked when a collision involving a linked rigid body occurs.
|
void |
DynamicAnimControl.setContactResponseSubtree(PhysicsLink rootLink,
boolean desiredResponse)
Alter the contact-response setting of the specified link and all its
descendants.
|
void |
DynamicAnimControl.setDynamicChain(PhysicsLink startLink,
int chainLength,
com.jme3.math.Vector3f uniformAcceleration)
Immediately put the specified link and all its ancestors (excluding the
torso) into dynamic mode.
|
void |
DynamicAnimControl.setDynamicSubtree(PhysicsLink rootLink,
com.jme3.math.Vector3f uniformAcceleration)
Immediately put the specified link and all its descendants into dynamic
mode.
|
void |
DacLinks.setMass(PhysicsLink link,
float mass)
Alter the mass of the specified link.
|
protected void |
PhysicsLink.setParent(PhysicsLink parent)
Assign a parent/manager for this link.
|