Package net.minecraft.client.texture
Record Class Scaling.Tile
java.lang.Object
java.lang.Record
net.minecraft.client.texture.Scaling.Tile
- Record Components:
- width-
- height-
- All Implemented Interfaces:
- Scaling
- Enclosing interface:
- Scaling
@Environment(CLIENT)
public static record Scaling.Tile(int width, int height)
extends Record
implements Scaling
- Mappings:
- Namespace - Name - named - net/minecraft/client/texture/Scaling$Tile- intermediary - net/minecraft/class_8690$class_8694- official - hgl$c- named - width- intermediary - comp_1644- official - d- named - height- intermediary - comp_1645- official - e
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.client.texture.ScalingScaling.NineSlice, Scaling.Stretch, Scaling.Tile, Scaling.Type
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<Scaling.Tile> private final intThe field for theheightrecord component.private final intThe field for thewidthrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.
- 
Field Details- 
widthprivate final int widthThe field for thewidthrecord component.
- 
heightprivate final int heightThe field for theheightrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/client/texture/Scaling$Tile;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45655- Lnet/minecraft/class_8690$class_8694;field_45655:Lcom/mojang/serialization/MapCodec;- official - c- Lhgl$c;c:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
Tilepublic Tile(int int2, int int3) 
 
- 
- 
Method Details- 
getType- Specified by:
- getTypein interface- Scaling
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/client/texture/Scaling;getType()Lnet/minecraft/client/texture/Scaling$Type;- intermediary - method_52876- Lnet/minecraft/class_8690;method_52876()Lnet/minecraft/class_8690$class_8695;- official - a- Lhgl;a()Lhgl$d;
 
- 
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. All components in this record class are compared with '=='.
- 
widthpublic int width()Returns the value of thewidthrecord component.- Returns:
- the value of the widthrecord component
 
- 
heightpublic int height()Returns the value of theheightrecord component.- Returns:
- the value of the heightrecord component
 
 
-