Uses of Class
com.jme3.shader.VarType

Packages that use VarType
com.jme3.material The com.jme3.material package contains classes for manipulating jMonkeyEngine materials. 
com.jme3.shader   
 

Uses of VarType in com.jme3.material
 

Fields in com.jme3.material declared as VarType
protected  VarType MatParam.type
           
 

Methods in com.jme3.material that return VarType
 VarType MatParam.getVarType()
          Returns the material parameter type.
 

Methods in com.jme3.material with parameters of type VarType
 void MaterialDef.addMaterialParam(VarType type, java.lang.String name, java.lang.Object value, FixedFuncBinding ffBinding)
          Adds a new material parameter.
 void TechniqueDef.addShaderPresetDefine(java.lang.String defineName, VarType type, java.lang.Object value)
          Adds a preset define.
 void Material.setParam(java.lang.String name, VarType type, java.lang.Object value)
          Pass a parameter to the material shader.
 void Material.setTextureParam(java.lang.String name, VarType type, Texture value)
          Set a texture parameter.
 

Constructors in com.jme3.material with parameters of type VarType
MatParam(VarType type, java.lang.String name, java.lang.Object value, FixedFuncBinding ffBinding)
          Create a new material parameter.
MatParamTexture(VarType type, java.lang.String name, Texture texture, int unit)
           
 

Uses of VarType in com.jme3.shader
 

Fields in com.jme3.shader declared as VarType
protected  VarType Uniform.varType
          Type of uniform
 

Methods in com.jme3.shader that return VarType
 VarType Uniform.getVarType()
           
static VarType VarType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VarType[] VarType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme3.shader with parameters of type VarType
 boolean DefineList.set(java.lang.String key, VarType type, java.lang.Object val)
           
 void Uniform.setValue(VarType type, java.lang.Object value)