Interface BiomeAttributes
-
public interface BiomeAttributes
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
BiomeAttributes.Factory
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description float
altitude()
Gets the altitude.float
humidity()
Get the humidity.static BiomeAttributes
of(float temperature, float humidity, float altitude, float weirdness, float offset)
float
offset()
Gets the offset.float
temperature()
Gets the temperature.float
weirdness()
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
-2
to2
.- Returns:
- temperature
-
humidity
float humidity()
Get the humidity.In Vanilla Minecraft, this is capped between
-2
to2
.- Returns:
- humidity
-
altitude
float altitude()
Gets the altitude.In Vanilla Minecraft, this is capped between
-2
to2
.- Returns:
- altitude
-
weirdness
float weirdness()
Gets the weirdness.In Vanilla Minecraft, this is capped between
-2
to2
.- Returns:
- weirdness
-
offset
float offset()
Gets the offset.In Vanilla Minecraft, this is capped between
0
to1
.- Returns:
- offset
-
-