I want to make it a static physics node, so I gave it a modelbound and so on.
The system tells me :
java.lang.IllegalArgumentException: scale must not have 0 as a component!
at com.jmex.physics.impl.ode.geometry.OdeBox.updateWorldVectors(OdeBox.java:69)
at com.jme.scene.Spatial.updateWorldData(Unknown Source)
at com.jme.scene.Spatial.updateGeometricState(Unknown Source)
at com.jme.scene.Node.updateWorldData(Unknown Source)
at com.jme.scene.Spatial.updateGeometricState(Unknown Source)
at com.jme.scene.Node.updateWorldData(Unknown Source)
at com.jme.scene.Spatial.updateGeometricState(Unknown Source)
at com.jme.scene.Node.updateWorldData(Unknown Source)
at com.jme.scene.Spatial.updateGeometricState(Unknown Source)
Could someone tell me wich are the requisites to export a 3ds model to fit it in jme ?
This problem only exists if you generate physics collision geometries from your mesh (so this actually belongs into the physics board).
None of your objects in the mesh may result in a collision geometriy that has zero width, height or length to use jME Physics 2. Make sure to either have a scale != 0 (e.g. change that component to 0.0001f) or change the model bound of that object to be larger.
When you update the model bound after setting it the size is wiped either way. So this can't be the reason. Neither can the reason be static or dynamic. Maybe you used another 3ds file?