Climate Settings
ClimateSettings is part of the wrapper api in Wyck and
is a wrapper that is specifically tied to biomes.
It is used to define the climate settings for a biome, which includes temperature, humidity, and other related properties.
Example Usage
Section titled “Example Usage”import dev.wyck.wrapper.biome.ClimateSettings;
import dev.wyck.wrapper.biome.TemperatureModifier;
public class Example {
public void example() {
ClimateSettings.builder()
.downfall(0.5f)
.temperature(0.14f)
.temperatureModifier(TemperatureModifier.FROZEN)
.hasPrecipitation(true)
.build();
}
}