Version: 2017.3

Mathf.SmoothDampAngle

Cambiar al Manual
public static float SmoothDampAngle (float current, float target, ref float currentVelocity, float smoothTime, float maxSpeed= Mathf.Infinity, float deltaTime= Time.deltaTime);

Parámetros

current La posición actual.
target La posición que intentamos alcanzar.
currentVelocity La velocidad actual, este valor es modificado por la función cada vez que la llame.
smoothTime Aproximadamente el tiempo que tardará en alcanzar el objetivo. Un valor menor alcanzará el objetivo más rápidamente.
maxSpeed Opcionalmente le permite fijar la velocidad máxima.
deltaTime El tiempo transcurrido desde la última llamada a esta función. Por defecto Time.deltaTime.

Descripción

Gradualmente cambia un ángulo dado en grados hacia un ángulo objetivo deseado con el tiempo.

The value is smoothed by some spring-damper like function. The function can be used to smooth any kind of value, positions, colors, scalars. The most common use is for smoothing a follow camera.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; public float smooth = 0.3F; public float distance = 5.0F; private float yVelocity = 0.0F; void Update() { float yAngle = Mathf.SmoothDampAngle(transform.eulerAngles.y, target.eulerAngles.y, ref yVelocity, smooth); Vector3 position = target.position; position += Quaternion.Euler(0, yAngle, 0) * new Vector3(0, 0, -distance); transform.position = position; transform.LookAt(target); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961