Hi,
How could you add more than one 'method' to a UITweener, knowing that the 'Begin' function is static?
I would like to add a method for the easing, and a delegate for when the tween finishes, but with this code, I cannot really add the onFinished :
TweenPosition.Begin(obj, 1, Vector3.zero ).method = UITweener.Method.EaseOut;
.onFinished = ...
maybe with a UITweener instance, but how does it work with "Begin" ?
Thanks