Version: 2017.3

Mathf.InverseLerp

Cambiar al Manual
public static float InverseLerp (float a, float b, float value);

Descripción

Calcula el parámetro linear t que produce el value interpolante dentro del rango [a, b].

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float walkSpeed = 5.0F; public float runSpeed = 10.0F; public float speed = 8.0F; void Start() { float parameter = Mathf.InverseLerp(walkSpeed, runSpeed, speed); } }

See Also: Lerp.