Searched refs:gObject (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
H A DPhysicsGhostObject.java62 protected PairCachingGhostObject gObject; field in class:PhysicsGhostObject
85 if (gObject == null) {
86 gObject = new PairCachingGhostObject();
87 gObject.setCollisionFlags(gObject.getCollisionFlags() | CollisionFlags.NO_CONTACT_RESPONSE);
89 gObject.setCollisionShape(collisionShape.getCShape());
90 gObject.setUserPointer(this);
96 if (gObject == null) {
99 gObject.setCollisionShape(collisionShape.getCShape());
108 gObject
[all...]
H A DPhysicsCharacter.java63 protected PairCachingGhostObject gObject; field in class:PhysicsCharacter
88 if (gObject == null) {
89 gObject = new PairCachingGhostObject();
91 gObject.setCollisionFlags(CollisionFlags.CHARACTER_OBJECT);
92 gObject.setCollisionFlags(gObject.getCollisionFlags() & ~CollisionFlags.NO_CONTACT_RESPONSE);
93 gObject.setCollisionShape(collisionShape.getCShape());
94 gObject.setUserPointer(this);
95 character = new KinematicCharacterController(gObject, (ConvexShape) collisionShape.getCShape(), stepHeight);
186 if (gObject
[all...]

Completed in 130 milliseconds