Missing getHeight present on jbullet

Well, I found that I'm using this on my code with jbullet but is not present on bullet version so here it is.
cleanup_build_scripts
NemesisMate 9 years ago
parent 3245c9ac89
commit 5c1d442b00
  1. 4
      jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java

@ -70,6 +70,10 @@ public class ConeCollisionShape extends CollisionShape {
public float getRadius() { public float getRadius() {
return radius; return radius;
} }
public float getHeight() {
return height;
}
public void write(JmeExporter ex) throws IOException { public void write(JmeExporter ex) throws IOException {
super.write(ex); super.write(ex);

Loading…
Cancel
Save