
Compatible with Parcool mod 1.20.1
Kogomre opened this issue ยท 6 comments
From the looks of the code, it seem this mod has a config which allows you to set the position of it manually? In which case it would not set its position by the stack (as Raised translates vertically), but rather fully manual control!
I can test it out later to ensure this is the answer, but for now I recommend attempting to try that.
@yurisuika thx, i test it and back later with answer
I've tested it, and it seems that those config options only apply when it is in "normal mode", for which you choose which corner of the screen the bar goes in and thus have a horizontal and vertical offset. Otherwise, the "light" mode these settings do not apply.
Okay, it seemed to look like it should work, but I changed the branch to 1.20.2 and I found the issue.
The newer versions of the mod use the overlay registry. Raised does catch these if they use registerBelow
or registerAbove
, as those reference other vanilla GUI elements. However, registerBelowAll
and registerAboveAll
do not, as those just place them at the extreme ends. It would appear that this mod does such with registerAboveAll
.
So, it would be possible to support this if we added these as well. Currently, the extended mod support option in Raised will toggle support for mods that register on the "non-all" methods. But really since those reference hud elements that we want to catch we shouldn't be cutting those out with that option. Instead, it should be used for these "all" methods, which brings more parity to the render event "all" from 1.18 and earlier, and sort of how that option works in Fabric.
@yurisuika thank you for your time, you are amazing