Record Class BatchingEntityRenderCommandQueue.ModelCommand<S>
java.lang.Object
java.lang.Record
net.minecraft.client.render.entity.command.BatchingEntityRenderCommandQueue.ModelCommand<S>
- Record Components:
pose-model-state-lightCoords-overlayCoords-tintedColor-sprite-outlineColor-
- Enclosing class:
BatchingEntityRenderCommandQueue
@Environment(CLIENT)
public static record BatchingEntityRenderCommandQueue.ModelCommand<S>(MatrixStack.Entry pose, Model<? super S> model, S state, int lightCoords, int overlayCoords, int tintedColor, @Nullable Sprite sprite, int outlineColor)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/entity/command/BatchingEntityRenderCommandQueue$ModelCommandintermediary net/minecraft/class_11661$class_11670official hbp$inamed poseintermediary comp_4504official anamed modelintermediary comp_4505official bnamed stateintermediary comp_4506official cnamed lightCoordsintermediary comp_4507official dnamed overlayCoordsintermediary comp_4508official enamed tintedColorintermediary comp_4509official fnamed spriteintermediary comp_4510official gnamed outlineColorintermediary comp_4511official h
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thelightCoordsrecord component.The field for themodelrecord component.private final intThe field for theoutlineColorrecord component.private final intThe field for theoverlayCoordsrecord component.private final MatrixStack.EntryThe field for theposerecord component.The field for thespriterecord component.private final SThe field for thestaterecord component.private final intThe field for thetintedColorrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionModelCommand(MatrixStack.Entry entry, Model<? super S> model, S s, int int2, int int3, int int4, @Nullable Sprite sprite, int int5) -
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.intReturns the value of thelightCoordsrecord component.model()Returns the value of themodelrecord component.intReturns the value of theoutlineColorrecord component.intReturns the value of theoverlayCoordsrecord component.pose()Returns the value of theposerecord component.sprite()Returns the value of thespriterecord component.state()Returns the value of thestaterecord component.intReturns the value of thetintedColorrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
pose
The field for theposerecord component. -
model
The field for themodelrecord component. -
state
The field for thestaterecord component. -
lightCoords
private final int lightCoordsThe field for thelightCoordsrecord component. -
overlayCoords
private final int overlayCoordsThe field for theoverlayCoordsrecord component. -
tintedColor
private final int tintedColorThe field for thetintedColorrecord component. -
sprite
The field for thespriterecord component. -
outlineColor
private final int outlineColorThe field for theoutlineColorrecord component.
-
-
Constructor Details
-
ModelCommand
-
-
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 '=='. -
pose
Returns the value of theposerecord component.- Returns:
- the value of the
poserecord component
-
model
Returns the value of themodelrecord component.- Returns:
- the value of the
modelrecord component
-
state
Returns the value of thestaterecord component.- Returns:
- the value of the
staterecord component
-
lightCoords
public int lightCoords()Returns the value of thelightCoordsrecord component.- Returns:
- the value of the
lightCoordsrecord component
-
overlayCoords
public int overlayCoords()Returns the value of theoverlayCoordsrecord component.- Returns:
- the value of the
overlayCoordsrecord component
-
tintedColor
public int tintedColor()Returns the value of thetintedColorrecord component.- Returns:
- the value of the
tintedColorrecord component
-
sprite
Returns the value of thespriterecord component.- Returns:
- the value of the
spriterecord component
-
outlineColor
public int outlineColor()Returns the value of theoutlineColorrecord component.- Returns:
- the value of the
outlineColorrecord component
-