返回介绍

AnimationCurve.AddKey 添加帧

发布于 2019-12-18 15:37:11 字数 1899 浏览 834 评论 0 收藏 0

JavaScript => public function AddKey(time: float, value: float): int;
C# => public int AddKey(float time, float value);

Parameters 参数

timeThe time at which to add the key (horizontal axis in the curve graph).
在时间轴上添加关键帧(在曲线图的水平位置)。
valueThe value for the key (vertical axis in the curve graph).
关键帧的值(在曲线图的垂直位置)。

Returns 返回

int The index of the added key, or -1 if the key could not be added.
添加关键帧的索引,或者如果关键帧没有被添加值为-1。

Description 描述

Add a new key to the curve.

添加新的关键帧到曲线。

Smooth tangents are automatically computed for the key. Returns the index of the added key. If no key could be added because there is already another keyframe at the same time -1 will be returned.

关键帧的平滑切线是自动计算的。返回添加的关键帧的索引。如果没有关键帧被添加可能因为这儿已经有另一个相同的关键帧返回-1。


“JavaScript”=> public function AddKey(key: Keyframe): int;
“C#”=> public int AddKey(Keyframe key);

Parameters

keyThe key to add to the curve.
添加关键帧到曲线。

Returns

int The index of the added key, or -1 if the key could not be added.
添加关键帧的索引,或者如果关键帧没有被添加值为-1。

Description

Add a new key to the curve.

添加新的关键帧到曲线。

Returns the index of the added key. If no key could be added because there is already another keyframe at the same time -1 will be returned.

返回添加的关键帧的索引。如果没有关键帧被添加可能因为在相同时间上有另一个关键帧,将会返回-1.

animationcurve

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文