Class BiomeTemperature

java.lang.Object
cz.jeme.bestium.api.util.BiomeTemperature

public final class BiomeTemperature extends Object
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 Details

    • COLD

      public static final org.apache.commons.lang3.DoubleRange COLD
      Cold biome temperatures.
    • TEMPERATE

      public static final org.apache.commons.lang3.DoubleRange TEMPERATE
      Temperate biome temperatures.
    • WARM

      public static final org.apache.commons.lang3.DoubleRange WARM
      Warm biome temperatures.