Material.FaceCull
Cull FaceCull{ get set }
Description
How should this material cull faces?
Examples
Here’s setting FaceCull to Front, which is the opposite of the default behavior. On a sphere, this is a little hard to see, but you might notice here that the lighting is for the back side of the sphere!
matCull = Material.Default.Copy();
matCull.FaceCull = Cull.Front;
Found an issue with these docs, or have some additional questions? Create an Issue on Github!