Package net.minecraft.client.render
Record Class RenderPhase.Textures.TextureEntry
java.lang.Object
java.lang.Record
net.minecraft.client.render.RenderPhase.Textures.TextureEntry
- Record Components:
- id-
- blur-
- mipmap-
- Enclosing class:
- RenderPhase.Textures
@Environment(CLIENT)
private static record RenderPhase.Textures.TextureEntry(Identifier id, boolean blur, boolean mipmap)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/RenderPhase$Textures$TextureEntry- intermediary - net/minecraft/class_4668$class_5940$class_10542- official - gmi$i$b- named - id- intermediary - comp_3462- official - a- named - blur- intermediary - comp_3463- official - b- named - mipmap- intermediary - comp_3464- official - c
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanblur()Returns the value of theblurrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.booleanmipmap()Returns the value of themipmaprecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
TextureEntryTextureEntry(Identifier identifier, boolean bool, boolean bool2) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
blurpublic boolean blur()Returns the value of theblurrecord component.- Returns:
- the value of the blurrecord component
 
- 
mipmappublic boolean mipmap()Returns the value of themipmaprecord component.- Returns:
- the value of the mipmaprecord component
 
 
-