Spatial Collision

Hello,
I am new here and don’t know much about the jME.
Here is my Problem:
I want to check if some Spatials collide with others. I have got a Node “flying” an a Node “solid”. If a flying hit a solid Spatial, the flying should be solid. This is my solution, but it does not work:

Code

If I test this, it throws a UnsupportedCollisionException.
How can I fix this? I hope you can help me.

(sorry for my beginner’s English)

Geometry-geometry collision isn’t supported. You need to do boundingVolume-geometry

1 Like

Can you explain, how I have to use this, please?