
Incompatibility with HUDTweaks
CodeF53 opened this issue ยท 5 comments
Should not be an issue going forward thanks to the rewrite of the mod on how and when it takes screenshots
Just want to say that I am having this issue with both InventoryHUD+ and Advanced Compass, and they do hide when I press F1.
It's not a particular mods "fault". This mod uses options.hudHidden
to disable hud stuff. All pressing F1 is, is setting that boolean. However some stuff still renders when F1 is on, but a screen is open (seamless loading screen opens an empty screen to make sure the screenshot is taken at the right time).
To fix this, ask them to check options.hudHidden before rendering
I'm pretty sure this bug happens in without hudtweaks as well, but I haven't tested it. Hudtweaks doesn't render anything extra, so this is being called because InGameHud.render()
is being called. Maybe mixin to InGameHud.render()
and cancel the method when it's loading like this.
I don't know much about Fabric, but Forge's equivalent of this is to cancel the RenderGameOverlayEvent, which is hooked from another class called IngameGui (hmmmmm..)
The render call is made when hudHidden is disabled OR if there's a screen being displayed (I guess this is so that when you're in F1 mode, chat wouldn't be invisible when you're typing)
Canceling the render call will also fix the debug menu (#28) from displaying, along with chat, boss healthbars, InventoryHUD, and this issue too :D