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

Vector3.SmoothDamp

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

声明

public static Vector3 SmoothDamp(Vector3 current, Vector3 target, ref Vector3 currentVelocity, float smoothTime, float maxSpeed = Mathf.Infinity, float deltaTime = Time.deltaTime);

参数

current 当前位置。
target 我们试图到达的位置。
currentVelocity 当前速度,每次调用此函数时,此值都会被修改。
smoothTime 大约到达目标所需的时间。较小的值将更快地到达目标。
maxSpeed 可以选择限制最大速度。
deltaTime 自上次调用此函数以来的时间。默认情况下为 Time.deltaTime。

描述

随着时间的推移,逐渐将向量更改为所需的目标。

向量通过某种弹簧阻尼器之类的函数进行平滑,永远不会过冲。最常见的用途是平滑跟随摄像机。

// Smooth towards the target

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; public float smoothTime = 0.3F; private Vector3 velocity = Vector3.zero;

void Update() { // Define a target position above and behind the target transform Vector3 targetPosition = target.TransformPoint(new Vector3(0, 5, -10));

// Smoothly move the camera towards that target position transform.position = Vector3.SmoothDamp(transform.position, targetPosition, ref velocity, smoothTime); } }