From 5c1d442b006b461eaf4d014d37ae1b222208a19a Mon Sep 17 00:00:00 2001 From: NemesisMate Date: Fri, 11 Mar 2016 18:11:33 +0000 Subject: [PATCH] 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. --- .../com/jme3/bullet/collision/shapes/ConeCollisionShape.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java b/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java index bed5caaee..3dd317624 100644 --- a/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java +++ b/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java @@ -70,6 +70,10 @@ public class ConeCollisionShape extends CollisionShape { public float getRadius() { return radius; } + + public float getHeight() { + return height; + } public void write(JmeExporter ex) throws IOException { super.write(ex);