Мои Уведомления
Привет, !
Мой Аккаунт Мои Финансы Мои Подписки Мои Настройки Выход
Руководство API скрипты

Объявление

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

Описание

Выполняет линейную интерполяцию между векторами a и b на t.

Параметр t ограничен диапазоном [0, 1].

When t = 0 returns a.
When t = 1 return b.
When t = 0.5 returns the midpoint of a и b.

Смотрите так же: 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); } }
Вы можете отблагодарить автора, за перевод документации на русский язык. ₽ Спасибо
API скрипты 2021.3