Record Class ModelRotation.UVModel
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.ModelRotation.UVModel
- Record Components:
parent
-
- All Implemented Interfaces:
ModelBakeSettings
- Enclosing class:
ModelRotation
@Environment(CLIENT)
private static record ModelRotation.UVModel(ModelRotation parent)
extends Record
implements ModelBakeSettings
- Mappings:
Namespace Name named net/minecraft/client/render/model/ModelRotation$UVModel
intermediary net/minecraft/class_1086$class_10810
official hmr$a
named parent
intermediary comp_3769
official a
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ModelRotation
The field for theparent
record component.Fields inherited from interface net.minecraft.client.render.model.ModelBakeSettings
TRANSFORM_NONE
-
Constructor Summary
Constructors -
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.parent()
Returns the value of theparent
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
parent
The field for theparent
record component.
-
-
Constructor Details
-
UVModel
UVModel(ModelRotation modelRotation)
-
-
Method Details
-
getRotation
- Specified by:
getRotation
in interfaceModelBakeSettings
- Mappings:
Namespace Name Mixin selector named getRotation
Lnet/minecraft/client/render/model/ModelBakeSettings;getRotation()Lnet/minecraft/util/math/AffineTransformation;
intermediary method_3509
Lnet/minecraft/class_3665;method_3509()Lnet/minecraft/class_4590;
official a
Lhnf;a()Lk;
-
forward
- Specified by:
forward
in interfaceModelBakeSettings
- Mappings:
Namespace Name Mixin selector named forward
Lnet/minecraft/client/render/model/ModelBakeSettings;forward(Lnet/minecraft/util/math/Direction;)Lorg/joml/Matrix4fc;
intermediary method_68011
Lnet/minecraft/class_3665;method_68011(Lnet/minecraft/class_2350;)Lorg/joml/Matrix4fc;
official a
Lhnf;a(Ljc;)Lorg/joml/Matrix4fc;
-
reverse
- Specified by:
reverse
in interfaceModelBakeSettings
- Mappings:
Namespace Name Mixin selector named reverse
Lnet/minecraft/client/render/model/ModelBakeSettings;reverse(Lnet/minecraft/util/math/Direction;)Lorg/joml/Matrix4fc;
intermediary method_68012
Lnet/minecraft/class_3665;method_68012(Lnet/minecraft/class_2350;)Lorg/joml/Matrix4fc;
official b
Lhnf;b(Ljc;)Lorg/joml/Matrix4fc;
-
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)
. -
parent
Returns the value of theparent
record component.- Returns:
- the value of the
parent
record component
-