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

So I'm working on a mod that allows users to move the subtitles, and I figured out the events and stuff (for the most part), and understand that I probably have to make a Client Proxy for stuff too. Maybe I'm missing something, but I have some questions about getting the SubtitleOverlay in the event. I don't want to make new subtitles, I just want to change the position. Is there a way for me to get the game's subtitle overlay from the event? This is a snippet of my code:
 

@SubscribeEvent(receiveCanceled = true)
public void onEvent(RenderGameOverlayEvent.Pre event) {
    if(event.getType() == RenderGameOverlayEvent.ElementType.SUBTITLES) {
        // this is where the magic happens
        LOGGER.info("SUBTITLE PRERENDER EVENT");
        Minecraft mc = Minecraft.getInstance();
    }
}

I know I can't directly access the games SubtitleOverlayGui because it's protected, but is there some other way, or do I have to write a new class or something? (Sorry for the questions and rambling, I'm not used to posting on forums/asking for help)

  • Author

By "copy what SubtitleOverlayGui does and register an ISoundEventListener," do you mean make a new class that extends SubtitleOverlayGui? Could you explain a bit more or do you have a link to an example or explanation?

Edited by lizzyd710

  • Author
5 hours ago, diesieben07 said:

You could extend it, yes, but you wouldn't gain much from that. I am not sure why I need to explain the word "copy" to you.

i know what copy means, but I don't know where to copy it. Do you mean copy what SubtitleOverlayGUI does into the onEvent method and register that as an ISoundEventListener? 

  • Author
2 hours ago, diesieben07 said:

You need to register an ISoundEventListener. Just like SubtitleOverlayGUI does.

Please try to actually look at the code and understand what it's doing. It is not hard.

As is evidenced by my profile and my thread, I am new to Minecraft modding. I understand that I'm probably missing something obvious and how it can probably be frustrating to an experienced modder like yourself, but I too am frustrated. If I wasn't having trouble I wouldn't be creating this thread. I have looked at the code, and that is how I know that I cannot get the client's SubtitleOverlayGUI since it is a protected field and there is no method that gets the overlay. If you could provide an example of what you are saying, I think that would clear up my confusion.

2 hours ago, lizzyd710 said:

it is a protected field and there is no method that gets the overlay

Since its protected, you can either extend the class, use an AccessTransformer or use Reflection.

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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.