Skip to content

Commit

Permalink
Missing getHeight present on jbullet
Browse files Browse the repository at this point in the history
Well, I found that I'm using this on my code with jbullet but is not present on bullet version so here it is.
  • Loading branch information
NemesisMate committed Mar 11, 2016
1 parent 3245c9a commit 5c1d442
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ public ConeCollisionShape(float radius, float height) {
public float getRadius() {
return radius;
}

public float getHeight() {
return height;
}

public void write(JmeExporter ex) throws IOException {
super.write(ex);
Expand Down

0 comments on commit 5c1d442

Please sign in to comment.