hi everybody, how proceed to mix diferente ease at start and end : i cant find doc?
It possible ?
Example: Something like thats, assuming the tween compute the half/time in the process ?
TweenMax.to(bar, 1, {
rotation:-Math.PI/2,
ease:[Back.easeIn.config(1.2), Bounce.easeOut],
});
or like this ?
TweenMax.to(bar, 1, {
rotation:-Math.PI/2,
ease:{ start:Back.easeIn.config(1.2) , end:Bounce.easeOut },
});
or ...
TweenMax.to(bar, 1, {
rotation:-Math.PI/2,
ease:{ '0':Back.easeIn.config(1.2) , '0.5':Bounce.easeOut },
});
or...
TweenMax.to(bar, 1, {
rotation:-Math.PI/2,
easeIn:Back.config(1.2),
easeOut:Bounce,
});