Enum Class Texture.Type

java.lang.Object
java.lang.Enum<Texture.Type>
com.ardor3d.image.Texture.Type
All Implemented Interfaces:
Serializable, Comparable<Texture.Type>, Constable
Enclosing class:
Texture

public static enum Texture.Type extends Enum<Texture.Type>
  • Enum Constant Details

    • OneDimensional

      public static final Texture.Type OneDimensional
      One dimensional texture. (basically a line)
    • TwoDimensional

      public static final Texture.Type TwoDimensional
      Two dimensional texture (default). A rectangle.
    • ThreeDimensional

      public static final Texture.Type ThreeDimensional
      Three dimensional texture. (A cube)
    • CubeMap

      public static final Texture.Type CubeMap
      A set of 6 TwoDimensional textures arranged as faces of a cube facing inwards.
    • Rectangle

      public static final Texture.Type Rectangle
      A non-power of 2 texture. Does not support mipmapping. Only supports Texture.WrapMode.Clamp, Texture.WrapMode.EdgeClamp, and Texture.WrapMode.BorderClamp wrap modes. Texture coordinates are not normalized [0, 1] but rather [0,w] and [0,h] for u and v respectively.
  • Method Details

    • values

      public static Texture.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Texture.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null