I'm using jMonkeyEngine to develop a desktop PC game. It's still in early stages (always starting, never finishing, eh?).

With no physics (just moving the camera), faces disappear when you enter the inside of a Geometry model. So my question is, how do you apply a Material (texture) to the inside of a mesh?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Have a look at this: material.getAdditionalRenderState().setFaceCullMode(FaceCullMode.Off);

This should show the texture on both sides. If you need the material only on the inside of your mesh, use FaceCullMode.Front, although in that case you should probably redefine your mesh instead so that its normals are pointing inwards.

link|improve this answer
Thank you! This works great! Haven't tried your second suggestion (no need, yet), but it sounds logical :p I have a lot to learn about 3d modeling ;) – Snailer Sep 13 '11 at 0:03
feedback

Since most meshes don't have an 'inside' you can't do it with the same geometry, a good workaround that worked for me was to use a clone of the mesh but with a negative size though this only works for symmetrical meshes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.