Posted March 27, 20214 yr When going under y63 or something, the bottom half of the sky turns black. Is there a way to disable that?
March 27, 20214 yr 3 hours ago, NorthWestWind said: When going under y63 or something, the bottom half of the sky turns black. Is there a way to disable that? I'm not sure, but I think you can prevent/change it with the RenderGameOverlayEvent
March 30, 20214 yr Author Cancelled it: @SubscribeEvent public static void renderFogDensity(final EntityViewRenderEvent.FogDensity event) { PlayerEntity player = Minecraft.getInstance().player; if (player == null) return; event.setCanceled(true); } And it didn't disappear
April 1, 20214 yr Author Here's my current code: @SubscribeEvent public static void renderFogDensity(final EntityViewRenderEvent.FogDensity event) { PlayerEntity player = Minecraft.getInstance().player; if (player == null) return; event.setCanceled(true); event.setDensity(0); RenderSystem.fogMode(GlStateManager.FogMode.EXP2); } Tested with/without fogMode, setting density between 0-1 and the bottom half of the sky is still black (when 0). When set to 1, I can't see a thing.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.