-
Notifications
You must be signed in to change notification settings - Fork 6
Description
This issue is rather subjective probably, so we might have to discuss pros and cons, at least people having the same problem might find this issue to understand what's going on.
A little context: My hitboxes are simple spheres placed in Blender and having a wireframe modifier (to not occlude the whole model). I was expecting xbuf to set the "AdditionalMaterialState" to Wireframe, but it applied the modifier and hence my collisions went wrong.
Now the question is: What is the desired behavior for that. I think in theory jme supports the wire thickness as well:
m2.getAdditionalRenderState().setWireframe(true);
m2.getAdditionalRenderState().setLineWidth(2f);This might not be true for other engines and the results might be slightly different than in blender. However using the wireframe shader might be more performant than rendering the baked geometry.