Record Class FallbackTextureProvider

java.lang.Object
java.lang.Record
com.pixelmonmod.pixelmon.api.texture.type.FallbackTextureProvider
Record Components:
resource - the resource
All Implemented Interfaces:
TextureProvider

public record FallbackTextureProvider(ResourceWithFallback resource) extends Record implements TextureProvider
The fallback texture provider simply takes an ResourceWithFallback and renders the image at the target locataion depending on if the target location has an image or not
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<FallbackTextureProvider>
     

    Fields inherited from interface com.pixelmonmod.pixelmon.api.texture.TextureProvider

    DIRECT_CODEC
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of a FallbackTextureProvider record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addScreenButtons(net.minecraft.client.gui.Font font, net.minecraft.client.gui.layouts.GridLayout.RowHelper rowHelper, Consumer<TextureProvider> updateHandler)
     
    com.mojang.serialization.Codec<? extends TextureProvider>
    The codec for reading the texture provider
    final boolean
    Indicates whether some other object is "equal to" this one.
    net.minecraft.resources.ResourceLocation
    The resource location of the texture that will be rendered
    final int
    Returns a hash code value for this object.
    boolean
    If the texture represents no resource
    Should default to false
    Returns the value of the resource record component.
    final String
    Returns a string representation of this record class.
    boolean
    If the texture being used is a default resource because the real resource could not be found in the files
    Should default to false

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • FallbackTextureProvider

      public FallbackTextureProvider(ResourceWithFallback resource)
      Creates an instance of a FallbackTextureProvider record class.
      Parameters:
      resource - the value for the resource record component
  • Method Details

    • codec

      public com.mojang.serialization.Codec<? extends TextureProvider> codec()
      Description copied from interface: TextureProvider
      The codec for reading the texture provider
      Specified by:
      codec in interface TextureProvider
      Returns:
      The codec
    • addScreenButtons

      public void addScreenButtons(net.minecraft.client.gui.Font font, net.minecraft.client.gui.layouts.GridLayout.RowHelper rowHelper, Consumer<TextureProvider> updateHandler)
      Specified by:
      addScreenButtons in interface TextureProvider
    • getTexture

      public net.minecraft.resources.ResourceLocation getTexture()
      Description copied from interface: TextureProvider
      The resource location of the texture that will be rendered
      Specified by:
      getTexture in interface TextureProvider
      Returns:
      The resource location
    • usingFallback

      public boolean usingFallback()
      Description copied from interface: TextureProvider
      If the texture being used is a default resource because the real resource could not be found in the files
      Should default to false
      Specified by:
      usingFallback in interface TextureProvider
      Returns:
      Returns true when unable to locate the required resource
    • isNone

      public boolean isNone()
      Description copied from interface: TextureProvider
      If the texture represents no resource
      Should default to false
      Specified by:
      isNone in interface TextureProvider
      Returns:
      Returns true when equal to "texture/none"
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • resource

      public ResourceWithFallback resource()
      Returns the value of the resource record component.
      Returns:
      the value of the resource record component