Man, I love this forum ?
Ended up with my own combined function, to ease cubic in and exponential out. Turns out all I really needed was to get this function thing right. Never used it before.
I’ll share my final result in a simplified version, case anyone desires to make good use of it.
Thanks a lot for your help =)
myEase = function (t, b, c, d) {
t /= d/2;
if (t < 1) return c/2*t*t*t + b;
t --;
return c/2 * ( -Math.pow( 2, -10 * t) + 2 ) + b;
};
dur = 1
myEase(time-inPoint,1,100,dur)