Package net.minecraft.client.gui.widget
Record Class PlayerSkinWidget.Models
java.lang.Object
java.lang.Record
net.minecraft.client.gui.widget.PlayerSkinWidget.Models
- Record Components:
wideModel
-slimModel
-
- Enclosing class:
PlayerSkinWidget
@Environment(CLIENT)
private static record PlayerSkinWidget.Models(PlayerEntityModel<?> wideModel, PlayerEntityModel<?> slimModel)
extends Record
- Mappings:
Namespace Name official eyg$a
intermediary net/minecraft/class_8765$class_8766
named net/minecraft/client/gui/widget/PlayerSkinWidget$Models
official a
intermediary comp_1908
named wideModel
official b
intermediary comp_1909
named slimModel
-
Field Summary
Modifier and TypeFieldDescriptionprivate final PlayerEntityModel<?>
The field for theslimModel
record component.private final PlayerEntityModel<?>
The field for thewideModel
record component. -
Constructor Summary
ModifierConstructorDescriptionprivate
Models
(PlayerEntityModel<?> playerEntityModel, PlayerEntityModel<?> playerEntityModel2) -
Method Summary
Modifier and TypeMethodDescriptionstatic PlayerSkinWidget.Models
create
(EntityModelLoader entityModelLoader) void
draw
(DrawContext context, SkinTextures skinTextures) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theslimModel
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thewideModel
record component.
-
Field Details
-
Constructor Details
-
Models
-
-
Method Details
-
create
- Mappings:
Namespace Name Mixin selector official a
Leyg$a;a(Lfmt;)Leyg$a;
intermediary method_53548
Lnet/minecraft/class_8765$class_8766;method_53548(Lnet/minecraft/class_5599;)Lnet/minecraft/class_8765$class_8766;
named create
Lnet/minecraft/client/gui/widget/PlayerSkinWidget$Models;create(Lnet/minecraft/client/render/entity/model/EntityModelLoader;)Lnet/minecraft/client/gui/widget/PlayerSkinWidget$Models;
-
draw
- Mappings:
Namespace Name Mixin selector official a
Leyg$a;a(Lewu;Lgfm;)V
intermediary method_53547
Lnet/minecraft/class_8765$class_8766;method_53547(Lnet/minecraft/class_332;Lnet/minecraft/class_8685;)V
named draw
Lnet/minecraft/client/gui/widget/PlayerSkinWidget$Models;draw(Lnet/minecraft/client/gui/DrawContext;Lnet/minecraft/client/util/SkinTextures;)V
-
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)
. -
wideModel
Returns the value of thewideModel
record component.- Returns:
- the value of the
wideModel
record component
-
slimModel
Returns the value of theslimModel
record component.- Returns:
- the value of the
slimModel
record component
-