public static enum Renderer.ColorMixing extends java.lang.Enum<Renderer.ColorMixing>
Enum Constant and Description |
---|
DECAL
Vertex coloring or textures are combined based on the diffuse
color's alpha value
|
MODULATE
Vertex coloring or textures are multiplicatively combined
with the diffuse coloring
|
NONE
Vertex coloring or textures are ignored
|
REPLACE
Vertex coloring or textures replace the diffuse coloring
|
Modifier and Type | Method and Description |
---|---|
static Renderer.ColorMixing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Renderer.ColorMixing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Renderer.ColorMixing NONE
public static final Renderer.ColorMixing REPLACE
public static final Renderer.ColorMixing MODULATE
public static final Renderer.ColorMixing DECAL
public static Renderer.ColorMixing[] values()
for (Renderer.ColorMixing c : Renderer.ColorMixing.values()) System.out.println(c);
public static Renderer.ColorMixing 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