Record Class PostChainConfig.TargetInput

java.lang.Object
java.lang.Record
net.minecraft.client.renderer.PostChainConfig.TargetInput
All Implemented Interfaces:
PostChainConfig.Input
Enclosing class:
PostChainConfig

public static record PostChainConfig.TargetInput(String samplerName, ResourceLocation targetId, boolean useDepthBuffer, boolean bilinear) extends Record implements PostChainConfig.Input
  • Field Details

    • samplerName

      private final String samplerName
      The field for the samplerName record component.
    • targetId

      private final ResourceLocation targetId
      The field for the targetId record component.
    • useDepthBuffer

      private final boolean useDepthBuffer
      The field for the useDepthBuffer record component.
    • bilinear

      private final boolean bilinear
      The field for the bilinear record component.
    • CODEC

      public static final com.mojang.serialization.Codec<PostChainConfig.TargetInput> CODEC
  • Constructor Details

    • TargetInput

      public TargetInput(String samplerName, ResourceLocation targetId, boolean useDepthBuffer, boolean bilinear)
      Creates an instance of a TargetInput record class.
      Parameters:
      samplerName - the value for the samplerName record component
      targetId - the value for the targetId record component
      useDepthBuffer - the value for the useDepthBuffer record component
      bilinear - the value for the bilinear record component
  • Method Details

    • referencedTargets

      public Set<ResourceLocation> referencedTargets()
      Specified by:
      referencedTargets in interface PostChainConfig.Input
    • 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.
    • samplerName

      public String samplerName()
      Returns the value of the samplerName record component.
      Specified by:
      samplerName in interface PostChainConfig.Input
      Returns:
      the value of the samplerName record component
    • targetId

      public ResourceLocation targetId()
      Returns the value of the targetId record component.
      Returns:
      the value of the targetId record component
    • useDepthBuffer

      public boolean useDepthBuffer()
      Returns the value of the useDepthBuffer record component.
      Returns:
      the value of the useDepthBuffer record component
    • bilinear

      public boolean bilinear()
      Returns the value of the bilinear record component.
      Returns:
      the value of the bilinear record component