Back to mods
EclipseUI project artwork

Modrinth · Minecraft mod

EclipseUI

A modern config and config UI lib.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which EclipseUI release should I use?

Updated 14 days ago
beta file 1.0.5+mc26.3-snapshot-8-fabric
Game version 26.3-snapshot-8
Loader Fabric

EclipseUI 1.0.5+mc26.3-snapshot-8-fabric targets 26.3-snapshot-8 with Fabric. It must be installed on the client. Do not install it on the dedicated server. All 1 required mods have matching files.

Where it goes

Is EclipseUI required on the client, server, or both?

It must be installed on the client. Do not install it on the dedicated server.

Client Required
Dedicated server Not supported
Loader for this release Fabric
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

This file is marked client-only.

What else does EclipseUI 1.0.5+mc26.3-snapshot-8-fabric need?

1.0.5+mc26.3-snapshot-8-fabric. Change the file and its required mods may change too.

All 1 required mods have matching files

Install Fabric API first. We found matching files for this game-version and loader setup.

Fabric API Needed by EclipseUI 1.0.5+mc26.3-snapshot-8-fabric
required
Matching file found Matched file: 0.157.1+26.3

We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add EclipseUI without breaking your instance.

Built for EclipseUI 1.0.5+mc26.3-snapshot-8-fabric. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use 1.0.5+mc26.3-snapshot-8-fabric. It targets 26.3-snapshot-8 with Fabric; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install Fabric API first. We found matching files for this game-version and loader setup.

  3. 03

    Put it on the correct side

    It must be installed on the client. Do not install it on the dedicated server.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside 1.0.5+mc26.3-snapshot-8-fabric. It opens that exact file at the source.

About this project

What does EclipseUI add?

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

License

MIT License

Project description from Modrinth.

Pick your setup

EclipseUI by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

21 available setups

Showing the newest 12 of 15 game versions. Older files are in the list below.

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

EclipseUI versions and loaders

14 of 14 releases match

Looking for an older file? The official Modrinth project page is in Resources.