Skip to content
github-actions[bot] edited this page Apr 26, 2026 · 2 revisions

Overview

ImGuiMC is intended to be used as an optional mod. However it can be shadowed if ImGui is necessary.

Getting Started

The latest version can be found in the ImGuiMC README or directly from RyanHCode's Maven.

Neoforge

Click to expand
repositories {
    exclusiveContent { // ImGuiMC
        forRepository {
            maven {
                url = "https://maven.ryanhcode.dev/releases"
                name = "RyanHCode Maven"
            }
        }
        filter {
            includeGroup("foundry.imguimc")
        }
    }
}

dependencies {
    compileOnly("foundry.imguimc:imguimc-neoforge-${project.minecraft_version}:${project.imguimc_version}")
}

Fabric

Click to expand
repositories {
    exclusiveContent { // ImGuiMC
        forRepository {
            maven {
                url = "https://maven.ryanhcode.dev/releases"
                name = "RyanHCode Maven"
            }
        }
        filter {
            includeGroup("foundry.imguimc")
        }
    }
}

dependencies {
    modCompileOnly("foundry.imguimc:imguimc-fabric-${project.minecraft_version}:${project.imguimc_version}")
}

Common

Click to expand
repositories {
    exclusiveContent { // ImGuiMC
        forRepository {
            maven {
                url = "https://maven.ryanhcode.dev/releases"
                name = "RyanHCode Maven"
            }
        }
        filter {
            includeGroup("foundry.imguimc")
        }
    }
}

dependencies {
    compileOnly("foundry.imguimc:imguimc-common-${project.minecraft_version}:${project.imguimc_version}")
}

Clone this wiki locally