Skip to content

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.

C#
public Brine2D.UI.UITweenSequence Then(Brine2D.UI.UITween tween);

Parameters

tween UITween

Returns

UITweenSequence

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

to System.Single

duration System.Single

setter System.Action<System.Single>

easing System.Func<System.Single,System.Single>

Returns

UITweenSequence