숲

시야를 변경하는 방법 (FOV) 숲속에서

Ever wanted to play with an FOV higher than 95? This guide will show you how to increase or lower the FOV limits in The Forest.

소개

이 안내서에서, I will demonstrate how to adjust the FOV limit in The Forest. 기본적으로, the FOV is capped at a minimum of 60 and a maximum of 95 도. If you wish to use values beyond this range, you’ll need to modify the game files.

Installing dnSpy

To modify the FOV limit, you will need to edit the game files using dnSpy.

시작하려면, visit the latest release of dnSpy and scroll down to find the download links. 클릭 “dnSpy-net-win64.zipand extract all the files to a folder of your choice. You can delete these files once you’re finished with the fix.

다음, launchdnSpy.exeto proceed with the following steps.

Opening the Game Files

지금, we’ll open the game file that requires editing.

Locate your “숲” game directory and navigate to: The Forest/TheForest_Data/Managed.

You can access the game directory by right-clicking on The Forest in Steam, selecting Properties, clicking on the Local Files tab, and choosing Browse.

Within the “관리됨” 폴더, you’ll find numerous .dll files. The only file you need to edit isAssembly-CSharp.dll”.

Drag and drop this file into dnSpy to open it.

Editing the FOV limits

Now we’ll delve into the trickier part of the process. We will be editing the code responsible for limiting the FOV values in the menu.

첫 번째, we need to locate the correct class that handles mouse input. This class is calledMenuOptions.

To find this class, navigate to the left side of dnSpy underAssembly-CSharp” -> “Assembly-CSharp.dll” -> “{ } -” -> “MenuOptions.

다음, we need to decompile and edit the method calledCopySettingsFromGUI().” 이를 달성하기 위해, expand the MenuOptions class and right-click onCopySettingsFromGUI().” From the context menu, 선택하다 “Edit Method (C#)…”

In the new popup window, you will now be able to edit the code. Look for the following code line, which should be around line 160:

These values represent the limits for the FOV slider. The right value (기본 60) corresponds to the minimum FOV, while the left value (기본 35) represents the range. By adding these two values together, you obtain the maximum FOV value (60 + 35 = 95).

Suppose we want to set a new minimum FOV of 90 and a maximum of 130. 그 경우, we need to adjust the minimum (right value) 에게 90 and the range to 40 (90 + 40 = 130) as follows:

After editing these values, 클릭 “Compilelocated at the bottom right of the popup.

하지만, we’re not done yet. We need to repeat this procedure for another function.

이 시간, we want to editOnChangePreset().” 마우스 오른쪽 버튼으로 클릭하고 선택하십시오. “Edit Method (C#)” once again.

Scroll down and locate the following line of code, which should be around line 470:

Simply insert the same values you used before (90 그리고 40 in our example). Once you’ve made the changes, 클릭 “Compileat the bottom right.

The final step is to save the changes you made. Click on the save button in the toolbar, as shown in the image below:

And click “좋아요” on the upcoming dialog:

이 가이드는 에 의해 작성되었습니다 LNX. 여기에서 원본 간행물을 방문할 수 있습니다. 링크. 이 가이드에 대해 우려 사항이 있는 경우, 주저하지 마시고 연락주세요 여기.

저자 소개