Enum Class Constructions.TilingMode

java.lang.Object
java.lang.Enum<Constructions.TilingMode>
net.risingworld.api.definitions.Constructions.TilingMode
All Implemented Interfaces:
Serializable, Comparable<Constructions.TilingMode>, Constable
Enclosing class:
Constructions

public static enum Constructions.TilingMode extends Enum<Constructions.TilingMode>
  • Enum Constant Details

    • World

      public static final Constructions.TilingMode World
      World UV. Default tiling mode
    • WorldOriented

      public static final Constructions.TilingMode WorldOriented
      World UV but with optional orientation (determined by element rotation and vertex color.a)
    • Fixed

      public static final Constructions.TilingMode Fixed
      Fixed UV, i.e. the uv channel of the mesh is used (multiplied by scale)
    • Slope

      public static final Constructions.TilingMode Slope
      Special mode: White vertex color uses FixedUV mode, rest uses WorldUV
    • Cylinder

      public static final Constructions.TilingMode Cylinder
      Special mode: White vertex color uses WorldUV mode, rest uses FixedUV
  • Field Details

    • value

      public final int value
  • Method Details

    • values

      public static Constructions.TilingMode[] 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 Constructions.TilingMode 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
    • get

      public static Constructions.TilingMode get(int value)