mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
adjusted default distances, added shift modifier
more small polish items
This commit is contained in:
parent
ef57519e81
commit
b87047df2f
2 changed files with 7 additions and 6 deletions
|
@ -44,6 +44,7 @@ public class ThirdPerson : MelonMod
|
|||
if (!Input.GetKey(KeyCode.LeftControl)) return;
|
||||
if (Input.GetKeyDown(KeyCode.T)) State = !State;
|
||||
if (!State || !Input.GetKeyDown(KeyCode.Y)) return;
|
||||
RelocateCam((CameraLocation)(((int)CurrentLocation + 1) % Enum.GetValues(typeof(CameraLocation)).Length), true);
|
||||
int cycle = Input.GetKeyDown(KeyCode.LeftShift) ? -1 : 1;
|
||||
RelocateCam((CameraLocation)(((int)CurrentLocation + cycle) % Enum.GetValues(typeof(CameraLocation)).Length), true);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue