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 Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
blur()
Returns the value of theblur
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.boolean
mipmap()
Returns the value of themipmap
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
TextureEntry
TextureEntry(Identifier identifier, boolean bool, boolean bool2)
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
blur
public boolean blur()Returns the value of theblur
record component.- Returns:
- the value of the
blur
record component
-
mipmap
public boolean mipmap()Returns the value of themipmap
record component.- Returns:
- the value of the
mipmap
record component
-