This commit is contained in:
RochesterX
2025-03-31 19:33:31 -04:00
parent 434ed1839f
commit dff10176c7
7 changed files with 274 additions and 1043 deletions

View File

@@ -11,6 +11,8 @@ public class PlayerCameraMovement : MonoBehaviour
public float lowerBound;
public bool winScene = false;
public bool staticCamera = false;
private void Start()
{
start = transform.position;
@@ -52,6 +54,7 @@ public class PlayerCameraMovement : MonoBehaviour
}
if (activePlayers == 0) return;
if (staticCamera) return;
playerAverage /= activePlayers;