Posted August 30, 20196 yr I want to change the sky color and if possible the sun/moon texture if the player is wearing a type of glasses. But since I'm a beginner in minecraft modding I don't know where to start looking after creating my item.
August 30, 20196 yr You can change fog color @SideOnly(Side.CLIENT) @SubscribeEvent public void onFogColorRender(EntityViewRenderEvent.FogColors event){ if(true) { event.setRed(200); event.setGreen(10); event.setBlue(10); } } And register it as normal event
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.