Record Class KeyframeDef
java.lang.Object
java.lang.Record
cromveil.combatnumbers.animation.KeyframeDef
-
Constructor Summary
ConstructorsConstructorDescriptionKeyframeDef(float time, float value) KeyframeDef(float time, float value, Easing easing) Creates an instance of aKeyframeDefrecord class. -
Method Summary
Modifier and TypeMethodDescriptioneasing()Returns the value of theeasingrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floattime()Returns the value of thetimerecord component.final StringtoString()Returns a string representation of this record class.floatvalue()Returns the value of thevaluerecord component.
-
Constructor Details
-
KeyframeDef
Creates an instance of aKeyframeDefrecord class.- Parameters:
time- the value for thetimerecord componentvalue- the value for thevaluerecord componenteasing- the value for theeasingrecord component
-
KeyframeDef
public KeyframeDef(float time, float value)
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
time
public float time()Returns the value of thetimerecord component.- Returns:
- the value of the
timerecord component
-
value
public float value()Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
easing
Returns the value of theeasingrecord component.- Returns:
- the value of the
easingrecord component
-