NGEasing Lerp Method ScoreFlash API Documentation V4.6.0
Simple linear interpolation. This gives you the same result as Mathf.Lerp(from, to, t) and also clamps time between 0 and 1, so you don't have to worry about values less than 0 or larger than 1.

Namespace: NarayanaGames.Common
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax

public static float Lerp(
	float from,
	float to,
	float frac
)

Return Value

linear interpolation from from to to
See Also