Have you ever desired to play The Forest with a field of view (campo de visión) más que 95? This guide will demonstrate how to adjust and expand the FOV limits in The Forest. En esta guía, I will provide instructions on how to modify the FOV limit in The Forest. Por defecto, the game restricts the FOV to a minimum of 60 and a maximum of 95 grados. If you want to utilize values outside of this range, you will need to make changes to the game files.
Installing dnSpy
To modify the FOV limit, you will need to use dnspy to edit the game files.
Para empezar, visit the dnSpy repository’s latest release and locate the download links. Choose the appropriate link for «dnSpy-net-win64.zip» and extract all the files to a folder of your preference. You can delete these files once you have completed the necessary modifications.
After extracting the files, lanzamiento «dnSpy.exe» to proceed with the next steps.
Accessing the Game Files
Ahora, we will navigate to the game files that require editing.
Locate the directory where The Forest game is installed. You can find it by right-clicking on The Forest in your Steam library, selecting Properties, going to the Local Files tab, and clicking on the Browse button.
Within the game directory, navega al siguiente camino: The Forest/TheForest_Data/Managed.
Dentro del «Managed» carpeta, you will see various .dll files. The only file you need to edit is «Assembly-CSharp.dll».
To open this file, simply drag and drop it into the dnSpy interface.
Editing the FOV limits
Now we will move on to the more intricate part of the process, where we will edit the code responsible for limiting the FOV values in the menu.
Primero, we need to locate the appropriate class that handles mouse input. This class is named «MenuOptions.»
To find this class, navigate to the left side of dnSpy and expand «Ensamblaje-csharp» -> «Assembly-CSharp.dll» -> «{ } -» -> «MenuOptions.»
Próximo, we will decompile and modify the «CopySettingsFromGUI()» method. para hacer esto, expand the MenuOptions class and right-click on «CopySettingsFromGUI().» From the context menu, seleccionar «Edit Method (C#)…» proceder.
In the newly opened popup window, you will now have access to edit the code. Look for the specific code line, which should be approximately around line 160:
These values determine the limits for the FOV slider. The value on the right (por defecto 60) represents the minimum FOV, while the value on the left (por defecto 35) corresponds to the range. Adding these two values together gives you the maximum FOV value (60 + 35 = 95).
Let’s say we want to set a new minimum FOV of 90 and a maximum FOV of 130. en ese caso, we need to adjust the minimum (right value) a 90 and the range to 40 (90 + 40 = 130) como se muestra a continuación:
Once you have made the necessary adjustments to these values, hacer clic en «Compile» located at the bottom right of the popup window.
Sin embargo, our task is not complete yet. We need to repeat this procedure for another function.
Esta vez, we will edit the «OnChangePreset()» method. Right-click on it and select «Edit Method (C#)» once again to proceed.
Scroll down and find the specific line of code, which should be approximately around line 470:
Simply insert the same values you used previously (90 y 40 in our example) in this line of code. After making the necessary changes, hacer clic en «Compile» located at the bottom right.
The final step is to save the modifications you have made. para hacer esto, click on the save button in the toolbar, which is depicted in the image below:
Entonces, hacer clic «DE ACUERDO» on the upcoming dialog to confirm the save.
Eso es todo lo que estamos compartiendo hoy para este el bosque guía. Esta guía fue originalmente creada y escrita por LNX. En caso de que no actualicemos esta guía, puede encontrar la última actualización siguiendo este enlace.