Record Class CustomGuiRendererState

java.lang.Object
java.lang.Record
com.hammy275.immersivemc.client.model.CustomGuiRendererState
All Implemented Interfaces:
net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState, net.minecraft.client.gui.render.state.ScreenArea

public record CustomGuiRendererState(int x0, int x1, int y0, int y1, float scale, net.minecraft.client.gui.navigation.ScreenRectangle scissorArea, net.minecraft.client.gui.navigation.ScreenRectangle bounds, BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource> renderer) extends Record implements net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState
  • Field Summary

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

    IDENTITY_POSE
  • Constructor Summary

    Constructors
    Constructor
    Description
    CustomGuiRendererState(double x0, double x1, double y0, double y1, float scale, net.minecraft.client.gui.navigation.ScreenRectangle scissorArea, BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource> renderer)
     
    CustomGuiRendererState(int x0, int x1, int y0, int y1, float scale, net.minecraft.client.gui.navigation.ScreenRectangle scissorArea, net.minecraft.client.gui.navigation.ScreenRectangle bounds, BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource> renderer)
    Creates an instance of a CustomGuiRendererState record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.client.gui.navigation.ScreenRectangle
    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.
    BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource>
    Returns the value of the renderer record component.
    float
    Returns the value of the scale record component.
    net.minecraft.client.gui.navigation.ScreenRectangle
    Returns the value of the scissorArea 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
  • Constructor Details

    • CustomGuiRendererState

      public CustomGuiRendererState(double x0, double x1, double y0, double y1, float scale, net.minecraft.client.gui.navigation.ScreenRectangle scissorArea, BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource> renderer)
    • CustomGuiRendererState

      public CustomGuiRendererState(int x0, int x1, int y0, int y1, float scale, net.minecraft.client.gui.navigation.ScreenRectangle scissorArea, net.minecraft.client.gui.navigation.ScreenRectangle bounds, BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource> renderer)
      Creates an instance of a CustomGuiRendererState record class.
      Parameters:
      x0 - the value for the x0 record component
      x1 - the value for the x1 record component
      y0 - the value for the y0 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
      renderer - the value for the renderer 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.
    • x0

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

      public int y0()
      Returns the value of the y0 record component.
      Specified by:
      y0 in interface net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState
      Returns:
      the value of the y0 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.pip.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 net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState
      Returns:
      the value of the scale record component
    • scissorArea

      public net.minecraft.client.gui.navigation.ScreenRectangle scissorArea()
      Returns the value of the scissorArea record component.
      Specified by:
      scissorArea in interface net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState
      Returns:
      the value of the scissorArea record component
    • bounds

      public net.minecraft.client.gui.navigation.ScreenRectangle bounds()
      Returns the value of the bounds record component.
      Specified by:
      bounds in interface net.minecraft.client.gui.render.state.ScreenArea
      Returns:
      the value of the bounds record component
    • renderer

      public BiConsumer<com.mojang.blaze3d.vertex.PoseStack,net.minecraft.client.renderer.MultiBufferSource.BufferSource> renderer()
      Returns the value of the renderer record component.
      Returns:
      the value of the renderer record component