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

Vector2.Lerp

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们不能接受所有提交,但我们会阅读用户提出的每个建议更改,并在适当情况下进行更新。

关闭

提交失败

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

关闭

取消

声明

public static Vector2 Lerp(Vector2 a, Vector2 b, float t);

描述

通过 t 线性插值向量 ab 之间。

参数 t 被限制在 [0, 1] 范围内。

t = 0 时返回 a
t = 1 时返回 b
t = 0.5 时返回 ab 的中点。

其他资源: LerpUnclamped.

using UnityEngine;

public class Example : MonoBehaviour { public Vector2 destination;

void Update() { //Moves the GameObject from it's current position to destination over time transform.position = Vector2.Lerp(transform.position, destination, Time.deltaTime); } }