Record Class PlayerDisplayGuiElementRenderState

java.lang.Object
java.lang.Record
net.litetex.capes.menu.preview.render.PlayerDisplayGuiElementRenderState
All Implemented Interfaces:
net.minecraft.client.gui.render.state.GuiElementRenderState, net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState

public record PlayerDisplayGuiElementRenderState(PlayerDisplayGuiModels models, PlayerDisplayGuiPayload payload, float xRotation, float yRotation, float yPivot, int x1, int y1, int x2, int y2, float scale, @Nullable net.minecraft.client.gui.ScreenRect scissorArea, @Nullable net.minecraft.client.gui.ScreenRect bounds) extends Record implements net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
  • Field Summary

    Fields inherited from interface net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState

    pose
  • Constructor Summary

    Constructors
    Constructor
    Description
    PlayerDisplayGuiElementRenderState(PlayerDisplayGuiModels models, PlayerDisplayGuiPayload payload, float xRotation, float yRotation, float yPivot, int x1, int y1, int x2, int y2, float scale, @Nullable net.minecraft.client.gui.ScreenRect screenRect)
     
    PlayerDisplayGuiElementRenderState(PlayerDisplayGuiModels models, PlayerDisplayGuiPayload payload, float xRotation, float yRotation, float yPivot, int x1, int y1, int x2, int y2, float scale, @Nullable net.minecraft.client.gui.ScreenRect scissorArea, @Nullable net.minecraft.client.gui.ScreenRect bounds)
    Creates an instance of a PlayerDisplayGuiElementRenderState record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable net.minecraft.client.gui.ScreenRect
    Returns the value of the bounds record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the value of the models record component.
    Returns the value of the payload record component.
    float
    Returns the value of the scale record component.
    @Nullable net.minecraft.client.gui.ScreenRect
    Returns the value of the scissorArea record component.
    final String
    Returns a string representation of this record class.
    int
    x1()
    Returns the value of the x1 record component.
    int
    x2()
    Returns the value of the x2 record component.
    float
    Returns the value of the xRotation record component.
    int
    y1()
    Returns the value of the y1 record component.
    int
    y2()
    Returns the value of the y2 record component.
    float
    Returns the value of the yPivot record component.
    float
    Returns the value of the yRotation 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.special.SpecialGuiElementRenderState

    pose
  • Constructor Details

    • PlayerDisplayGuiElementRenderState

      public PlayerDisplayGuiElementRenderState(PlayerDisplayGuiModels models, PlayerDisplayGuiPayload payload, float xRotation, float yRotation, float yPivot, int x1, int y1, int x2, int y2, float scale, @Nullable @Nullable net.minecraft.client.gui.ScreenRect screenRect)
    • PlayerDisplayGuiElementRenderState

      public PlayerDisplayGuiElementRenderState(PlayerDisplayGuiModels models, PlayerDisplayGuiPayload payload, float xRotation, float yRotation, float yPivot, int x1, int y1, int x2, int y2, float scale, @Nullable @Nullable net.minecraft.client.gui.ScreenRect scissorArea, @Nullable @Nullable net.minecraft.client.gui.ScreenRect bounds)
      Creates an instance of a PlayerDisplayGuiElementRenderState record class.
      Parameters:
      models - the value for the models record component
      payload - the value for the payload record component
      xRotation - the value for the xRotation record component
      yRotation - the value for the yRotation record component
      yPivot - the value for the yPivot record component
      x1 - the value for the x1 record component
      y1 - the value for the y1 record component
      x2 - the value for the x2 record component
      y2 - the value for the y2 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.
    • models

      public PlayerDisplayGuiModels models()
      Returns the value of the models record component.
      Returns:
      the value of the models record component
    • payload

      public PlayerDisplayGuiPayload payload()
      Returns the value of the payload record component.
      Returns:
      the value of the payload record component
    • xRotation

      public float xRotation()
      Returns the value of the xRotation record component.
      Returns:
      the value of the xRotation record component
    • yRotation

      public float yRotation()
      Returns the value of the yRotation record component.
      Returns:
      the value of the yRotation record component
    • yPivot

      public float yPivot()
      Returns the value of the yPivot record component.
      Returns:
      the value of the yPivot record component
    • x1

      public int x1()
      Returns the value of the x1 record component.
      Specified by:
      x1 in interface net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
      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 net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
      Returns:
      the value of the y1 record component
    • x2

      public int x2()
      Returns the value of the x2 record component.
      Specified by:
      x2 in interface net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
      Returns:
      the value of the x2 record component
    • y2

      public int y2()
      Returns the value of the y2 record component.
      Specified by:
      y2 in interface net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
      Returns:
      the value of the y2 record component
    • scale

      public float scale()
      Returns the value of the scale record component.
      Specified by:
      scale in interface net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
      Returns:
      the value of the scale record component
    • scissorArea

      @Nullable public @Nullable net.minecraft.client.gui.ScreenRect scissorArea()
      Returns the value of the scissorArea record component.
      Specified by:
      scissorArea in interface net.minecraft.client.gui.render.state.special.SpecialGuiElementRenderState
      Returns:
      the value of the scissorArea record component
    • bounds

      @Nullable public @Nullable net.minecraft.client.gui.ScreenRect bounds()
      Returns the value of the bounds record component.
      Specified by:
      bounds in interface net.minecraft.client.gui.render.state.GuiElementRenderState
      Returns:
      the value of the bounds record component