Package net.minecraft.client.animation
Record Class KeyframeAnimation.Entry
java.lang.Object
java.lang.Record
net.minecraft.client.animation.KeyframeAnimation.Entry
- Enclosing class:
KeyframeAnimation
static record KeyframeAnimation.Entry(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEntry
(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes) Creates an instance of aEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(float p_427355_, float p_427277_, org.joml.Vector3f p_427458_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Keyframe[]
Returns the value of thekeyframes
record component.part()
Returns the value of thepart
record component.target()
Returns the value of thetarget
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
part
The field for thepart
record component. -
target
The field for thetarget
record component. -
keyframes
The field for thekeyframes
record component.
-
-
Constructor Details
-
Entry
Entry(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes) Creates an instance of aEntry
record class.- Parameters:
part
- the value for thepart
record componenttarget
- the value for thetarget
record componentkeyframes
- the value for thekeyframes
record component
-
-
Method Details
-
apply
public void apply(float p_427355_, float p_427277_, org.joml.Vector3f p_427458_) -
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 thepart
record component.- Returns:
- the value of the
part
record component
-
target
Returns the value of thetarget
record component.- Returns:
- the value of the
target
record component
-
keyframes
Returns the value of thekeyframes
record component.- Returns:
- the value of the
keyframes
record component
-