Нашёл вот такой код, который должен выполнять то, что мне нужно, но обязательно засовывать это всё в update? можно ли один раз в start метод запускать с этим кодом?
[ExecuteInEditMode]
[RequireComponent(typeof(Camera))]
public class MatchWidth : MonoBehaviour {
// Set this to the in-world distance between the left & right edges of your scene.
public float sceneWidth = 10;
Camera _camera;
void Start() {
_camera = GetComponent<Camera>();
}
// Adjust the camera's height so the desired scene width fits in view
// even if the screen/window size changes dynamically.
void Update() {
float unitsPerPixel = sceneWidth / Screen.width;
float desiredHalfHeight = 0.5f * unitsPerPixel * Screen.height;
_camera.orthographicSize = desiredHalfHeight;
}
}
Если загуглить, то первая страничка - то, что человек написал и его код целиком, мне просто интересно не сильно ли это нагружать будет бедный телефон?