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