Package net.minecraft.entity.decoration
Record Class DisplayEntity.IntLerperImpl
java.lang.Object
java.lang.Record
net.minecraft.entity.decoration.DisplayEntity.IntLerperImpl
- Record Components:
previous
-current
-
- All Implemented Interfaces:
DisplayEntity.IntLerper
- Enclosing class:
DisplayEntity
private static record DisplayEntity.IntLerperImpl(int previous, int current)
extends Record
implements DisplayEntity.IntLerper
- Mappings:
Namespace Name official blu$i
intermediary net/minecraft/class_8113$class_8228
named net/minecraft/entity/decoration/DisplayEntity$IntLerperImpl
official a
intermediary comp_1326
named previous
official b
intermediary comp_1327
named current
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
current()
Returns the value of thecurrent
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
lerp
(float delta) int
previous()
Returns the value of theprevious
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
IntLerperImpl
IntLerperImpl(int int2, int int3)
-
-
Method Details
-
lerp
public int lerp(float delta) - Specified by:
lerp
in interfaceDisplayEntity.IntLerper
- Mappings:
Namespace Name Mixin selector official get
Lblu$f;get(F)I
intermediary method_48889
Lnet/minecraft/class_8113$class_8119;method_48889(F)I
named lerp
Lnet/minecraft/entity/decoration/DisplayEntity$IntLerper;lerp(F)I
-
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 with '=='. -
previous
public int previous()Returns the value of theprevious
record component.- Returns:
- the value of the
previous
record component
-
current
public int current()Returns the value of thecurrent
record component.- Returns:
- the value of the
current
record component
-