Versions with this page:
Versions without this page:
Calcula la diferencia más corta entre dos ángulos dados en grados.
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.DeltaAngle(1080, 90)); } }