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
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FallbackTextureProvider>Fields inherited from interface com.pixelmonmod.pixelmon.api.texture.TextureProvider
DIRECT_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionFallbackTextureProvider(ResourceWithFallback resource) Creates an instance of aFallbackTextureProviderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddScreenButtons(net.minecraft.client.gui.Font font, net.minecraft.client.gui.layouts.GridLayout.RowHelper rowHelper, Consumer<TextureProvider> updateHandler) com.mojang.serialization.Codec<? extends TextureProvider>codec()The codec for reading the texture providerfinal booleanIndicates whether some other object is "equal to" this one.net.minecraft.resources.ResourceLocationThe resource location of the texture that will be renderedfinal inthashCode()Returns a hash code value for this object.booleanisNone()If the texture represents no resource
Should default to falseresource()Returns the value of theresourcerecord component.final StringtoString()Returns a string representation of this record class.booleanIf the texture being used is a default resource because the real resource could not be found in the files
Should default to false
-
Field Details
-
CODEC
-
-
Constructor Details
-
FallbackTextureProvider
Creates an instance of aFallbackTextureProviderrecord class.- Parameters:
resource- the value for theresourcerecord component
-
-
Method Details
-
codec
Description copied from interface:TextureProviderThe codec for reading the texture provider- Specified by:
codecin interfaceTextureProvider- 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:
addScreenButtonsin interfaceTextureProvider
-
getTexture
public net.minecraft.resources.ResourceLocation getTexture()Description copied from interface:TextureProviderThe resource location of the texture that will be rendered- Specified by:
getTexturein interfaceTextureProvider- Returns:
- The resource location
-
usingFallback
public boolean usingFallback()Description copied from interface:TextureProviderIf 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:
usingFallbackin interfaceTextureProvider- Returns:
- Returns true when unable to locate the required resource
-
isNone
public boolean isNone()Description copied from interface:TextureProviderIf the texture represents no resource
Should default to false- Specified by:
isNonein interfaceTextureProvider- Returns:
- Returns true when equal to "texture/none"
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
resource
Returns the value of theresourcerecord component.- Returns:
- the value of the
resourcerecord component
-