You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/RealPOV.Core.Koikatu/RealPOV.cs
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,6 @@ protected override void Awake()
39
39
{
40
40
plugin=this;
41
41
defaultFov=45f;
42
-
defaultViewOffset=0.05f;
43
42
base.Awake();
44
43
45
44
HideHead=Config.Bind(SECTION_GENERAL,"Hide character head",false,"When entering POV, hide the character's head. Prevents accessories and hair from obstructing the view.");
ViewOffset=Config.Bind(SECTION_GENERAL,"View offset",defaultViewOffset,newConfigDescription("Move the camera backward or forward",newAcceptableValueRange<float>(-0.5f,0.5f)));
44
+
ViewOffsetZ=Config.Bind(SECTION_GENERAL,"View offset Z",0f,newConfigDescription("Move the camera backward or forward",newAcceptableValueRange<float>(-0.5f,0.5f)));
45
+
ViewOffsetY=Config.Bind(SECTION_GENERAL,"View offset Y",0f,newConfigDescription("Move the camera up or down",newAcceptableValueRange<float>(-0.5f,0.5f)));
46
+
ViewOffsetX=Config.Bind(SECTION_GENERAL,"View offset X",0f,newConfigDescription("Move the camera left or right",newAcceptableValueRange<float>(-0.5f,0.5f)));
0 commit comments