Enum Class Animation

java.lang.Object
java.lang.Enum<Animation>
net.minecraftforge.client.model.animation.Animation
All Implemented Interfaces:
Serializable, Comparable<Animation>, Constable

public enum Animation extends Enum<Animation>
  • Enum Constant Details

    • INSTANCE

      public static final Animation INSTANCE
  • Field Details

    • clientPartialTickTime

      private float clientPartialTickTime
    • epochTime

      private static long epochTime
    • worldRef

      private static WeakReference<World> worldRef
  • Constructor Details

    • Animation

      private Animation()
  • Method Details

    • values

      public static Animation[] 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 Animation 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
    • getWorldTime

      public static float getWorldTime(World world)
      Get the global world time for the current tick, in seconds.
    • getWorldTime

      public static float getWorldTime(World world, float tickProgress)
      Get the global world time for the current tick + partial tick progress, in seconds.
    • getPartialTickTime

      public static float getPartialTickTime()
      Get current partialTickTime.
    • setClientPartialTickTime

      public static void setClientPartialTickTime(float clientPartialTickTime)
      Internal hook, do not use.