Posted July 30, 20187 yr I'm looking to make a simple zoom mod, I press a button and my FOV is cut to whatever I set it to be. However, due to the lack of documentation on the base Minecraft code I can't find something like "player.setFOV()" that would be useful. The end goal is to do something like Optifine's zoom, but with out the cinematic camera.
July 30, 20187 yr net.minecraftforge.client.event,FOVUpdateEvent allows you to set a new FOV using FOVUpdateEvent#setNewfov. Alternatively there exists net.minecraftforge.client.event.EntityViewRenderEvent.FOVModifier which allows you to set a modifier for the player's FOV instead of altering it directly via FOVModifier#setFOV. You can read about events and handling them here.
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.