
EclipseUI
A modern config and config UI lib.
37K загрузок13 подписчиковMITfabricneoforge
Обновлён 23 июня 2026 г. · опубликован 4 февраля 2026 г.
EclipseUI
A lightweight, themeable config screen library for Minecraft mods.
Features
- Fabric & NeoForge support.
- Two themes: Faithful (vanilla style) & Modern (flat design)
- Rich widgets: toggles, sliders, dropdowns, color pickers, text fields
- ModMenu integration out of the box
Installation
For Mod Developers
Add EclipseUI to your mod by following the Usage Guide.
Quick dependency setup:
repositories {
maven("https://jitpack.io")
}
dependencies {
// Fabric
modImplementation("com.github.coredex-source.EclipseUI:EclipseUI-fabric:v1.0.2")
// NeoForge
implementation("com.github.coredex-source.EclipseUI:EclipseUI-neoforge:v1.0.2")
}
See the full Usage Guide for complete setup instructions and examples.
Quick Start
EclipseUI.configScreen()
.title(Component.literal("My Mod Config"))
.parent(parent)
.theme(Theme.MODERN)
.category(cat -> cat
.name(Component.literal("General"))
.toggle(t -> t
.name(Component.literal("Enable Feature"))
.binding(() -> config.enabled, v -> config.enabled = v)
.defaultValue(true)
)
.slider(s -> s
.name(Component.literal("Range"))
.range(0, 100, 1)
.bindingInt(() -> config.range, v -> config.range = v)
.defaultValue(50)
)
)
.build();
Documentation
- Usage Guide - Complete guide on integrating EclipseUI into your mod
- GitHub Issues - Report bugs or request features
License
MIT License
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 1.0.5+mc26.3-snapshot-1-fabric | Бета | 26.3-snapshot-1, 26.3-snapshot-2 | fabric | 23 июня 2026 г. | .jar (1.4 МБ) |
| 1.0.5+mc26.2-rc-2 | Бета | 26.2-rc-2, 26.2 | neoforge | 14 июня 2026 г. | .jar (1.4 МБ) |
| 1.0.5+mc26.2-rc-2 | Бета | 26.2-rc-2, 26.2 | fabric | 14 июня 2026 г. | .jar (1.4 МБ) |
| 1.0.5+mc26.2-pre-4 | Бета | 26.2-pre-4 | fabric | 5 июня 2026 г. | .jar (1.4 МБ) |
| 1.0.5+mc26.2-snapshot-2 | Бета | 26.2-snapshot-2, 26.2-snapshot-3, 26.2-snapshot-4, 26.2-snapshot-5 | fabric | 9 апреля 2026 г. | .jar (1.4 МБ) |
| 1.0.4+mc26.1 | Бета | 26.1, 26.1.1, 26.1.2 | neoforge | 28 марта 2026 г. | .jar (1.4 МБ) |
| 1.0.4+mc26.1 | Бета | 26.1, 26.1.1, 26.1.2 | fabric | 28 марта 2026 г. | .jar (1.4 МБ) |
| 1.0.3+mc26.1 | Бета | 26.1 | neoforge | 27 марта 2026 г. | .jar (1.4 МБ) |
| 1.0.3+mc26.1 | Бета | 26.1 | fabric | 27 марта 2026 г. | .jar (1.4 МБ) |
| 1.0.2+mc26.1 | Бета | 26.1 | neoforge | 27 марта 2026 г. | .jar (1.4 МБ) |
| 1.0.2+mc26.1 | Бета | 26.1 | fabric | 27 марта 2026 г. | .jar (1.4 МБ) |
| 1.0.0+mc1.21.11 | Бета | 1.21.11 | neoforge | 4 февраля 2026 г. | .jar (1.4 МБ) |
| 1.0.0+mc1.21.11 | Бета | 1.21.11 | fabric | 4 февраля 2026 г. | .jar (1.4 МБ) |
Комментарии
Загружаем…