Record Class NameTagFeatureRenderer.Submit

java.lang.Object
java.lang.Record
net.minecraft.client.renderer.feature.NameTagFeatureRenderer.Submit
All Implemented Interfaces:
SubmitNode, TranslucentSubmit
Enclosing class:
NameTagFeatureRenderer

public static record NameTagFeatureRenderer.Submit(Matrix4fc pose, float x, float y, Component text, int lightCoords, int color, int backgroundColor, Font.DisplayMode displayMode) extends Record implements TranslucentSubmit
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the backgroundColor record component.
    private final int
    The field for the color record component.
    private final Font.DisplayMode
    The field for the displayMode record component.
    private final int
    The field for the lightCoords record component.
    private final Matrix4fc
    The field for the pose record component.
    private final Component
    The field for the text record component.
    private final float
    The field for the x record component.
    private final float
    The field for the y record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Submit(Matrix4fc pose, float x, float y, Component text, int lightCoords, int color, int backgroundColor, Font.DisplayMode displayMode)
    Creates an instance of a Submit record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the backgroundColor record component.
    int
    Returns the value of the color record component.
    Returns the value of the displayMode record component.
    float
     
    final boolean
    Indicates whether some other object is "equal to" this one.
     
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the lightCoords record component.
    Returns the value of the pose record component.
    Returns the value of the text record component.
    final String
    Returns a string representation of this record class.
    float
    x()
    Returns the value of the x record component.
    float
    y()
    Returns the value of the y record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • pose

      private final Matrix4fc pose
      The field for the pose record component.
    • x

      private final float x
      The field for the x record component.
    • y

      private final float y
      The field for the y record component.
    • text

      private final Component text
      The field for the text record component.
    • lightCoords

      private final int lightCoords
      The field for the lightCoords record component.
    • color

      private final int color
      The field for the color record component.
    • backgroundColor

      private final int backgroundColor
      The field for the backgroundColor record component.
    • displayMode

      private final Font.DisplayMode displayMode
      The field for the displayMode record component.
  • Constructor Details

    • Submit

      public Submit(Matrix4fc pose, float x, float y, Component text, int lightCoords, int color, int backgroundColor, Font.DisplayMode displayMode)
      Creates an instance of a Submit record class.
      Parameters:
      pose - the value for the pose record component
      x - the value for the x record component
      y - the value for the y record component
      text - the value for the text record component
      lightCoords - the value for the lightCoords record component
      color - the value for the color record component
      backgroundColor - the value for the backgroundColor record component
      displayMode - the value for the displayMode record component
  • Method Details

    • distanceToCameraSq

      public float distanceToCameraSq()
      Specified by:
      distanceToCameraSq in interface TranslucentSubmit
    • featureType

      Specified by:
      featureType in interface SubmitNode
      Specified by:
      featureType in interface TranslucentSubmit
    • 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 the compare method from their corresponding wrapper classes.
      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.
    • pose

      public Matrix4fc pose()
      Returns the value of the pose record component.
      Returns:
      the value of the pose record component
    • x

      public float x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public float y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • text

      public Component text()
      Returns the value of the text record component.
      Returns:
      the value of the text record component
    • lightCoords

      public int lightCoords()
      Returns the value of the lightCoords record component.
      Returns:
      the value of the lightCoords record component
    • color

      public int color()
      Returns the value of the color record component.
      Returns:
      the value of the color record component
    • backgroundColor

      public int backgroundColor()
      Returns the value of the backgroundColor record component.
      Returns:
      the value of the backgroundColor record component
    • displayMode

      public Font.DisplayMode displayMode()
      Returns the value of the displayMode record component.
      Returns:
      the value of the displayMode record component