Uses of Class
com.jme3.texture.Texture.WrapMode

Packages that use Texture.WrapMode
com.jme3.texture   
 

Uses of Texture.WrapMode in com.jme3.texture
 

Methods in com.jme3.texture that return Texture.WrapMode
abstract  Texture.WrapMode Texture.getWrap(Texture.WrapAxis axis)
          getWrap returns the wrap mode for a given coordinate axis on this texture.
 Texture.WrapMode Texture2D.getWrap(Texture.WrapAxis axis)
          getWrap returns the wrap mode for a given coordinate axis on this texture.
 Texture.WrapMode Texture3D.getWrap(Texture.WrapAxis axis)
          getWrap returns the wrap mode for a given coordinate axis on this texture.
 Texture.WrapMode TextureArray.getWrap(Texture.WrapAxis axis)
           
 Texture.WrapMode TextureCubeMap.getWrap(Texture.WrapAxis axis)
          getWrap returns the wrap mode for a given coordinate axis on this texture.
static Texture.WrapMode Texture.WrapMode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Texture.WrapMode[] Texture.WrapMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme3.texture with parameters of type Texture.WrapMode
abstract  void Texture.setWrap(Texture.WrapAxis axis, Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for a particular axis.
 void Texture2D.setWrap(Texture.WrapAxis axis, Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for a particular axis.
 void Texture3D.setWrap(Texture.WrapAxis axis, Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for a particular axis.
 void TextureArray.setWrap(Texture.WrapAxis axis, Texture.WrapMode mode)
           
 void TextureCubeMap.setWrap(Texture.WrapAxis axis, Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for a particular axis.
abstract  void Texture.setWrap(Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for all axis.
 void Texture2D.setWrap(Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for all axis.
 void Texture3D.setWrap(Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for all axis.
 void TextureArray.setWrap(Texture.WrapMode mode)
           
 void TextureCubeMap.setWrap(Texture.WrapMode mode)
          setWrap sets the wrap mode of this texture for all axis.