Thermoo

Temperature and Environment library mod for Fabric and Quilt. Used by Frostiful and Scorchful.

File Details

thermoo-7.0.0-sources.jar

  • R
  • Jun 27, 2025
  • 130.57 KB
  • 5
  • 1.21.8+2
  • Fabric + 1

File Name

thermoo-7.0.0-sources.jar

Supported Versions

  • 1.21.8
  • 1.21.7
  • 1.21.6

Curse Maven Snippet

Fabric

modImplementation "curse.maven:thermoo-846544:6700891"

Quilt

modImplementation "curse.maven:thermoo-846544:6700891"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Thermoo 7 for Minecraft 1.21.6

This update brings Thermoo to 1.21.6. Per the LTS policy, this release also represents the end of support for 1.21.5. This version will likely also work on 1.21.7, when that version releases.

There is one notable breaking change in this update: The status bar overlay events have been refactored to reduce complexity, prevent errors, and be more extensible for future updates (if needed). See #82 for details.

To summarize, the main changes look something like this:

-StatusBarOverlayRenderEvents.AFTER_HEALTH_BAR.register(
-  (DrawContext ctx, PlayerEntity player, Vector2i[] positions, int displayHealth, int maxDisplayHealth)-> {
-    // rendering code
- });

+StatusBarOverlayRenderEvents.AFTER_HEALTH_BAR.register(
+  (DrawContext ctx, PlayerEntity player, HeartBarContext heartBarContext) -> {
+    SequencedCollection<Vector2i> positions = heartBarContext.positions();
+    int displayHealth = heartBarContext.currentDisplayHalfHearts();
+    int maxDisplayHealth = heartBarContext.maxDisplayHalfHearts();
+
+    // rendering code
+ });