Home | History | Annotate | Download | only in util

Lines Matching refs:CollisionShape

39 import com.jme3.bullet.collision.shapes.CollisionShape;
70 * @param collisionShape
73 public static Spatial getDebugShape(CollisionShape collisionShape) {
74 if (collisionShape == null) {
78 if (collisionShape instanceof CompoundCollisionShape) {
79 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape;
84 CollisionShape ccollisionShape = childCollisionShape.shape;
105 debugShape = createDebugShape(collisionShape);
114 private static Geometry createDebugShape(CollisionShape shape) {
122 public static Mesh getDebugMesh(CollisionShape shape) {