No description
Find a file
2022-08-22 14:11:19 -04:00
gradle Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
src/main Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
.editorconfig Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
.gitignore Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
build.gradle Publish to maven repo 2022-08-22 14:11:19 -04:00
gradle.properties Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
gradlew Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
gradlew.bat Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
LICENSE Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
README.md Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00
settings.gradle Initial commit (port to 1.19) 2022-08-22 13:03:07 -04:00

imgui-quilt

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

Quick Usage

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");
			}
		});