'Low' liquid amount render
Mudresistor opened this issue ยท 6 comments
Can you please spell out what 'II' means? If this is a mod or modpack, please list the version of those.
Also, does this work with regular non-GTNH NEI? What I'm trying to ascertain here is whether this is an issue with our NEI, Usually these recipe views are provided by external mods, not NEI itself and the bug might be with the other mod and not NEI.
Ah, I missed checking the Fermenter. Should be fixed now. Please try this build: https://github.com/GTNewHorizons/NotEnoughItems/suites/14137782293/artifacts/791700114
Also, make sure to clear your NEI config.
It's taken me a while, but I've finally implemented a fix for the Immersive Engineering issue in #395.
Regarding the issue in your own mod: this is caused by you assuming a fixed recipe screen layout. However our version of NEI changed this in two ways:
- the recipe screen now has a flexible length and is no longer centered vertically
- the recipe paging widget was moved from the bottom of the recipe screen to the top, changing the offset from 16px to 32px
Potential pitfalls are using GuiScreen.height
to calculate the top of the recipe screen instead of guiTop
, or using a fixed offset from guiTop
instead of useing GuiRecipe.getRecipePosition
.
You should make your recipe handler more layout-agnostic. In #399 I've added some recommendations for this as well as documentation for adding new features of our NEI version to your own mod. You can read a preview here. Please let me know if this documentation is in any way confusing or needs to be improved and if you were able to fix the issue on your side.