use of com.bulletphysics.collision.shapes.CapsuleShapeZ in project jmonkeyengine by jMonkeyEngine.
the class CapsuleCollisionShape method createShape.
protected void createShape() {
switch(axis) {
case 0:
cShape = new CapsuleShapeX(radius, height);
break;
case 1:
cShape = new CapsuleShape(radius, height);
break;
case 2:
cShape = new CapsuleShapeZ(radius, height);
break;
}
cShape.setLocalScaling(Converter.convert(getScale()));
cShape.setMargin(margin);
}
Aggregations