public EasingCurveFunction(EasingCurveFunction.Type type, float period, float amplitude, float overshoot) { this.type = type; this.period = period; this.amplitude = amplitude; this.overshoot = overshoot; }
public BackEase(EasingCurveFunction.Type type) : base(type, 0.3f, 1f, 1.70158f) { }