Record Class EquipmentModel.Layer
java.lang.Object
java.lang.Record
net.minecraft.client.render.entity.equipment.EquipmentModel.Layer
- Record Components:
- textureId-
- dyeable-
- usePlayerTexture-
- Enclosing class:
- EquipmentModel
@Environment(CLIENT)
public static record EquipmentModel.Layer(Identifier textureId, Optional<EquipmentModel.Dyeable> dyeable, boolean usePlayerTexture)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/entity/equipment/EquipmentModel$Layer- intermediary - net/minecraft/class_10186$class_10189- official - hgz$c- named - textureId- intermediary - comp_3171- official - b- named - dyeable- intermediary - comp_3172- official - c- named - usePlayerTexture- intermediary - comp_3173- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EquipmentModel.Layer> private final Optional<EquipmentModel.Dyeable> The field for thedyeablerecord component.private final IdentifierThe field for thetextureIdrecord component.private final booleanThe field for theusePlayerTexturerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionLayer(Identifier textureId) Layer(Identifier identifier, Optional<EquipmentModel.Dyeable> optional, boolean bool) 
- 
Method SummaryModifier and TypeMethodDescriptionstatic EquipmentModel.Layercreate(Identifier textureId, boolean dyeable) static EquipmentModel.LayercreateWithLeatherColor(Identifier textureId, boolean dyeable) dyeable()Returns the value of thedyeablerecord component.final booleanIndicates whether some other object is "equal to" this one.getFullTextureId(EquipmentModel.LayerType layerType) final inthashCode()Returns a hash code value for this object.Returns the value of thetextureIdrecord component.final StringtoString()Returns a string representation of this record class.booleanReturns the value of theusePlayerTexturerecord component.
- 
Field Details- 
textureIdThe field for thetextureIdrecord component.
- 
dyeableThe field for thedyeablerecord component.
- 
usePlayerTextureprivate final boolean usePlayerTextureThe field for theusePlayerTexturerecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_54124- Lnet/minecraft/class_10186$class_10189;field_54124:Lcom/mojang/serialization/Codec;- official - a- Lhgz$c;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Layer- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;<init>(Lnet/minecraft/util/Identifier;)V- intermediary - <init>- Lnet/minecraft/class_10186$class_10189;<init>(Lnet/minecraft/class_2960;)V- official - <init>- Lhgz$c;<init>(Lakv;)V
 
- 
Layer
 
- 
- 
Method Details- 
createWithLeatherColor- Mappings:
- Namespace - Name - Mixin selector - named - createWithLeatherColor- Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;createWithLeatherColor(Lnet/minecraft/util/Identifier;Z)Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;- intermediary - method_64005- Lnet/minecraft/class_10186$class_10189;method_64005(Lnet/minecraft/class_2960;Z)Lnet/minecraft/class_10186$class_10189;- official - a- Lhgz$c;a(Lakv;Z)Lhgz$c;
 
- 
create- Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;create(Lnet/minecraft/util/Identifier;Z)Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;- intermediary - method_64009- Lnet/minecraft/class_10186$class_10189;method_64009(Lnet/minecraft/class_2960;Z)Lnet/minecraft/class_10186$class_10189;- official - b- Lhgz$c;b(Lakv;Z)Lhgz$c;
 
- 
getFullTextureId- Mappings:
- Namespace - Name - Mixin selector - named - getFullTextureId- Lnet/minecraft/client/render/entity/equipment/EquipmentModel$Layer;getFullTextureId(Lnet/minecraft/client/render/entity/equipment/EquipmentModel$LayerType;)Lnet/minecraft/util/Identifier;- intermediary - method_64007- Lnet/minecraft/class_10186$class_10189;method_64007(Lnet/minecraft/class_10186$class_10190;)Lnet/minecraft/class_2960;- official - a- Lhgz$c;a(Lhgz$d;)Lakv;
 
- 
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 '=='.
- 
textureIdReturns the value of thetextureIdrecord component.- Returns:
- the value of the textureIdrecord component
 
- 
dyeableReturns the value of thedyeablerecord component.- Returns:
- the value of the dyeablerecord component
 
- 
usePlayerTexturepublic boolean usePlayerTexture()Returns the value of theusePlayerTexturerecord component.- Returns:
- the value of the usePlayerTexturerecord component
 
 
-