Home
last modified time | relevance | path

Searched refs:setCcdMotionThreshold (Results 1 – 17 of 17) sorted by relevance

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
DPhysicsGhostObject.java257 public void setCcdMotionThreshold(float threshold) { in setCcdMotionThreshold() method in PhysicsGhostObject
258 setCcdMotionThreshold(objectId, threshold); in setCcdMotionThreshold()
261 private native void setCcdMotionThreshold(long objectId, float threshold); in setCcdMotionThreshold() method in PhysicsGhostObject
298 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0)); in read()
DPhysicsCharacter.java247 public void setCcdMotionThreshold(float threshold) { in setCcdMotionThreshold() method in PhysicsCharacter
248 setCcdMotionThreshold(objectId, threshold); in setCcdMotionThreshold()
251 private native void setCcdMotionThreshold(long objectId, float threshold); in setCcdMotionThreshold() method in PhysicsCharacter
307 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0)); in read()
DPhysicsRigidBody.java284 public void setCcdMotionThreshold(float threshold) { in setCcdMotionThreshold() method in PhysicsRigidBody
285 setCcdMotionThreshold(objectId, threshold); in setCcdMotionThreshold()
288 private native void setCcdMotionThreshold(long objectId, float threshold); in setCcdMotionThreshold() method in PhysicsRigidBody
744 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0)); in read()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DPhysicsCharacter.java226 public void setCcdMotionThreshold(float threshold) { in setCcdMotionThreshold() method in PhysicsCharacter
227 gObject.setCcdMotionThreshold(threshold); in setCcdMotionThreshold()
286 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0)); in read()
DPhysicsGhostObject.java248 public void setCcdMotionThreshold(float threshold) { in setCcdMotionThreshold() method in PhysicsGhostObject
249 gObject.setCcdMotionThreshold(threshold); in setCcdMotionThreshold()
281 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0)); in read()
DPhysicsRigidBody.java293 public void setCcdMotionThreshold(float threshold) { in setCcdMotionThreshold() method in PhysicsRigidBody
294 rBody.setCcdMotionThreshold(threshold); in setCcdMotionThreshold()
695 setCcdMotionThreshold(capsule.readFloat("ccdMotionThreshold", 0)); in read()
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestBoneRagdoll.java188 bulletNode.setCcdMotionThreshold(0.001f); in simpleInitApp()
203 bulletNode.setCcdMotionThreshold(0.001f); in simpleInitApp()
DTestCcd.java136 bulletg.getControl(RigidBodyControl.class).setCcdMotionThreshold(0.1f); in onAction()
DTestWalkingChar.java401 bulletControl.setCcdMotionThreshold(0.1f); in bulletControl()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
DGhostControl.java71 control.setCcdMotionThreshold(getCcdMotionThreshold()); in cloneForSpatial()
DKinematicRagdollControl.java810 public void setCcdMotionThreshold(float value) { in setCcdMotionThreshold() method in KinematicRagdollControl
812 link.rigidBody.setCcdMotionThreshold(value); in setCcdMotionThreshold()
837 link.rigidBody.setCcdMotionThreshold(value); in setBoneCcdMotionThreshold()
DCharacterControl.java65 control.setCcdMotionThreshold(getCcdMotionThreshold()); in cloneForSpatial()
DRigidBodyControl.java69 control.setCcdMotionThreshold(getCcdMotionThreshold()); in cloneForSpatial()
DVehicleControl.java89 control.setCcdMotionThreshold(getCcdMotionThreshold()); in cloneForSpatial()
/external/jmonkeyengine/engine/src/bullet-native/
Dcom_jme3_bullet_objects_PhysicsGhostObject.cpp260 ghost->setCcdMotionThreshold(value); in Java_com_jme3_bullet_objects_PhysicsGhostObject_setCcdMotionThreshold()
Dcom_jme3_bullet_objects_PhysicsCharacter.cpp319 ghost->setCcdMotionThreshold(value); in Java_com_jme3_bullet_objects_PhysicsCharacter_setCcdMotionThreshold()
Dcom_jme3_bullet_objects_PhysicsRigidBody.cpp251 body->setCcdMotionThreshold(value); in Java_com_jme3_bullet_objects_PhysicsRigidBody_setCcdMotionThreshold()