HomeSort by relevance Sort by last modified time
    Searched defs:setCcdMotionThreshold (Results 1 - 7 of 7) sorted by null

  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 257 public void setCcdMotionThreshold(float threshold) {
258 setCcdMotionThreshold(objectId, threshold);
261 private native void setCcdMotionThreshold(long objectId, float threshold);
298 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
PhysicsCharacter.java 247 public void setCcdMotionThreshold(float threshold) {
248 setCcdMotionThreshold(objectId, threshold);
251 private native void setCcdMotionThreshold(long objectId, float threshold);
307 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
PhysicsRigidBody.java 284 public void setCcdMotionThreshold(float threshold) {
285 setCcdMotionThreshold(objectId, threshold);
288 private native void setCcdMotionThreshold(long objectId, float threshold);
744 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsCharacter.java 226 public void setCcdMotionThreshold(float threshold) {
227 gObject.setCcdMotionThreshold(threshold);
286 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
PhysicsGhostObject.java 248 public void setCcdMotionThreshold(float threshold) {
249 gObject.setCcdMotionThreshold(threshold);
281 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
PhysicsRigidBody.java 293 public void setCcdMotionThreshold(float threshold) {
294 rBody.setCcdMotionThreshold(threshold);
695 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0));
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
KinematicRagdollControl.java 807 * @see PhysicsRigidBody#setCcdMotionThreshold(float)
810 public void setCcdMotionThreshold(float value) {
812 link.rigidBody.setCcdMotionThreshold(value);
829 * @see PhysicsRigidBody#setCcdMotionThreshold(float)
831 * @deprecated use getBoneRigidBody(String BoneName).setCcdMotionThreshold(float) instead
837 link.rigidBody.setCcdMotionThreshold(value);
    [all...]

Completed in 729 milliseconds