qol stuff

two small fixes so thirdperson feels better to use

no longer scrolls while in menus or unity explorer, and frontview
This commit is contained in:
NotAKidoS 2023-04-25 18:04:14 -05:00
parent 31d199ec5a
commit 08d305f3a5
2 changed files with 3 additions and 2 deletions

View file

@ -153,7 +153,7 @@ internal static class CameraLogic
switch (location)
{
case CameraLocation.FrontView:
_ourCam.transform.localPosition = new Vector3(0, 0.015f, 0.55f + _dist);
_ourCam.transform.localPosition = new Vector3(0, 0.015f, 0.55f - _dist);
_ourCam.transform.localRotation = new Quaternion(0, 180, 0, 0);
CurrentLocation = CameraLocation.FrontView;
break;