AssemblyCSharp.MathUtil.LerpTo C# (CSharp) Method

LerpTo() public static method

public static LerpTo ( float &parameter, float value, float t ) : void
parameter float
value float
t float
return void
        public static void LerpTo(ref float parameter, float value, float t)
        {
            parameter = Mathf.Lerp(parameter, value, t);
        }