public enum MeshPaletteMode extends java.lang.Enum<MeshPaletteMode>
Enum Constant and Description |
---|
HeightMapInterpolated
Draw the
MeshColorPalette as a Height-map with interpolation between cells |
HeightMapSolidCells
Draw the
MeshColorPalette as a Height-map with solid color stepping between cells |
Textured
Draw the
MeshColorPalette as a Texture (e.g. |
TexturedSolidCells
Draw the
MeshColorPalette as a Texture (e.g. |
Modifier and Type | Method and Description |
---|---|
static MeshPaletteMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeshPaletteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeshPaletteMode HeightMapInterpolated
MeshColorPalette
as a Height-map with interpolation between cellspublic static final MeshPaletteMode HeightMapSolidCells
MeshColorPalette
as a Height-map with solid color stepping between cellspublic static final MeshPaletteMode Textured
MeshColorPalette
as a Texture (e.g. ignores height mapping) with interpolation between cellspublic static final MeshPaletteMode TexturedSolidCells
MeshColorPalette
as a Texture (e.g. ignores height mapping) with solid color stepping between cellspublic static MeshPaletteMode[] values()
for (MeshPaletteMode c : MeshPaletteMode.values()) System.out.println(c);
public static MeshPaletteMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null