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