Open Darkwing-Duck opened 6 years ago
I would also love it if Easing worked with DoPath().
I alse meet this problem.
Hi,
Easing does work with paths, except for eases that would go beyond (or before) the path. So normal curves like OutQuad/etc are ok, but curves that go beyond 1 or below 0 are not (because there's no way for a path to know what to do when the curve exceeds its limits).
I see, thank you.
Hi, I have some specific issue with DoPath method. I use the code:
token.transform.DOPath(path, duration).SetEase(Ease.OutBack)
But it will not animate as I expect. It is some sharp animation. But when I use Linear easing its works fine. But I need just OutBack easing.How I can use easing functions with DoPath method?