adjusted default distances, added shift modifier

more small polish items
This commit is contained in:
NotAKidoS 2023-04-25 20:17:26 -05:00
parent ef57519e81
commit b87047df2f
2 changed files with 7 additions and 6 deletions

View file

@ -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);
}
}