Posted January 2, 201510 yr Hey guys, I am trying to remove/disable the Brightness slider in the Settings GUI because when I move the slider it messes up my mod which sets the gamma every time the mod loads. Any help is appreciated. Thanks.
January 3, 201510 yr Author Use InitGuiEvent.Post, check if it's a GuiOptions and then remove the GuiButton you want. Whenever I do InitGuiEvent.Post where do I get the arguments screen and buttonList or am I doing it wrong? Sorry i'm fairly new to the Forge API.
January 3, 201510 yr If you open up that class (net.minecraftforge.client.event.GuiScreenEvent), you can see all of its fields; event.gui and event.buttonList look promising. If you use Eclipse, ctrl+click to open that class. GitHub|Recipe API Proposal
January 3, 201510 yr Whenever I do InitGuiEvent.Post where do I get the arguments screen and buttonList or am I doing it wrong? Sorry i'm fairly new to the Forge API. What do you mean by 'do InitGuiEvent.Post'? Always post your code so people can see what you are trying and where the problem may be. All Forge event classes have various fields related to the specific event, accessed using the single Event parameter of your event listener: @SubscribeEvent public void nameItAnythingYouWant(SpecificForgeEvent event) { event.someField is now accessible for use } The specific event is the most critical component of that code, and must be the SOLE parameter for any event listener - adding any other parameters will prevent your code from being called. http://i.imgur.com/NdrFdld.png[/img]
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.