Package net.minecraft.client.renderer
Record Class SubmitNodeStorage.ModelPartSubmit
java.lang.Object
java.lang.Record
net.minecraft.client.renderer.SubmitNodeStorage.ModelPartSubmit
- Enclosing class:
SubmitNodeStorage
public static record SubmitNodeStorage.ModelPartSubmit(PoseStack.Pose pose, ModelPart modelPart, int lightCoords, int overlayCoords, @Nullable TextureAtlasSprite sprite, boolean sheeted, boolean hasFoil, int tintedColor, @Nullable ModelFeatureRenderer.CrumblingOverlay crumblingOverlay, int outlineColor)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ModelFeatureRenderer.CrumblingOverlayThe field for thecrumblingOverlayrecord component.private final booleanThe field for thehasFoilrecord component.private final intThe field for thelightCoordsrecord component.private final ModelPartThe field for themodelPartrecord component.private final intThe field for theoutlineColorrecord component.private final intThe field for theoverlayCoordsrecord component.private final PoseStack.PoseThe field for theposerecord component.private final booleanThe field for thesheetedrecord component.private final TextureAtlasSpriteThe field for thespriterecord component.private final intThe field for thetintedColorrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionModelPartSubmit(PoseStack.Pose pose, ModelPart modelPart, int lightCoords, int overlayCoords, TextureAtlasSprite sprite, boolean sheeted, boolean hasFoil, int tintedColor, ModelFeatureRenderer.CrumblingOverlay crumblingOverlay, int outlineColor) Creates an instance of aModelPartSubmitrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecrumblingOverlayrecord component.final booleanIndicates whether some other object is "equal to" this one.booleanhasFoil()Returns the value of thehasFoilrecord component.final inthashCode()Returns a hash code value for this object.intReturns the value of thelightCoordsrecord component.Returns the value of themodelPartrecord component.intReturns the value of theoutlineColorrecord component.intReturns the value of theoverlayCoordsrecord component.pose()Returns the value of theposerecord component.booleansheeted()Returns the value of thesheetedrecord component.sprite()Returns the value of thespriterecord 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. -
modelPart
The field for themodelPartrecord component. -
lightCoords
private final int lightCoordsThe field for thelightCoordsrecord component. -
overlayCoords
private final int overlayCoordsThe field for theoverlayCoordsrecord component. -
sprite
The field for thespriterecord component. -
sheeted
private final boolean sheetedThe field for thesheetedrecord component. -
hasFoil
private final boolean hasFoilThe field for thehasFoilrecord component. -
tintedColor
private final int tintedColorThe field for thetintedColorrecord component. -
crumblingOverlay
The field for thecrumblingOverlayrecord component. -
outlineColor
private final int outlineColorThe field for theoutlineColorrecord component.
-
-
Constructor Details
-
ModelPartSubmit
public ModelPartSubmit(PoseStack.Pose pose, ModelPart modelPart, int lightCoords, int overlayCoords, @Nullable TextureAtlasSprite sprite, boolean sheeted, boolean hasFoil, int tintedColor, @Nullable ModelFeatureRenderer.CrumblingOverlay crumblingOverlay, int outlineColor) Creates an instance of aModelPartSubmitrecord class.- Parameters:
pose- the value for theposerecord componentmodelPart- the value for themodelPartrecord componentlightCoords- the value for thelightCoordsrecord componentoverlayCoords- the value for theoverlayCoordsrecord componentsprite- the value for thespriterecord componentsheeted- the value for thesheetedrecord componenthasFoil- the value for thehasFoilrecord componenttintedColor- the value for thetintedColorrecord componentcrumblingOverlay- the value for thecrumblingOverlayrecord componentoutlineColor- the value for theoutlineColorrecord 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 '=='. -
pose
Returns the value of theposerecord component.- Returns:
- the value of the
poserecord component
-
modelPart
Returns the value of themodelPartrecord component.- Returns:
- the value of the
modelPartrecord 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
-
sprite
Returns the value of thespriterecord component.- Returns:
- the value of the
spriterecord component
-
sheeted
public boolean sheeted()Returns the value of thesheetedrecord component.- Returns:
- the value of the
sheetedrecord component
-
hasFoil
public boolean hasFoil()Returns the value of thehasFoilrecord component.- Returns:
- the value of the
hasFoilrecord component
-
tintedColor
public int tintedColor()Returns the value of thetintedColorrecord component.- Returns:
- the value of the
tintedColorrecord component
-
crumblingOverlay
Returns the value of thecrumblingOverlayrecord component.- Returns:
- the value of the
crumblingOverlayrecord component
-
outlineColor
public int outlineColor()Returns the value of theoutlineColorrecord component.- Returns:
- the value of the
outlineColorrecord component
-