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 Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<Biome.ClimateSettings> private final floatThe field for thedownfallrecord component.private final booleanThe field for thehasPrecipitationrecord component.private final floatThe field for thetemperaturerecord component.private final Biome.TemperatureModifierThe field for thetemperatureModifierrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionClimateSettings(boolean hasPrecipitation, float temperature, Biome.TemperatureModifier temperatureModifier, float downfall) Creates an instance of aClimateSettingsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatdownfall()Returns the value of thedownfallrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of thehasPrecipitationrecord component.floatReturns the value of thetemperaturerecord component.Returns the value of thetemperatureModifierrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
hasPrecipitation
private final boolean hasPrecipitationThe field for thehasPrecipitationrecord component. -
temperature
private final float temperatureThe field for thetemperaturerecord component. -
temperatureModifier
The field for thetemperatureModifierrecord component. -
downfall
private final float downfallThe field for thedownfallrecord component. -
CODEC
-
-
Constructor Details
-
ClimateSettings
public ClimateSettings(boolean hasPrecipitation, float temperature, Biome.TemperatureModifier temperatureModifier, float downfall) Creates an instance of aClimateSettingsrecord class.- Parameters:
hasPrecipitation- the value for thehasPrecipitationrecord componenttemperature- the value for thetemperaturerecord componenttemperatureModifier- the value for thetemperatureModifierrecord componentdownfall- the value for thedownfallrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
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 withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
hasPrecipitation
public boolean hasPrecipitation()Returns the value of thehasPrecipitationrecord component.- Returns:
- the value of the
hasPrecipitationrecord component
-
temperature
public float temperature()Returns the value of thetemperaturerecord component.- Returns:
- the value of the
temperaturerecord component
-
temperatureModifier
Returns the value of thetemperatureModifierrecord component.- Returns:
- the value of the
temperatureModifierrecord component
-
downfall
public float downfall()Returns the value of thedownfallrecord component.- Returns:
- the value of the
downfallrecord component
-