版本:Unity 6(6000.0)
语言英语
  • C#

Keyframe.time

建议更改

成功!

感谢您帮助我们提高 Unity 文档质量。尽管我们无法接受所有提交内容,但我们确实会阅读用户提出的每一条建议,并在适用情况下进行更新。

关闭

提交失败

由于某种原因,系统无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提高 Unity 文档质量。

关闭

取消

public float time;

描述

关键帧的时间。

在 2D 图表中,可以将其视为 x 值。

其他资源:value

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].time); } }