Uses of Class
com.jme.scene.state.BlendState.SourceFunction

Packages that use BlendState.SourceFunction
com.jme.scene.state   
 

Uses of BlendState.SourceFunction in com.jme.scene.state
 

Methods in com.jme.scene.state that return BlendState.SourceFunction
 BlendState.SourceFunction BlendState.getSourceFunctionAlpha()
          getSourceFunction returns the source function for the blending function.
 BlendState.SourceFunction BlendState.getSourceFunctionRGB()
          getSourceFunction returns the source function for the blending function.
static BlendState.SourceFunction BlendState.SourceFunction.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BlendState.SourceFunction[] BlendState.SourceFunction.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme.scene.state with parameters of type BlendState.SourceFunction
 void BlendState.setSourceFunction(BlendState.SourceFunction function)
          setSrcFunction sets the source function for the blending equation for both rgb and alpha values.
 void BlendState.setSourceFunctionAlpha(BlendState.SourceFunction function)
          setSourceFunctionAlpha sets the source function for the blending equation used with alpha values.
 void BlendState.setSourceFunctionRGB(BlendState.SourceFunction function)
          setSrcFunction sets the source function for the blending equation.