[WORKAROUND]Custom overlay isn't hidden by F1 key

Started by Catnip on

Topic category: Troubleshooting, bugs, and solutions

Joined Apr 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
[WORKAROUND]Custom overlay isn't hidden by F1 key
Mon, 10/07/2024 - 18:47 (edited)

I haven't done extensive testing, and I haven't updated to the newest version, so this might not be relevant then, but:

On version 2024.2 for a NeoForge 1.20.6 mod, I have a custom overlay with a somewhat complex display condition, it displays at all of the correct times, but it ignores the F1 key to hide overlays. I am unsure if this is intentional or not, so I wanted to ask about it.

Also, for anyone else who wants their overlay to respect the F1 key, my solution was to create a custom player persistant logic variable that defaults to true, but changes between true and false when a custom keybinding is pressed, and the keybinding defaults to the F1 key to simulate it being part of the vanila overlay hiding system. I also expanded on the custom overlay's condition to hide it when the variable is false.

Edited by Catnip on Mon, 10/07/2024 - 18:47
Joined May 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Dude I'm having the opposite…
Wed, 12/25/2024 - 20:33

Dude I'm having the opposite of this issue, I'm using the overlay for my custom water, and it hides upon hiding overlay elements by hitting F1, trying to turn it off through code

Joined May 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I think making a procedure…
Mon, 12/30/2024 - 15:19

I think making a procedure that makes the overlay show on any condition would work.

Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Add a custom code snippet…
Fri, 01/03/2025 - 11:56

Add a custom code snippet with the following:

!(Minecraft.getInstance().options.hideGui)