|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FixedFuncBinding>
com.jme3.material.FixedFuncBinding
public enum FixedFuncBinding
Fixed function binding is used to specify a binding for a MatParam
in case that shaders are not supported on the system.
Enum Constant Summary | |
---|---|
Color
Specifies the color of the object. |
|
MaterialAmbient
Specifies the material ambient color. |
|
MaterialDiffuse
Specifies the material diffuse color. |
|
MaterialShininess
Specifies the material shininess value. |
|
MaterialSpecular
Specifies the material specular color. |
|
UseVertexColor
Use vertex color as an additional diffuse color, if lighting is enabled. |
Method Summary | |
---|---|
static FixedFuncBinding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FixedFuncBinding[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FixedFuncBinding MaterialAmbient
public static final FixedFuncBinding MaterialDiffuse
public static final FixedFuncBinding MaterialSpecular
public static final FixedFuncBinding Color
Used only for non-lit materials.
public static final FixedFuncBinding MaterialShininess
public static final FixedFuncBinding UseVertexColor
material color
.
Method Detail |
---|
public static FixedFuncBinding[] values()
for (FixedFuncBinding c : FixedFuncBinding.values()) System.out.println(c);
public static FixedFuncBinding 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |