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

I want to add some extra debug info to overlay that open on F3 press. I believe, ForgeIngameGui.GuiOverlayDebugForge class is somehow related to this, but I can't figure out what exactly should I extend (mentioned class is private) and how do I register my class to be initialized and taken information for displaying.

Appreciate for any help provided!

Edited by Dzuchun
Added solved tag.

Everything said above may be absolutely wrong. No rights reserved.

  • Author
1 hour ago, diesieben07 said:

You can change the text or draw additional data using RenderGameOverlayEvent.Text.

*bla-bla-bla, I don't know java* (skip this post)

So, to change a text I should catch mentioned event and... what's next? As I can see, there is no method to add more data... Should I use reflect to modify these fields? I'm afraid even that won't work, because they're not used further in render, are they?

I could render my info separately, but if possible better do it in featured way, right?

Edited by Dzuchun

Everything said above may be absolutely wrong. No rights reserved.

  • Author

Thanks, that worked. Here is my code:

@SubscribeEvent
public static void onRenderGameOverlayText(RenderGameOverlayEvent.Text event) {
    if (Minecraft.getInstance().gameSettings.showDebugInfo) { //Otherwise string is displayed all the time
        event.getLeft().add("Placeholder string"); //You may add empty string to insert a gap in overlay
    }
}

 

P.S.: I definitely should refresh my java knowledge.

Everything said above may be absolutely wrong. No rights reserved.

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.