File Details
corecurriculum-0.1.24.jar
- R
- Feb 17, 2026
- 231.84 KB
- 61
- 1.21.1
- Fabric
File Name
corecurriculum-0.1.24.jar
Supported Versions
- 1.21.1
Curse Maven Snippet
v0.1.24 — Two fixes in SplashOverlayMixin.java:
- Progress bar now fades with the overlay — Captures vanilla's fade alpha from redirectFill and applies it to both the track and fill colors. Also early-returns when alpha reaches 0 so it doesn't draw invisible rectangles.
- Progress bar now reaches 100% — Removed the double-smoothing (visualProgress lerp). Vanilla already applies an EMA (progress = progress * 0.95 + actual * 0.05), so we use progress directly instead of adding a second slower animation on top.

