I learned not long ago how to integrate resource packs directly into its src I would like to know if I could go further that's why I want to know if it is possible to integrate a shader?
It's not a problem because I'm French and I'm struggling with English, but I was saying that the more versions of Minecraft are released, the heavier Minecraft is and the more it needs to be optimized, so I'd like to know if the Mojang team is planning on making Minecraft multi-threaded.
public static void IIngameOverlay(RenderGameOverlayEvent Gui) { OverlayRegistry.enableOverlay(ForgeIngameGui.PLAYER_HEALTH_ELEMENT, false); }
this working yeeeesss
public static void eventHandler(RenderGameOverlayEvent event) {
if (event.getType() == RenderGameOverlayEvent.ElementType.HEALTH){ event.setcancelled(true);} }
unfortunately this code does not work anymore
How could I disable the game's Health and Hunger Gui. As I understand it, I need to use ForgeIngameGui, but I don't know how to proceed after that.
Sorry for any typos, my English is not the best.