Record Class Keyframe
java.lang.Object
java.lang.Record
net.minecraft.client.render.entity.animation.Keyframe
- Record Components:
timestamp-preTarget-postTarget-interpolation-
@Environment(CLIENT)
public record Keyframe(float timestamp, Vector3fc preTarget, Vector3fc postTarget, Transformation.Interpolation interpolation)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/entity/animation/Keyframeintermediary net/minecraft/class_7186official gaonamed timestampintermediary comp_600official anamed preTargetintermediary comp_4453official bnamed postTargetintermediary comp_4454official cnamed interpolationintermediary comp_602official d
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Transformation.InterpolationThe field for theinterpolationrecord component.private final Vector3fcThe field for thepostTargetrecord component.private final Vector3fcThe field for thepreTargetrecord component.private final floatThe field for thetimestamprecord component. -
Constructor Summary
ConstructorsConstructorDescriptionKeyframe(float float2, Vector3fc vector3fc, Transformation.Interpolation interpolation) Keyframe(float float2, Vector3fc vector3fc, Vector3fc vector3fc2, Transformation.Interpolation interpolation) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theinterpolationrecord component.Returns the value of thepostTargetrecord component.Returns the value of thepreTargetrecord component.floatReturns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
timestamp
private final float timestampThe field for thetimestamprecord component. -
preTarget
The field for thepreTargetrecord component. -
postTarget
The field for thepostTargetrecord component. -
interpolation
The field for theinterpolationrecord component.
-
-
Constructor Details
-
Keyframe
-
Keyframe
public Keyframe(float float2, Vector3fc vector3fc, Vector3fc vector3fc2, Transformation.Interpolation interpolation)
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
timestamp
public float timestamp()Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
preTarget
Returns the value of thepreTargetrecord component.- Returns:
- the value of the
preTargetrecord component
-
postTarget
Returns the value of thepostTargetrecord component.- Returns:
- the value of the
postTargetrecord component
-
interpolation
Returns the value of theinterpolationrecord component.- Returns:
- the value of the
interpolationrecord component
-