public static Quaternion Slerp (Quaternion a, Quaternion b, float t);

Descripción

Esfericamente interpola entre a y b por t. El parámetro t está sujeto al rango [0, 1].

// Interpolates rotation between the rotations "from" and "to"
// (Choose from and to not to be the same as
// the object you attach this script to)

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform from; public Transform to;

private float timeCount = 0.0f;

void Update() { transform.rotation = Quaternion.Slerp(from.rotation, to.rotation, timeCount); timeCount = timeCount + Time.deltaTime; } }

See Also: Lerp, SlerpUnclamped.