-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Comparable
public enum Material.TransparencyModeHow transparent objects are handled
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULTThe transparent object is drawn honoring the raster state.
TWO_PASSES_ONE_SIDEThe transparent object is first drawn in the depth buffer,then in the color buffer, honoring the culling mode, but ignoring the depth test function.
TWO_PASSES_TWO_SIDESThe transparent object is drawn twice in the color buffer,first with back faces only, then with front faces; the cullingmode is ignored. Can be combined with two-sided lighting.
-
Method Summary
Modifier and Type Method Description static Array<Material.TransparencyMode>values()static Material.TransparencyModevalueOf(String name)-
-
Method Detail
-
values
static Array<Material.TransparencyMode> values()
-
valueOf
static Material.TransparencyMode valueOf(String name)
-
-
-
-