public static float ApproachStep(float currentValue, float targetValue, float step) => (float)MathCommon.ApproachStep(currentValue, targetValue, step);
Example #2
0
 public static float ApproachStep(int currentValue, int targetValue, int step) => (int)MathCommon.ApproachStep(currentValue, targetValue, step);