C# Class GoTweenFlow, GoKit

TweenFlows are used for creating a chain of Tweens via the append/prepend methods. You can also get timeline like control by inserting Tweens and setting them to start at a specific time. Note that TweenFlows do not honor the delays set within regular Tweens. Use the append/prependDelay method to add any required delays
Inheritance: AbstractGoTweenCollection
Mostrar archivo Open project: prime31/GoKit Class Usage Examples

Public Methods

Method Description
GoTweenFlow ( ) : System.Collections
GoTweenFlow ( GoTweenCollectionConfig, config ) : System.Collections
insert ( float startTime, AbstractGoTween, tween ) : GoTweenFlow,

inserts a Tween and sets it to start at the given startTime

Private Methods

Method Description
insert ( TweenFlowItem item ) : void

the item being added already has a start time so no extra parameter is needed

Method Details

GoTweenFlow() public method

public GoTweenFlow ( ) : System.Collections
return System.Collections

GoTweenFlow() public method

public GoTweenFlow ( GoTweenCollectionConfig, config ) : System.Collections
config GoTweenCollectionConfig,
return System.Collections

insert() public method

inserts a Tween and sets it to start at the given startTime
public insert ( float startTime, AbstractGoTween, tween ) : GoTweenFlow,
startTime float
tween AbstractGoTween,
return GoTweenFlow,