Package net.minecraft
Record Class class_8538
java.lang.Object
java.lang.Record
net.minecraft.class_8538
- Record Components:
normal
-seeThrough
-polygonOffset
-
@Environment(CLIENT)
public record class_8538(RenderLayer normal, RenderLayer seeThrough, RenderLayer polygonOffset)
extends Record
- Mappings:
Namespace Name official eqy
intermediary net/minecraft/class_8538
named net/minecraft/class_8538
official a
intermediary comp_1501
named normal
official b
intermediary comp_1502
named seeThrough
official c
intermediary comp_1503
named polygonOffset
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final RenderLayer
The field for thenormal
record component.private final RenderLayer
The field for thepolygonOffset
record component.private final RenderLayer
The field for theseeThrough
record component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_8538
(RenderLayer renderLayer, RenderLayer renderLayer2, RenderLayer renderLayer3) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static class_8538
method_51641
(Identifier identifier) method_51642
(TextRenderer.TextLayerType textLayerType) static class_8538
method_51643
(Identifier identifier) normal()
Returns the value of thenormal
record component.Returns the value of thepolygonOffset
record component.Returns the value of theseeThrough
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
normal
The field for thenormal
record component. -
seeThrough
The field for theseeThrough
record component. -
polygonOffset
The field for thepolygonOffset
record component.
-
-
Constructor Details
-
class_8538
-
-
Method Details
-
method_51641
- Mappings:
Namespace Name Mixin selector official a
Leqy;a(Lacq;)Leqy;
intermediary method_51641
Lnet/minecraft/class_8538;method_51641(Lnet/minecraft/class_2960;)Lnet/minecraft/class_8538;
named method_51641
Lnet/minecraft/class_8538;method_51641(Lnet/minecraft/util/Identifier;)Lnet/minecraft/class_8538;
-
method_51643
- Mappings:
Namespace Name Mixin selector official b
Leqy;b(Lacq;)Leqy;
intermediary method_51643
Lnet/minecraft/class_8538;method_51643(Lnet/minecraft/class_2960;)Lnet/minecraft/class_8538;
named method_51643
Lnet/minecraft/class_8538;method_51643(Lnet/minecraft/util/Identifier;)Lnet/minecraft/class_8538;
-
method_51642
- Mappings:
Namespace Name Mixin selector official a
Leqy;a(Leof$a;)Lfjm;
intermediary method_51642
Lnet/minecraft/class_8538;method_51642(Lnet/minecraft/class_327$class_6415;)Lnet/minecraft/class_1921;
named method_51642
Lnet/minecraft/class_8538;method_51642(Lnet/minecraft/client/font/TextRenderer$TextLayerType;)Lnet/minecraft/client/render/RenderLayer;
-
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)
. -
normal
Returns the value of thenormal
record component.- Returns:
- the value of the
normal
record component
-
seeThrough
Returns the value of theseeThrough
record component.- Returns:
- the value of the
seeThrough
record component
-
polygonOffset
Returns the value of thepolygonOffset
record component.- Returns:
- the value of the
polygonOffset
record component
-