Record Class WorldAnimation.Sample
java.lang.Object
java.lang.Record
com.render.api.world.WorldAnimation.Sample
- Enclosing class:
WorldAnimation
public static record WorldAnimation.Sample(WorldTransform transform, float effectValue)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionSample(WorldTransform transform, float effectValue) Creates an instance of aSamplerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatReturns the value of theeffectValuerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Returns the value of thetransformrecord component.
-
Constructor Details
-
Sample
Creates an instance of aSamplerecord class.- Parameters:
transform- the value for thetransformrecord componenteffectValue- the value for theeffectValuerecord component
-
-
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. -
transform
Returns the value of thetransformrecord component.- Returns:
- the value of the
transformrecord component
-
effectValue
public float effectValue()Returns the value of theeffectValuerecord component.- Returns:
- the value of the
effectValuerecord component
-