I’m using some premade models and a few of them have one sided textures when viewed from underneath.
Is there a simple solution I could apply to the material or spatial that could simple use the texture on other side of the mesh?
I’m using some premade models and a few of them have one sided textures when viewed from underneath.
Is there a simple solution I could apply to the material or spatial that could simple use the texture on other side of the mesh?
https://javadoc.jmonkeyengine.org/com/jme3/material/Material.html#getAdditionalRenderState--
https://javadoc.jmonkeyengine.org/com/jme3/material/RenderState.html#setFaceCullMode-com.jme3.material.RenderState.FaceCullMode-
geom.getMaterial().getAdditionalRenderState().setFaceCullMode(RenderState.FaceCullMode.Off);
Perfect thank you.