Skip to content

Commit 93b7be9

Browse files
committed
Merge pull request #446 from NemesisMate/patch-6
Missing getHeight present on jbullet
2 parents e0ffff3 + 5c1d442 commit 93b7be9

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)