Camera.usePhysicalProperties

Switch to Manual
public bool usePhysicalProperties;

Description

Enable usePhysicalProperties to use physical camera properties to compute the field of view and the frustum.

The physical properties include the sensor size, lens shift, and focal length.

using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { Camera cam = gameObject.GetComponent<Camera>(); cam.usePhysicalProperties = true; cam.focalLength = 60f; }

}

Did you find this page useful? Please give it a rating: