Package cz.jeme.bestium.api.util
Class BiomeTemperature
java.lang.Object
cz.jeme.bestium.api.util.BiomeTemperature
Commonly used temperature ranges for Minecraft biomes.
These constants provide a loose approximation of Mojang's internal biome temperature distribution. They can be used for rule-based logic, such as determining spawn behavior or applying variants.
Warning: These temperature bands overlap at boundaries, meaning a temperature value equal to a boundary (e.g., 0.5) will match multiple ranges. If you rely on exclusive classification, you should implement custom logic or adjust the bounds accordingly.
Note: These are not official categories from Mojang, but they somewhat reflect the general temperature groups used in vanilla Minecraft: cold, temperate, and warm biomes.
-
Field Summary
Fields -
Method Summary
-
Field Details
-
COLD
public static final org.apache.commons.lang3.DoubleRange COLDCold biome temperatures. -
TEMPERATE
public static final org.apache.commons.lang3.DoubleRange TEMPERATETemperate biome temperatures. -
WARM
public static final org.apache.commons.lang3.DoubleRange WARMWarm biome temperatures.
-