
imgui-quilt
Quilted ImGui, ImGui for Minecraft Quilt based on imgui-java
- Загрузки
- 717
- Подписчики
- 9
- Обновлён
- 21 июня 2023 г.
- Лицензия
- Apache-2.0
Опубликован 23 августа 2022 г.
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");
}
});
Ченджлог
1.0.3Релиз1.20, 1.20.1 · 21 июня 2023 г.
Changelog for 1.0.3+1.20
- Add fix for macOS by forcing it to use GLSL 140 on that platform
1.0.3Релиз1.19.2, 1.19.3, 1.19.4 · 21 июня 2023 г.
Changelog for 1.0.3+1.19
- Add fix for macOS by forcing it to use GLSL 140 on that platform
1.0.2Релиз1.20, 1.20.1 · 19 июня 2023 г.
Changelog for 1.0.2+1.20
- Fix license metadata issue
1.0.2Релиз1.19.2, 1.19.3, 1.19.4 · 23 августа 2022 г.
Changelog for 1.0.2
- Added new icon
- Added methods for key presses and character input
Known Issues:
- Text input is entered twice
- Scrolling with a mouse wheel currently doesn't work
Комментарии
Загружаем…