UITweenSequence.Then Method
Definition
Namespace: Brine2D.UI
| Overloads | |
|---|---|
| Then\(UITween\) | Appends a tween to the sequence and returns this for chaining. |
| Then\(float, float, float, Action<float>, Func<float,float>\) | Convenience overload — constructs and appends a tween in one call. |
UITweenSequence.Then\(UITween\) Method
Appends a tween to the sequence and returns this for chaining.
Parameters
tween UITween
Returns
UITweenSequence.Then\(float, float, float, Action\<float\>, Func\<float,float\>\) Method
Convenience overload — constructs and appends a tween in one call.
C#
public Brine2D.UI.UITweenSequence Then(float from, float to, float duration, System.Action<float> setter, System.Func<float,float>? easing=null);
Parameters
from System.Single
duration System.Single
setter System.Action<System.Single>
easing System.Func<System.Single,System.Single>