Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseCalculates the Lerp parameter between of two values.
var walkSpeed = 5.0; var runSpeed = 10.0; var speed = 8.0;
function Start() { // parameter is now 3 / 5 var parameter : float = Mathf.InverseLerp(walkSpeed, runSpeed, speed); }
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); } }