-
Notifications
You must be signed in to change notification settings - Fork 4
Home
github-actions[bot] edited this page Apr 26, 2026
·
2 revisions
ImGuiMC is intended to be used as an optional mod. However it can be shadowed if ImGui is necessary.
The latest version can be found in the ImGuiMC README or directly from RyanHCode's Maven.
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}")
}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}")
}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}")
}