Record Class Biome.ClimateSettings

java.lang.Object
java.lang.Record
net.minecraft.world.level.biome.Biome.ClimateSettings
Enclosing class:
Biome

public static record Biome.ClimateSettings(boolean hasPrecipitation, float temperature, Biome.TemperatureModifier temperatureModifier, float downfall) extends Record
  • Field Details

    • hasPrecipitation

      private final boolean hasPrecipitation
      The field for the hasPrecipitation record component.
    • temperature

      private final float temperature
      The field for the temperature record component.
    • temperatureModifier

      private final Biome.TemperatureModifier temperatureModifier
      The field for the temperatureModifier record component.
    • downfall

      private final float downfall
      The field for the downfall record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<Biome.ClimateSettings> CODEC
  • Constructor Details

    • ClimateSettings

      public ClimateSettings(boolean hasPrecipitation, float temperature, Biome.TemperatureModifier temperatureModifier, float downfall)
      Creates an instance of a ClimateSettings record class.
      Parameters:
      hasPrecipitation - the value for the hasPrecipitation record component
      temperature - the value for the temperature record component
      temperatureModifier - the value for the temperatureModifier record component
      downfall - the value for the downfall 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.
    • hasPrecipitation

      public boolean hasPrecipitation()
      Returns the value of the hasPrecipitation record component.
      Returns:
      the value of the hasPrecipitation record component
    • temperature

      public float temperature()
      Returns the value of the temperature record component.
      Returns:
      the value of the temperature record component
    • temperatureModifier

      public Biome.TemperatureModifier temperatureModifier()
      Returns the value of the temperatureModifier record component.
      Returns:
      the value of the temperatureModifier record component
    • downfall

      public float downfall()
      Returns the value of the downfall record component.
      Returns:
      the value of the downfall record component