Skip to content

Commit

Permalink
PhysicsDescriber: describe contact-filtering state of gimpact shapes
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 9, 2024
1 parent 8d10c61 commit 9d615ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/jme3utilities/minie/PhysicsDescriber.java
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,8 @@ public String describe(CollisionShape shape) {
result.append('?');
}

if (shape instanceof HeightfieldCollisionShape
if (shape instanceof GImpactCollisionShape
|| shape instanceof HeightfieldCollisionShape
|| shape instanceof MeshCollisionShape) {
result.append(' ');
if (!shape.isContactFilterEnabled()) {
Expand Down

0 comments on commit 9d615ff

Please sign in to comment.