From 31933ff365315e447cc46dd1470c10476becaefe Mon Sep 17 00:00:00 2001 From: NemesisMate Date: Wed, 15 Feb 2017 14:19:13 +0000 Subject: [PATCH] Removed the override that avoided a CompoundCollisionShape to be scaled --- .../bullet/collision/shapes/CompoundCollisionShape.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/CompoundCollisionShape.java b/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/CompoundCollisionShape.java index 9faf7f68b..b2321afdc 100644 --- a/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/CompoundCollisionShape.java +++ b/jme3-bullet/src/main/java/com/jme3/bullet/collision/shapes/CompoundCollisionShape.java @@ -119,14 +119,6 @@ public class CompoundCollisionShape extends CollisionShape { return children; } - /** - * WARNING - CompoundCollisionShape scaling has no effect. - */ - @Override - public void setScale(Vector3f scale) { - Logger.getLogger(this.getClass().getName()).log(Level.WARNING, "CompoundCollisionShape cannot be scaled"); - } - private native long createShape(); private native long addChildShape(long objectId, long childId, Vector3f location, Matrix3f rotation);