Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hey guys,

 

is there any way to turn off every HUD that's currently on (the one from from minecraft and possibly from mods) by code rather than with F1?

 

Thanks in advance

enbecko

 

RenderGameOverlayEvent allows you to cancel any vanilla-rendering, I don't know how about mods. :P

 

 

1.7.10 is no longer supported by forge, you are on your own.

If the other mods are making their HUD also in the RenderGameOverlayEvent, then it is a matter of the event priority and cancellation. I explain a bit about this in my events tutorial: http://jabelarminecraft.blogspot.com/p/minecraft-forge-172-event-handling.html

 

You control priority with the annotation to the event handling method. You cancel the event (if it is cancelable with the setCanceled() method).

 

If event handlers from different mods have same priority level I think that they'll fire based on the order the mods loaded. You can also receive events that have been canceled and uncancel them.

 

So putting it all together, if you make your method have priority = HIGHEST and also set to receive canceled events, then you can do what you want then cancel the event, and in vast majority of cases it will cancel the events for those other mods.

 

Ideally though, for compatibility with other mods you have discussion with the other mod's authors to work out agreement on how to handle it.

 

Note that there is a difference of opinion on receiving canceled events. I'm of the opinion that you should always receive canceled and if you care you can handle those cases where you are canceled carefully. Other people think that if another mod cancels it then they probably have a good reason to do so and you should honor it.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.