Camera.HorizontalToVerticalFieldOfView

Switch to Manual

Declaration

public static float HorizontalToVerticalFieldOfView(float horizontalFieldOfView, float aspectRatio);

Parameters

horizontalFieldOfView The horizontal field of view value in degrees.
aspectRatio The aspect ratio value used for the conversion.

Returns

float The vertical field of view in degrees.

Description

Converts the horizontal field of view (FOV) to the vertical FOV, based on the value of the aspect ratio parameter.

using UnityEngine;

public class HorizontalFieldOfViewControl : MonoBehaviour { public float horizontalFieldOfView = 60f; public Camera targetCamera;

void Update() { targetCamera.fieldOfView = Camera.HorizontalToVerticalFieldOfView(horizontalFieldOfView, targetCamera.aspect); } }

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