Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


HorizontalToVerticalFieldOfView(float, float)

Converts the horizontal field of view (FOV) to the vertical FOV, based on the value of the aspect ratio parameter.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
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

Type

Description

floatThe vertical field of view in degrees.

Remarks

Examples

using UnityEngine;public class HorizontalFieldOfViewControl : MonoBehaviour{ public float horizontalFieldOfView = 60f; public Camera targetCamera; void Update() { targetCamera.fieldOfView = Camera.HorizontalToVerticalFieldOfView(horizontalFieldOfView, targetCamera.aspect); }}