remove cloud darkness and make clouds less dense

This commit is contained in:
James Seibel
2026-06-06 17:59:11 -05:00
parent 3cf799a10f
commit b46f10755e
2 changed files with 0 additions and 23 deletions
@@ -425,29 +425,6 @@ public class CloudRenderHandler
{
// cloud color changes based on the time of day and weather so we need to get it from the level
Color newCloudColor = clientLevelWrapper.getCloudColor(renderParam.partialTicks);
Color sky = MC_RENDER.getSkyColor();
float skyColPercent = 0.0f;
switch (cloudParams.instanceOffsetY)
{
case 0:
skyColPercent = 0.0f; // use only cloud color
break;
case 1:
skyColPercent = 0.25f; // use some sky color
break;
case 2:
skyColPercent = 0.40f;
break;
}
newCloudColor = new Color(
(int) mixColors(newCloudColor.getRed(), sky.getRed(), skyColPercent),
(int) mixColors(newCloudColor.getGreen(), sky.getGreen(), skyColPercent),
(int) mixColors(newCloudColor.getBlue(), sky.getBlue(), skyColPercent)
);
// update the boxes if their color should be changed
if (!newCloudColor.equals(cloudParams.previousColor))
Binary file not shown.

Before

Width:  |  Height:  |  Size: 553 B

After

Width:  |  Height:  |  Size: 743 B