Merge pull request #446 from NemesisMate/patch-6

Missing getHeight present on jbullet
cleanup_build_scripts
Kirill Vainer 9 years ago
commit 93b7be9b83
  1. 4
      jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java

@ -71,6 +71,10 @@ public class ConeCollisionShape extends CollisionShape {
return radius;
}
public float getHeight() {
return height;
}
public void write(JmeExporter ex) throws IOException {
super.write(ex);
OutputCapsule capsule = ex.getCapsule(this);

Loading…
Cancel
Save