So i added ImGui to my project (dont worry java users, my project is kotlin, but it all works practicly the same)
but i cant seem to get any gui on my screen, i am trying this for example
https://github.com/SpaiR/imgui-java/blob/v1.75-0.7.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java
but this wont show anything aswell
this is the second time i am trying to add it and yet again it does nothing
I also have no idea why it wont show anything, if i knew i would have already search for a fix
but all i know is that it doenst
I am initializing, (even with the IO, but that shouldn't even matter) (not with the fonts thought, dont have them in my resource folder so it gives null error, anyway, that shouldnt matter to, it will just use default font)
Then i am calling it every game loop using a render method, setting the screenwidth, some mouse position stuff, and then calling ImGui.render() and the GL3.render(ImGui.getDrawData())
I am also swapping the buffer just like you're supose to
So i have no clue what is wrong
I even addid the default.frag and the default.vert in the resources folder, even though that isnt needed (just added it just in case)