Stephen Gold

Results 456 comments of Stephen Gold

A new issue that's possibly related: #1141

Removing that code would re-introduce the problem that motivated PR #381. Let's not do that, if possible.

Thanks for the suggestion. I thought double-precision math was available as an add-on library for JME. @pspeed42 can you comment?

I believe that invoking `updateBound()` during `setScale()` will fix this, for native Bullet at least.

Looks like `jme3-jbullet`'s `GImpactCollisionShape.java` has an update issue similar to that in `jme3-bullet`: ``` cShape = new GImpactMeshShape(tiv); cShape.setLocalScaling(Converter.convert(worldScale)); ((GImpactMeshShape)cShape).updateBound(); cShape.setLocalScaling(Converter.convert(getScale())); cShape.setMargin(margin); ``` I'll try moving the `updateBound()` into `setScale()`...