modules linked and movement broken

This commit is contained in:
2022-11-12 12:18:08 +01:00
parent 2b7984860c
commit 4ee6cfffed
7 changed files with 297 additions and 204 deletions

View File

@@ -16,7 +16,7 @@ public class CameraMovement : MonoBehaviour
public void moveCameraBack() {
Debug.Log("Moved back");
mainCamera.transform.position = new Vector3((float)-2.15, 0, -10);
mainCamera.orthographicSize = 10.3f;
mainCamera.transform.position = new Vector3((float)-4, 0, -10);
mainCamera.orthographicSize = 11f;
}
}