Version: 2023.2
言語: 日本語
public static float SmoothDamp (float current, float target, ref float currentVelocity, float smoothTime, float maxSpeed= Mathf.Infinity, float deltaTime= Time.deltaTime);

パラメーター

current 現在位置
target The target position.
currentVelocity The current velocity. This method modifies the currentVelocity every time it is called.
smoothTime The approximate time it takes to reach the target position. The lower the value the faster this method reaches the target. The minimum value is 0.0001. If a lower value is specified, it is automatically clamped to this minimum value.
maxSpeed Use this optional parameter to specify a maximum speed. By default, the maximum speed is set to infinity.
deltaTime The time since this method was last called. By default, this is set to `Time.deltaTime`.

説明

徐々に時間をかけて望む目標に向かって値を変更します。

This method smoothes the value with a spring-damper like algorithm that never overshoots the target value. This algorithm is based on Game Programming Gems 4, Chapter 1.10.

Note: This method attempts to avoid overshooting the target value. When deltaTime is 0.0f, this yields NaN for the currentVelocity. If you call back with a currentVelocity of NaN, this method returns a NaN.

using UnityEngine;

public class Example : MonoBehaviour { // Smooth towards the height of the target

public Transform target; float smoothTime = 0.3f; float yVelocity = 0.0f;

void Update() { float newPosition = Mathf.SmoothDamp(transform.position.y, target.position.y, ref yVelocity, smoothTime); transform.position = new Vector3(transform.position.x, newPosition, transform.position.z); } }