FlorianMichael / fabric-imgui-example-mod

Example Fabric mod which includes Dear ImGui
Creative Commons Zero v1.0 Universal
17 stars 0 forks source link
dear-imgui dear-imgui-win32 fabric gui imgui java minecraft

Fabric ImGui Example Mod

This example contains the following features:

Setup

For setup instructions please see the fabric wiki page that relates to the IDE that you are using.

ImGui usage

You can just draw ImGui stuff using this:

ImGuiImpl.draw(io -> {
    if (ImGui.begin("Hello World")) {
        ImGui.end();
    }
    ImGui.showDemoWindow();
});

Keep in mind that ImGui needs to be initialized, so you must not remove the MinecraftClient mixin in the ImGui package

License

This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects.