~eviee/imgui-quilt

ImGui for Minecraft Quilt based on imgui-java
Add demo window screenshot
Add new icon and methods for key presses and character input
Publish to maven repo

clone

read-only
https://git.sr.ht/~eviee/imgui-quilt
read/write
git@git.sr.ht:~eviee/imgui-quilt

You can also use your local clone with git send-email.

#imgui-quilt

Quilt interface for imgui-java, an updated version of imgui-mc.

ImGui Demo Window Running in Minecraft

#Quick Usage

Add the Maven repository and the modImplementation to your build.gradle

maven {
    url "https://maven.eviee.gay/imgui-quilt"
}
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");
			}
		});