Back to mods
EclipseUI project artwork

CurseForge · 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 matches 26.2 NeoForge?

Updated 14 days ago
Best match for your filters EclipseUI-neoforge-1.0.5+mc26.2
Game version 26.2, 26.2-rc-2
Loader NeoForge

EclipseUI-neoforge-1.0.5+mc26.2 targets 26.2, 26.2-rc-2 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

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

The project page does not say whether this file belongs on the client, dedicated server, or both.

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

The source does not explicitly classify this release as client-only or server-only.

What else does EclipseUI-neoforge-1.0.5+mc26.2 need?

EclipseUI-neoforge-1.0.5+mc26.2 on 26.2 NeoForge. Every mod below is checked against that same setup.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add EclipseUI without breaking your instance.

Built for EclipseUI-neoforge-1.0.5+mc26.2 on 26.2 NeoForge. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use EclipseUI-neoforge-1.0.5+mc26.2. It targets 26.2, 26.2-rc-2 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside EclipseUI-neoforge-1.0.5+mc26.2. 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

  • Usage Guide - Complete guide on integrating EclipseUI into your mod
  • GitHub Issues - Report bugs or request features

License

MIT License

Project description from CurseForge.

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

1 of 14 releases match
Clear filters

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