Compatibility
Minecraft: Java Edition
1.20–1.20.1
1.19.x
Platforms
Quilt
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed Apache-2.0
Created 2 years ago
Updated last year
imgui-quilt
Quilt interface for imgui-java, an updated version of imgui-mc.
Quick Usage
Add the Maven repository and the modImplementation to your build.gradle
maven {
url "https://git.gaycatgirl.sex/api/v4/projects/21/packages/maven"
}
implementation "gay.eviee:imgui-quilt:<VERSION>"
You can then add Renderables
to ImGuiQuilt.renderstack
for them to be rendered.
Use ImGui methods in render()
of the Renderables
interface.
Example:
ImGuiQuilt.renderstack.add(new Renderable() {
@Override
public String getName() {
return "Profiling Name";
}
@Override
public Theme getTheme() {
return null;
}
@Override
public void render() {
ImGui.text("Example Text Element");
}
});