So bearbeiten Sie Kamera.Size Eigenschaft Einheit
//To edit the .size property in a orthographic camera you can use the
//'orthographicSize' propery, like this
public Camera CameraObject;
private void Start()
{
//Sets size
CameraObject.orthographicSize = 3;
}
Mnr. Stupid