Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.DeltaAngle

public static float DeltaAngle(float current, float target);

Description

Calculates the shortest difference between two given angles given in degrees.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.DeltaAngle(1080, 90)); } }

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