current | 現在位置 |
target | 目的地 |
currentVelocity | 現在の速度。この値は関数が呼び出されるたびに変更されます。 |
smoothTime | target へ到達するまでのおおよその時間。値が小さいほど、target に速く到達します。 |
maxSpeed | オプションとして、最大速度を制限することができます。 |
deltaTime | この関数が最後に呼び出されてからの経過時間。デフォルトは Time.deltaTime 変数。 |
目的地に向かって時間の経過とともに徐々にベクトルを変化させます
The vector is smoothed by some spring-damper like function, which will never overshoot. The most common use is for smoothing a follow camera.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Transform target; public float smoothTime = 0.3F; private Vector3 velocity = Vector3.zero; void Update() { Vector3 targetPosition = target.TransformPoint(new Vector3(0, 5, -10)); transform.position = Vector3.SmoothDamp(transform.position, targetPosition, ref velocity, smoothTime); } }