float easeOutCubic(float t) {
    t = t - 1.0;
    return (t * t * t + 1.0);
}

t = easeOutCubic(t);