Interface BiomeAttributes
-
public interface BiomeAttributes
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceBiomeAttributes.Factory
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description floataltitude()Gets the altitude.floathumidity()Get the humidity.static BiomeAttributesof(float temperature, float humidity, float altitude, float weirdness, float offset)floatoffset()Gets the offset.floattemperature()Gets the temperature.floatweirdness()Gets the weirdness.
-
-
-
Method Detail
-
of
static BiomeAttributes of(float temperature, float humidity, float altitude, float weirdness, float offset)
-
temperature
float temperature()
Gets the temperature.In Vanilla Minecraft, this is capped between
-2to2.- Returns:
- temperature
-
humidity
float humidity()
Get the humidity.In Vanilla Minecraft, this is capped between
-2to2.- Returns:
- humidity
-
altitude
float altitude()
Gets the altitude.In Vanilla Minecraft, this is capped between
-2to2.- Returns:
- altitude
-
weirdness
float weirdness()
Gets the weirdness.In Vanilla Minecraft, this is capped between
-2to2.- Returns:
- weirdness
-
offset
float offset()
Gets the offset.In Vanilla Minecraft, this is capped between
0to1.- Returns:
- offset
-
-