Record Class Animation.TransformationEntry
java.lang.Object
java.lang.Record
net.minecraft.client.render.entity.animation.Animation.TransformationEntry
- Record Components:
part-target-keyframes-
- Enclosing class:
Animation
@Environment(CLIENT)
private static record Animation.TransformationEntry(ModelPart part, Transformation.Target target, Keyframe[] keyframes)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/entity/animation/Animation$TransformationEntryintermediary net/minecraft/class_11509$class_11510official gap$anamed partintermediary comp_4387official anamed targetintermediary comp_4388official bnamed keyframesintermediary comp_4389official c
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTransformationEntry(ModelPart modelPart, Transformation.Target target, Keyframe[] keyframe) -
Method Summary
Modifier and TypeMethodDescriptionvoidfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Keyframe[]Returns the value of thekeyframesrecord component.part()Returns the value of thepartrecord component.target()Returns the value of thetargetrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
TransformationEntry
TransformationEntry(ModelPart modelPart, Transformation.Target target, Keyframe[] keyframe)
-
-
Method Details
-
apply
- Mappings:
Namespace Name Mixin selector named applyLnet/minecraft/client/render/entity/animation/Animation$TransformationEntry;apply(FFLorg/joml/Vector3f;)Vintermediary method_71988Lnet/minecraft/class_11509$class_11510;method_71988(FFLorg/joml/Vector3f;)Vofficial aLgap$a;a(FFLorg/joml/Vector3f;)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). -
part
Returns the value of thepartrecord component.- Returns:
- the value of the
partrecord component
-
target
Returns the value of thetargetrecord component.- Returns:
- the value of the
targetrecord component
-
keyframes
Returns the value of thekeyframesrecord component.- Returns:
- the value of the
keyframesrecord component
-