Home | History | Annotate | Download | only in collision

Lines Matching refs:CollisionShape

35 import com.jme3.bullet.collision.shapes.CollisionShape;
62 protected CollisionShape collisionShape;
85 * Sets a CollisionShape to this physics object, note that the object should
88 * @param collisionShape the CollisionShape to set
90 public void setCollisionShape(CollisionShape collisionShape) {
91 this.collisionShape = collisionShape;
96 * @return the CollisionShape of this PhysicsNode, to be able to reuse it with
99 public CollisionShape getCollisionShape() {
100 return collisionShape;
227 Spatial spatial = DebugShapeFactory.getDebugShape(collisionShape);
275 capsule.write(collisionShape, "collisionShape", null);
284 CollisionShape shape = (CollisionShape) capsule.readSavable("collisionShape", null);
285 collisionShape = shape;