Record Class GuiBookModelRenderState

java.lang.Object
java.lang.Record
net.minecraft.client.gui.render.state.pip.GuiBookModelRenderState
All Implemented Interfaces:
PictureInPictureRenderState, ScreenArea

public record GuiBookModelRenderState(BookModel bookModel, ResourceLocation texture, float open, float flip, int x0, int y0, int x1, int y1, float scale, @Nullable ScreenRectangle scissorArea, @Nullable ScreenRectangle bounds) extends Record implements PictureInPictureRenderState
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final BookModel
    The field for the bookModel record component.
    private final ScreenRectangle
    The field for the bounds record component.
    private final float
    The field for the flip record component.
    private final float
    The field for the open record component.
    private final float
    The field for the scale record component.
    private final ScreenRectangle
    The field for the scissorArea record component.
    private final ResourceLocation
    The field for the texture record component.
    private final int
    The field for the x0 record component.
    private final int
    The field for the x1 record component.
    private final int
    The field for the y0 record component.
    private final int
    The field for the y1 record component.

    Fields inherited from interface net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState

    IDENTITY_POSE
  • Constructor Summary

    Constructors
    Constructor
    Description
    GuiBookModelRenderState(BookModel p_415797_, ResourceLocation p_415682_, float p_415696_, float p_415739_, int p_416486_, int p_416556_, int p_416330_, int p_416572_, float p_416303_, ScreenRectangle p_415924_)
     
    GuiBookModelRenderState(BookModel bookModel, ResourceLocation texture, float open, float flip, int x0, int y0, int x1, int y1, float scale, ScreenRectangle scissorArea, ScreenRectangle bounds)
    Creates an instance of a GuiBookModelRenderState record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the bookModel record component.
    Returns the value of the bounds record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    float
    Returns the value of the flip record component.
    final int
    Returns a hash code value for this object.
    float
    Returns the value of the open record component.
    float
    Returns the value of the scale record component.
    Returns the value of the scissorArea record component.
    Returns the value of the texture record component.
    final String
    Returns a string representation of this record class.
    int
    x0()
    Returns the value of the x0 record component.
    int
    x1()
    Returns the value of the x1 record component.
    int
    y0()
    Returns the value of the y0 record component.
    int
    y1()
    Returns the value of the y1 record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState

    pose
  • Field Details

    • bookModel

      private final BookModel bookModel
      The field for the bookModel record component.
    • texture

      private final ResourceLocation texture
      The field for the texture record component.
    • open

      private final float open
      The field for the open record component.
    • flip

      private final float flip
      The field for the flip record component.
    • x0

      private final int x0
      The field for the x0 record component.
    • y0

      private final int y0
      The field for the y0 record component.
    • x1

      private final int x1
      The field for the x1 record component.
    • y1

      private final int y1
      The field for the y1 record component.
    • scale

      private final float scale
      The field for the scale record component.
    • scissorArea

      @Nullable private final ScreenRectangle scissorArea
      The field for the scissorArea record component.
    • bounds

      @Nullable private final ScreenRectangle bounds
      The field for the bounds record component.
  • Constructor Details

    • GuiBookModelRenderState

      public GuiBookModelRenderState(BookModel p_415797_, ResourceLocation p_415682_, float p_415696_, float p_415739_, int p_416486_, int p_416556_, int p_416330_, int p_416572_, float p_416303_, @Nullable ScreenRectangle p_415924_)
    • GuiBookModelRenderState

      public GuiBookModelRenderState(BookModel bookModel, ResourceLocation texture, float open, float flip, int x0, int y0, int x1, int y1, float scale, @Nullable ScreenRectangle scissorArea, @Nullable ScreenRectangle bounds)
      Creates an instance of a GuiBookModelRenderState record class.
      Parameters:
      bookModel - the value for the bookModel record component
      texture - the value for the texture record component
      open - the value for the open record component
      flip - the value for the flip record component
      x0 - the value for the x0 record component
      y0 - the value for the y0 record component
      x1 - the value for the x1 record component
      y1 - the value for the y1 record component
      scale - the value for the scale record component
      scissorArea - the value for the scissorArea record component
      bounds - the value for the bounds record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • bookModel

      public BookModel bookModel()
      Returns the value of the bookModel record component.
      Returns:
      the value of the bookModel record component
    • texture

      public ResourceLocation texture()
      Returns the value of the texture record component.
      Returns:
      the value of the texture record component
    • open

      public float open()
      Returns the value of the open record component.
      Returns:
      the value of the open record component
    • flip

      public float flip()
      Returns the value of the flip record component.
      Returns:
      the value of the flip record component
    • x0

      public int x0()
      Returns the value of the x0 record component.
      Specified by:
      x0 in interface PictureInPictureRenderState
      Returns:
      the value of the x0 record component
    • y0

      public int y0()
      Returns the value of the y0 record component.
      Specified by:
      y0 in interface PictureInPictureRenderState
      Returns:
      the value of the y0 record component
    • x1

      public int x1()
      Returns the value of the x1 record component.
      Specified by:
      x1 in interface PictureInPictureRenderState
      Returns:
      the value of the x1 record component
    • y1

      public int y1()
      Returns the value of the y1 record component.
      Specified by:
      y1 in interface PictureInPictureRenderState
      Returns:
      the value of the y1 record component
    • scale

      public float scale()
      Returns the value of the scale record component.
      Specified by:
      scale in interface PictureInPictureRenderState
      Returns:
      the value of the scale record component
    • scissorArea

      @Nullable public ScreenRectangle scissorArea()
      Returns the value of the scissorArea record component.
      Specified by:
      scissorArea in interface PictureInPictureRenderState
      Returns:
      the value of the scissorArea record component
    • bounds

      @Nullable public ScreenRectangle bounds()
      Returns the value of the bounds record component.
      Specified by:
      bounds in interface ScreenArea
      Returns:
      the value of the bounds record component