Skip to content

Commit 5c1d442

Browse files
committed
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.
1 parent 3245c9a commit 5c1d442

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/ConeCollisionShape.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ public ConeCollisionShape(float radius, float height) {
7070
public float getRadius() {
7171
return radius;
7272
}
73+
74+
public float getHeight() {
75+
return height;
76+
}
7377

7478
public void write(JmeExporter ex) throws IOException {
7579
super.write(ex);

0 commit comments

Comments
 (0)