Record Class OrderedRenderCommandQueueImpl.FireCommand
java.lang.Object
java.lang.Record
net.minecraft.client.render.command.OrderedRenderCommandQueueImpl.FireCommand
- Record Components:
matricesEntry-renderState-rotation-
- Enclosing class:
OrderedRenderCommandQueueImpl
@Environment(CLIENT)
public static record OrderedRenderCommandQueueImpl.FireCommand(MatrixStack.Entry matricesEntry, EntityRenderState renderState, Quaternionf rotation)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/command/OrderedRenderCommandQueueImpl$FireCommandintermediary net/minecraft/class_11661$class_11666official hgz$dnamed matricesEntryintermediary comp_4492official anamed renderStateintermediary comp_4493official bnamed rotationintermediary comp_4494official c
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MatrixStack.EntryThe field for thematricesEntryrecord component.private final EntityRenderStateThe field for therenderStaterecord component.private final QuaternionfThe field for therotationrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionFireCommand(MatrixStack.Entry entry, EntityRenderState entityRenderState, Quaternionf quaternionf) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thematricesEntryrecord component.Returns the value of therenderStaterecord component.rotation()Returns the value of therotationrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
matricesEntry
The field for thematricesEntryrecord component. -
renderState
The field for therenderStaterecord component. -
rotation
The field for therotationrecord component.
-
-
Constructor Details
-
FireCommand
public FireCommand(MatrixStack.Entry entry, EntityRenderState entityRenderState, Quaternionf quaternionf)
-
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
matricesEntry
Returns the value of thematricesEntryrecord component.- Returns:
- the value of the
matricesEntryrecord component
-
renderState
Returns the value of therenderStaterecord component.- Returns:
- the value of the
renderStaterecord component
-
rotation
Returns the value of therotationrecord component.- Returns:
- the value of the
rotationrecord component
-