Ridan Vandenbergh

Results 60 comments of Ridan Vandenbergh

Running with the wayland flag causes the following error: `/usr/lib/jvm/java-11-openjdk/bin/java: symbol lookup error: /tmp/lwjglridan/3.2.3-build-13/libglfw_wayland.so: undefined symbol: __wrap_memcpy` Presumably related to https://github.com/LWJGL/lwjgl3/issues/543 or https://github.com/LWJGL/lwjgl3/issues/557? However, I tried launching again (without the...

- [ ] Windows run away when docked. [(video)](https://drive.google.com/file/d/1n7FNWXLE4EDvqH2uNdH2pRnLlnzEF8sk/view?usp=sharing)

What does your `build.gradle` look like? You're crashing in native code, so I presume you're importing the wrong version(s) of LWJGL or the like. (Reference the answer in #96 if...

I got it working with the zip you provided and a few changes: I changed `MinecraftClientMixin` to `MixinKeyboard` and changed the mixin to this: ```java @Mixin(Keyboard.class) public abstract class MixinKeyboard...

Minecraft 1.12.2 uses LWJGL 2 while imgui is built on LWJGL 3. I doubt it's possible to get imgui to work on 1.12.2.

While very old, it might be worth looking at [darkstorm](https://github.com/DarkStorm652/Minecraft-GUI-API). Most of it still works great.

KAMI 1.12.2 uses a GUI I wrote from scratch. If you need guidance, there's plenty of videos on youtube that showcase how to use darkstorm's gui.

I created a repository [here](https://github.com/zeroeightysix/fabric-example-mod). I believe you need minecraft installed on your system for fabric to work. Assuming you are using IDEA: 1. Import the project from the `build.gradle`...

> I found this issue a while back, but could only crash when trying to run it myself! Thank you for finding this! What OS are you using? I think...

Turns out it's even worse on windows. The problem stays the same, with nondeterministic rendering when the GUI screen is opened. However, sometimes the program is killed upon either opening...