attempts to make the ease middle animation decent

This commit is contained in:
yugecin 2016-12-25 21:11:12 +01:00
parent 1c2fac02be
commit bcb1ca1296

View File

@ -299,7 +299,7 @@ public enum AnimationEquation {
@Override
public float calc(float t) {
float ct = 1f - t;
return 3f * ct * ct * t * 0.6f + 3 * ct * t * t * 0.4f + t * t * t * 1f;
return 3f * ct * ct * t * 0.1f + 3 * ct * t * t * 0.9f + t * t * t * 1f;
}
};