
Lumaris
ArchivedA powerful Fabric rendering library offering clean 2D, 3D, and custom font rendering utilities. Designed to give developers a consistent, expressive visual API without the boilerplate.
72
2
72
2
Lumaris has been archived. Lumaris will not receive any further updates unless the author decides to unarchive the project.
Compatibility
Minecraft: Java Edition
1.21.11
1.21.8
Platforms
Supported environments
Client-side
Tags
Creators
Details
Licensed Trauma Attribution No Rebranding
Published 3 months ago
Lumaris
A lightweight Fabric rendering library for mod developers who want clean, reusable, and version-friendly UI/HUD rendering tools.
What Lumaris Does
Lumaris provides a canvas-style rendering API so you can draw overlays without writing repetitive low-level rendering code. It is designed as a library mod, not a gameplay/content mod.
Why You Might Want It
- Build custom HUDs and overlays faster.
- Keep rendering code readable and maintainable.
- Reuse one rendering foundation across supported Minecraft versions.
- Avoid scattered version checks by using Lumaris compatibility layers.
Core Features
- Layer-based rendering with
CanvasRenderer.registerLayer(...) - 2D quad drawing commands
- Text rendering with scaling and optional shadow
- MSDF-based text pipeline for better visual quality
- Render event hooks for underlay/overlay workflows
- Multi-version support through Stonecutter
Supported Minecraft Versions
1.21.111.21.8
Requirements
- Java
21 - Fabric Loader
0.18.4+ - Fabric API
- Fabric Language Kotlin
1.13.9+kotlin.2.3.10
Quick Usage Example
CanvasRenderer.registerLayer("example.hud", order = 100) { ctx ->
ctx.quad(12f, 12f, 140f, 30f, 0x99000000.toInt())
ctx.text("Hello Lumaris", 18f, 20f, 0xFFFFFFFF.toInt(), scale = 1f, shadow = true)
}
Important Before Downloading
- Lumaris is a dependency/library mod.
- End users should install it only when another mod requires it.
- Use the Lumaris file that matches your Minecraft version.

