Record Class ModelFeatureRenderer.CrumblingOverlay
java.lang.Object
java.lang.Record
net.minecraft.client.renderer.feature.ModelFeatureRenderer.CrumblingOverlay
- Enclosing class:
ModelFeatureRenderer
public static record ModelFeatureRenderer.CrumblingOverlay(int progress, PoseStack.Pose cameraPose)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final PoseStack.PoseThe field for thecameraPoserecord component.private final intThe field for theprogressrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCrumblingOverlay(int progress, PoseStack.Pose cameraPose) Creates an instance of aCrumblingOverlayrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecameraPoserecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intprogress()Returns the value of theprogressrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
progress
private final int progressThe field for theprogressrecord component. -
cameraPose
The field for thecameraPoserecord component.
-
-
Constructor Details
-
CrumblingOverlay
Creates an instance of aCrumblingOverlayrecord class.- Parameters:
progress- the value for theprogressrecord componentcameraPose- the value for thecameraPoserecord component
-
-
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 '=='. -
progress
public int progress()Returns the value of theprogressrecord component.- Returns:
- the value of the
progressrecord component
-
cameraPose
Returns the value of thecameraPoserecord component.- Returns:
- the value of the
cameraPoserecord component
-