You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there’s an issue in some mods, for example the ping mod where you press the button to bring up a radial ping menu in game to ping a block, in Java 8 it stops your camera from moving and you can select the type of ping you want, with lwjgl3ify it moves your entire camera with your mouse on screen and menu open, so you will turn away from the block you’re trying to ping and ping another block or the air etc
I was told by the maintainer that they can’t fix it and it’s an issue on lwjgl3ifys side
public static boolean active = false;
public static long activatedAt = 0;
public static void activate() {
Minecraft mc = Minecraft.getMinecraft();
mc.inGameHasFocus = false;
mc.mouseHelper.ungrabMouseCursor();
active = true;
activatedAt = System.nanoTime();
}
public static void deactivate() {
Minecraft mc = Minecraft.getMinecraft();
if (mc.currentScreen == null) {
mc.inGameHasFocus = true;
mc.mouseHelper.grabMouseCursor();
}
active = false;
}
The text was updated successfully, but these errors were encountered:
there’s an issue in some mods, for example the ping mod where you press the button to bring up a radial ping menu in game to ping a block, in Java 8 it stops your camera from moving and you can select the type of ping you want, with lwjgl3ify it moves your entire camera with your mouse on screen and menu open, so you will turn away from the block you’re trying to ping and ping another block or the air etc
I was told by the maintainer that they can’t fix it and it’s an issue on lwjgl3ifys side
2024-07-13_22-52-16.2.mp4
happens with both:
https://github.com/GirafiStudios/Ping
OR
https://github.com/GTMEGA/Ping
here's the code for the mod:
public class GuiPingSelect {
The text was updated successfully, but these errors were encountered: