Record Class ModelCommandRenderer.CrumblingOverlayCommand
java.lang.Object
java.lang.Record
net.minecraft.client.render.command.ModelCommandRenderer.CrumblingOverlayCommand
- Record Components:
progress-cameraMatricesEntry-
- Enclosing class:
ModelCommandRenderer
@Environment(CLIENT)
public static record ModelCommandRenderer.CrumblingOverlayCommand(int progress, MatrixStack.Entry cameraMatricesEntry)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/command/ModelCommandRenderer$CrumblingOverlayCommandintermediary net/minecraft/class_11683$class_11792official hxo$anamed progressintermediary comp_4656official anamed cameraMatricesEntryintermediary comp_4657official b
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MatrixStack.EntryThe field for thecameraMatricesEntryrecord component.private final intThe field for theprogressrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecameraMatricesEntryrecord 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. -
cameraMatricesEntry
The field for thecameraMatricesEntryrecord component.
-
-
Constructor Details
-
CrumblingOverlayCommand
-
-
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
-
cameraMatricesEntry
Returns the value of thecameraMatricesEntryrecord component.- Returns:
- the value of the
cameraMatricesEntryrecord component
-