Interface BiomeParameterPoint


public interface BiomeParameterPoint
Represents the biome noise parameters which may be passed to a world generator.
Since:
1.19.3
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Gets the continentalness of the biome at this point that is suggested by the NoiseGenerator.
    double
    Gets the depth of the biome at this point that is suggested by the NoiseGenerator.
    double
    Gets the erosion of the biome at this point that is suggested by the NoiseGenerator.
    double
    Gets the humidity of the biome at this point that is suggested by the NoiseGenerator.
    double
    Gets the maximum continentalness that is possible.
    double
    Gets the maximum depth that is possible.
    double
    Gets the maximum erosion that is possible.
    double
    Gets the maximum humidity that is possible.
    double
    Gets the maximum temperature that is possible.
    double
    Gets the maximum weirdness that is possible.
    double
    Gets the minimum continentalness that is possible.
    double
    Gets the minimum depth that is possible.
    double
    Gets the minimum erosion that is possible.
    double
    Gets the minimum humidity that is possible.
    double
    Gets the minimum temperature that is possible.
    double
    Gets the minimum weirdness that is possible.
    double
    Gets the temperature of the biome at this point that is suggested by the NoiseGenerator.
    double
    Gets the weirdness of the biome at this point that is suggested by the NoiseGenerator.
  • Method Details

    • getTemperature

      double getTemperature()
      Gets the temperature of the biome at this point that is suggested by the NoiseGenerator.
      Returns:
      The temperature of the biome at this point
      Since:
      1.19.3
    • getMaxTemperature

      double getMaxTemperature()
      Gets the maximum temperature that is possible.
      Returns:
      The maximum temperature
      Since:
      1.19.3
    • getMinTemperature

      double getMinTemperature()
      Gets the minimum temperature that is possible.
      Returns:
      The minimum temperature
      Since:
      1.19.3
    • getHumidity

      double getHumidity()
      Gets the humidity of the biome at this point that is suggested by the NoiseGenerator.
      Returns:
      The humidity of the biome at this point
      Since:
      1.19.3
    • getMaxHumidity

      double getMaxHumidity()
      Gets the maximum humidity that is possible.
      Returns:
      The maximum humidity
      Since:
      1.19.3
    • getMinHumidity

      double getMinHumidity()
      Gets the minimum humidity that is possible.
      Returns:
      The minimum humidity
      Since:
      1.19.3
    • getContinentalness

      double getContinentalness()
      Gets the continentalness of the biome at this point that is suggested by the NoiseGenerator.
      Returns:
      The continentalness of the biome at this point
      Since:
      1.19.3
    • getMaxContinentalness

      double getMaxContinentalness()
      Gets the maximum continentalness that is possible.
      Returns:
      The maximum continentalness
      Since:
      1.19.3
    • getMinContinentalness

      double getMinContinentalness()
      Gets the minimum continentalness that is possible.
      Returns:
      The minimum continentalness
      Since:
      1.19.3
    • getErosion

      double getErosion()
      Gets the erosion of the biome at this point that is suggested by the NoiseGenerator.
      Returns:
      The erosion of the biome at this point
      Since:
      1.19.3
    • getMaxErosion

      double getMaxErosion()
      Gets the maximum erosion that is possible.
      Returns:
      The maximum erosion
      Since:
      1.19.3
    • getMinErosion

      double getMinErosion()
      Gets the minimum erosion that is possible.
      Returns:
      The minimum erosion
      Since:
      1.19.3
    • getDepth

      double getDepth()
      Gets the depth of the biome at this point that is suggested by the NoiseGenerator.
      Returns:
      The depth of the biome at this point
      Since:
      1.19.3
    • getMaxDepth

      double getMaxDepth()
      Gets the maximum depth that is possible.
      Returns:
      The maximum depth
      Since:
      1.19.3
    • getMinDepth

      double getMinDepth()
      Gets the minimum depth that is possible.
      Returns:
      The minimum depth
      Since:
      1.19.3
    • getWeirdness

      double getWeirdness()
      Gets the weirdness of the biome at this point that is suggested by the NoiseGenerator.
      Returns:
      The weirdness of the biome at this point
      Since:
      1.19.3
    • getMaxWeirdness

      double getMaxWeirdness()
      Gets the maximum weirdness that is possible.
      Returns:
      The maximum weirdness
      Since:
      1.19.3
    • getMinWeirdness

      double getMinWeirdness()
      Gets the minimum weirdness that is possible.
      Returns:
      The minimum weirdness
      Since:
      1.19.3