Record Class DensityFunctions.Noise

java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.DensityFunctions.Noise
All Implemented Interfaces:
DensityFunction, DensityFunction.SimpleFunction
Enclosing class:
DensityFunctions

protected static record DensityFunctions.Noise(Holder<NormalNoise.NoiseParameters> noiseData, @Nullable NormalNoise noise, double xzScale, double yScale) extends Record implements DensityFunction.SimpleFunction
  • Field Details

    • noiseData

      private final Holder<NormalNoise.NoiseParameters> noiseData
      The field for the noiseData record component.
    • noise

      @Nullable private final NormalNoise noise
      The field for the noise record component.
    • xzScale

      private final double xzScale
      The field for the xzScale record component.
    • yScale

      private final double yScale
      The field for the yScale record component.
    • DATA_CODEC

      public static final com.mojang.serialization.MapCodec<DensityFunctions.Noise> DATA_CODEC
    • CODEC

      public static final com.mojang.serialization.Codec<DensityFunctions.Noise> CODEC
  • Constructor Details

    • Noise

      protected Noise(Holder<NormalNoise.NoiseParameters> noiseData, @Nullable NormalNoise noise, double xzScale, double yScale)
      Creates an instance of a Noise record class.
      Parameters:
      noiseData - the value for the noiseData record component
      noise - the value for the noise record component
      xzScale - the value for the xzScale record component
      yScale - the value for the yScale record component
  • Method Details

    • createUnseeded

      public static DensityFunctions.Noise createUnseeded(Holder<NormalNoise.NoiseParameters> p_208802_, @Deprecated double p_208803_, double p_208804_)
    • compute

      public double compute(DensityFunction.FunctionContext p_208800_)
      Specified by:
      compute in interface DensityFunction
    • minValue

      public double minValue()
      Specified by:
      minValue in interface DensityFunction
    • maxValue

      public double maxValue()
      Specified by:
      maxValue in interface DensityFunction
    • codec

      public com.mojang.serialization.Codec<? extends DensityFunction> codec()
      Specified by:
      codec in interface DensityFunction
    • 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.
    • noiseData

      public Holder<NormalNoise.NoiseParameters> noiseData()
      Returns the value of the noiseData record component.
      Returns:
      the value of the noiseData record component
    • noise

      @Nullable public NormalNoise noise()
      Returns the value of the noise record component.
      Returns:
      the value of the noise record component
    • xzScale

      public double xzScale()
      Returns the value of the xzScale record component.
      Returns:
      the value of the xzScale record component
    • yScale

      public double yScale()
      Returns the value of the yScale record component.
      Returns:
      the value of the yScale record component