Searched refs:ghostObject (Results 1 - 5 of 5) sorted by relevance

/external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
H A DbtKinematicCharacterController.java62 public btKinematicCharacterController(btPairCachingGhostObject ghostObject, btConvexShape convexShape, float stepHeight, int upAxis) { argument
63 this(DynamicsJNI.new_btKinematicCharacterController__SWIG_0(btPairCachingGhostObject.getCPtr(ghostObject), ghostObject, btConvexShape.getCPtr(convexShape), convexShape, stepHeight, upAxis), true);
66 public btKinematicCharacterController(btPairCachingGhostObject ghostObject, btConvexShape convexShape, float stepHeight) { argument
67 this(DynamicsJNI.new_btKinematicCharacterController__SWIG_1(btPairCachingGhostObject.getCPtr(ghostObject), ghostObject, btConvexShape.getCPtr(convexShape), convexShape, stepHeight), true);
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
H A DCharacterTest.java42 btPairCachingGhostObject ghostObject; field in class:CharacterTest
79 ghostObject = new btPairCachingGhostObject();
80 ghostObject.setWorldTransform(characterTransform);
82 ghostObject.setCollisionShape(ghostShape);
83 ghostObject.setCollisionFlags(btCollisionObject.CollisionFlags.CF_CHARACTER_OBJECT);
84 characterController = new btKinematicCharacterController(ghostObject, ghostShape, .35f);
87 world.collisionWorld.addCollisionObject(ghostObject,
111 ghostObject.setWorldTransform(characterTransform);
115 ghostObject.setWorldTransform(characterTransform);
131 ghostObject
[all...]
H A DPairCacheTest.java48 private btPairCachingGhostObject ghostObject; field in class:PairCacheTest
93 ghostObject = FrustumCullingTest.createFrustumObject(frustumCam.frustum.planePoints);
94 disposables.add(ghostObject);
96 world.add(ghostEntity = new BulletEntity(ghostModel, ghostObject, 0, 0, 0));
158 boolean isFirstBody = manifold.getBody0() == ghostObject;
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Character/
H A DbtKinematicCharacterController.h101 btKinematicCharacterController (btPairCachingGhostObject* ghostObject,btConvexShape* convexShape,btScalar stepHeight, int upAxis = 1);
H A DbtKinematicCharacterController.cpp135 btKinematicCharacterController::btKinematicCharacterController (btPairCachingGhostObject* ghostObject,btConvexShape* convexShape,btScalar stepHeight, int upAxis) argument
141 m_ghostObject = ghostObject;

Completed in 255 milliseconds