Searched defs:setCcdMotionThreshold (Results 1 - 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
H A DPhysicsCharacter.java247 public void setCcdMotionThreshold(float threshold) { method in class:PhysicsCharacter
248 setCcdMotionThreshold(objectId, threshold);
251 private native void setCcdMotionThreshold(long objectId, float threshold); method in class:PhysicsCharacter
307 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
H A DPhysicsGhostObject.java257 public void setCcdMotionThreshold(float threshold) { method in class:PhysicsGhostObject
258 setCcdMotionThreshold(objectId, threshold);
261 private native void setCcdMotionThreshold(long objectId, float threshold); method in class:PhysicsGhostObject
298 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
H A DPhysicsRigidBody.java284 public void setCcdMotionThreshold(float threshold) { method in class:PhysicsRigidBody
285 setCcdMotionThreshold(objectId, threshold);
288 private native void setCcdMotionThreshold(long objectId, float threshold); method in class:PhysicsRigidBody
744 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
H A DPhysicsCharacter.java226 public void setCcdMotionThreshold(float threshold) { method in class:PhysicsCharacter
227 gObject.setCcdMotionThreshold(threshold);
286 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
H A DPhysicsGhostObject.java248 public void setCcdMotionThreshold(float threshold) { method in class:PhysicsGhostObject
249 gObject.setCcdMotionThreshold(threshold);
281 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
H A DPhysicsRigidBody.java293 public void setCcdMotionThreshold(float threshold) { method in class:PhysicsRigidBody
294 rBody.setCcdMotionThreshold(threshold);
695 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
H A DKinematicRagdollControl.java807 * @see PhysicsRigidBody#setCcdMotionThreshold(float)
810 public void setCcdMotionThreshold(float value) { method in class:KinematicRagdollControl
812 link.rigidBody.setCcdMotionThreshold(value);
829 * @see PhysicsRigidBody#setCcdMotionThreshold(float)
831 * @deprecated use getBoneRigidBody(String BoneName).setCcdMotionThreshold(float) instead
837 link.rigidBody.setCcdMotionThreshold(value);

Completed in 69 milliseconds