关键帧中曲线的数值。
在二维图表中,可以将其视为 y 值。
其他资源:time。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { AnimationCurve curve = AnimationCurve.Linear(0, 0, 5, 5); // Extract the time from the first keyframe of a curve Debug.Log(curve[0].value); } }