Hi @sgold ,
I hope you can help me please. I am adding a GImpactCollision shape on this plant model to get some accurate collisions going, however I noticed that it keeps bouncing around.
I can confirm that the Restitution is set to 0.
That’s not a plausible location for the plant’s center of gravity.
The center of gravity should be about 10 cm (4 inches) higher. CollisionShapeFactory puts the center of gravity at the model’s (local) origin.
I’m guessing the supporting bodies in these cases have MeshCollisionShape, so these are “mesh-versus-mesh” type collisions. I suspect these are problematic because mesh and GImpact shapes don’t always have well-defined insides and outsides. That makes it difficult to simulate contact forces. As I recall, mesh-versus-mesh is prone to snagging and instability.
I ran some experiments using Minie’s DropTest app, dropping GImpact shapes (such as #64 “teapotGi”) onto a MeshCollisionShape (such as #3 “candyDish”). I observed some “bouncing” (instability) but nowhere near as bad as in your video captures.
To me, this seems like yet another reason to avoid GImpact shapes. Please re-read the tutorial section on choosing collision shapes:
As it says, “GImpactCollisionShape should be your last resort!”
I see no reason a doughnut or a flowerpot can’t be adequately approximated using compound-of-convex shapes.
I realize that CollisionShapeFactory tends to steer people in the direction of GImpact. And I’m not trying to downplay or excuse GImpact’s failings, just hoping to steer you in a more fruitful direction.
I did further experiments in DropTest, varying the “damping fraction” parameters of the rigid bodies:
Reducing the damping ratios from 0.6 to 0 made the snagging and instability much worse.
Increasing the damping to 0.9 seemed to help.
If you’re not ready to abandon GImpactCollisionShape, you might try tuning the damping (using the rigidBody.setDamping(float, float) method) in your game.
You can use insert a parent com.jme3.scene.Node (into the visual model) with the required translation and then use CollisionShapeFactory.
You can edit the original model (or create a new one) in Blender 3D or another modeling tool.
You can transform the model’s meshes using MyMesh.translate() method in the Heart library.
[edit:]
4. If the shape is a compound, you can edit the child translations. If not, you can apply translation by making it a child in a compound shape.