From 1be660a0402c6371f5f5f919b8e842d212b529c4 Mon Sep 17 00:00:00 2001 From: SuiMachine Date: Fri, 13 May 2022 22:01:57 +0200 Subject: [PATCH] Better Config variable name --- README.md | 4 ++++ Release/BepInEx/plugins/ArtOfRallySuiVR.dll | Bin 30208 -> 30208 bytes Release/BepInEx/plugins/ArtOfRallySuiVR.pdb | Bin 16364 -> 16364 bytes Source/Plugin.cs | 2 +- 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ba34931..1e6122a 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ Installation -------- * Copy the files from Release directory into the game directory. Then start the game with ```-vrmode OpenVR``` command-line argument (otherwise it starts it as None). +Additional options +-------- +* It's possible to enable low-cam in this hack. To do this run the game at least once, then edit file ```BepInEx/config/ArtOfRallySuiVR.cfg``` and set ```EnableLowCam``` to true. Note that UI may is not designed for cameras like this. + Third-party libraries used: -------- * OpenVR (as part of Unity) diff --git a/Release/BepInEx/plugins/ArtOfRallySuiVR.dll b/Release/BepInEx/plugins/ArtOfRallySuiVR.dll index c2efa025703812f181152a54d2e36715f44205be..494312df73f9d7417b5aa841ae4030a9dd450b95 100644 GIT binary patch delta 453 zcmZp8!`SeKaY6@+diSPd8+%@JGx|-g;Hgw@U}Y%C&t+iX;$qV915!l?U;^Awfj^T) zc-0tfCR_8WGImT(DviE-QHO+v{67l5+GX+Rg%0u5v-db3$ocrqj7kIg$p*clnQCLa`a29qL_CB-Zh z47eByL_{~%HYG0&rr_b4CLo-c8i$CD#XCxkYQT3m&4s@>UrHa zOFnQEZ+;VdL4d`4&-QPV599?1*rti`N3F5&SebI_VD4?}-IEpagB75H6`4>$kZRwK U3x0L?@2+_f*k!bNa(*rw0B7Qc(*OVf delta 453 zcmZp8!`SeKaY6^noOOX$H}<^dW(=5I!BeT+#L7^RpUc3&#l@uI2c(J)!34OW0{M|uro69Og<>;3?@Y;ONv=2 z7;!Nah=^z`1bINLSC)Z+F@F(|t;UqU7)TY_Y%Uag#{@J#LDHF#v2OAbsS7}pN~Mo8 zGOpQdEBoF`O4^qppCN@IlOc_vlEIlFks+5Mm7xeo7jJfnn8qrwfo;{Ju*Y@2jk4Fu zwu;R=xcN=&1pyY}knP(iAIJ+3ShDsSzg&5bLr=_Un~4#NN+&Di2P;4Y3(i0VfvU|* Vul!PGc-n6zx3;8x^W^+oHUP0ihgbjr diff --git a/Release/BepInEx/plugins/ArtOfRallySuiVR.pdb b/Release/BepInEx/plugins/ArtOfRallySuiVR.pdb index 6653e2b55f7303b37a62cfb06eae97b80d819189..11a1e03326733779ee670cc81ba930e1c9707ff4 100644 GIT binary patch delta 76 zcmV-S0JHz>f9!vdd=x!q77tpiI7q2v%E4{hJG(c$xAw7+8xbH|G+tLIAW02V3Q8_b ie%!g_#(*c&qMm4QLPR~#9wXYb%Ms`&0b;YXIXDI(_8}+$ delta 76 zcmV-S0JHz>f9!vdd=#Xu)(;+cj6jTB%RG@-qIDBgx3{s78xbIg$)@|e8tLZ(Ll-~9 ihC=-P+Fpr^dVpkuwpCsO(h(%H%Ms`&0b{eYIXDKaQ6v@s diff --git a/Source/Plugin.cs b/Source/Plugin.cs index 1d30c04..0a1ff22 100644 --- a/Source/Plugin.cs +++ b/Source/Plugin.cs @@ -35,7 +35,7 @@ private void Awake() private void ProcessConfig() { - Hacks.HookPoints.LowCamerasDetour.Use = Config.Bind("Modifications", "ModifyCameras", false).Value; + Hacks.HookPoints.LowCamerasDetour.Use = Config.Bind("Modifications", "EnableLowCam", false).Value; } } }