public static float SmoothStart5SmoothStop2(float t)
 {
     return(Mathf.Lerp(SmoothStart.SmoothStart5(t), SmoothStop.SmoothStop2(t), t));
 }
예제 #2
0
 public static float SmoothStop5(float t)
 {
     return(GeneralEase.Flip(SmoothStart.SmoothStart5(GeneralEase.Flip(t))));
 }