Sometimes the game screen will turn black and stay that way until I turn shaders off.
ShadowSharkWolf opened this issue ยท 3 comments
Hi there,
Seems to happen during the night. Or it happens during when the game is paused or in the inventory screen. It will happen until I turn the shaders off and will work again after a certain period of time after re-enabling shaders.
Minecraft: 1.19.4
Iris: 1.6.6
MakeUp Ultrafast: 8.8f
I doubt mods are the issue, but I'm never too sure.
I had the same issue. It always happened during the night as well as if there was a new moon. I looked into the code and found that during the moon brightness calculation it would sometimes be zero causing bad stuff to happen so I added a "+1". For me it fixed the problem.
If anyone else wants to fix it themselves go to the shaderpacks folder then unzip the MakeUp-UltraFast folder (you might want to change the name of the folder to Makeup-UltraFastFIX or something like that). Then go to shaders/lib/color_utils.glsl. Open it in a text editor. Change
#define NIGHT_BRIGHT_PHASE NIGHT_BRIGHT * (abs(4 - moonPhase) / 4.0)
to
#define NIGHT_BRIGHT_PHASE NIGHT_BRIGHT * ((abs(4 - moonPhase) / 4.0) + 1)
Make sure you save the changes and the shaders should work fine.