Posted March 24, 201411 yr How do I add sliders and buttons? I want to add 3 sliders to the 'graphics options' menu, but I can't find any tutorials or other documentation for this (besides net.minecraft.client.gui.GuiSlider.java)
March 24, 201411 yr Read some vanilla code that uses a slider. I like to make mods, just like you. Here's one worth checking out
April 4, 201411 yr Author I understand how minecraft does it, but how can I do it without modifying minecraft source code (to increase compatibility with mods like optifine and such). Is there an API somewhere?
April 4, 201411 yr // From iChunUtil @SubscribeEvent public void renderTick(TickEvent.RenderTickEvent event) { if(event.phase == TickEvent.Phase.END) { if (Minecraft.getMinecraft().currentScreen instanceof GuiOptions) { //or whatever screen you want to add the button to GuiOptions gui = (GuiOptions)Minecraft.getMinecraft().currentScreen; // Draw your buttons here using the gui } } } https://github.com/iChun/iChunUtil/blob/master/src/main/java/ichun/client/core/TickHandlerClient.java
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.