OptionalcallbackScope?: anyOptionalcompleteDelay?: string | number | Function | object | any[]The time the chain will wait before the onComplete event is dispatched once it has completed, in ms.
Optionaldelay?: number | FunctionThe number of milliseconds to delay before the chain will start.
Optionalloop?: string | number | Function | object | any[]The number of times the chain will repeat. (A value of 1 means the chain will play twice, as it repeated once.) The first loop starts after every tween has completed once.
OptionalloopDelay?: string | number | Function | object | any[]The time the chain will pause before returning to the start for a repeat.
OptionalonActive?: TweenOnActiveCallbackA function to call when the chain becomes active within the Tween Manager.
OptionalonActiveParams?: any[]Additional parameters to pass to onActive.
OptionalonComplete?: TweenOnCompleteCallbackA function to call when the chain completes.
OptionalonCompleteParams?: any[]Additional parameters to pass to onComplete.
OptionalonLoop?: TweenOnLoopCallbackA function to call each time the chain loops.
OptionalonLoopParams?: any[]Additional parameters to pass to onLoop.
OptionalonPause?: TweenOnPauseCallbackA function to call when the chain is paused.
OptionalonPauseParams?: any[]Additional parameters to pass to onPause.
OptionalonResume?: TweenOnResumeCallbackA function to call when the chain is resumed after being paused.
OptionalonResumeParams?: any[]Additional parameters to pass to onResume.
OptionalonStart?: TweenOnStartCallbackA function to call when the chain starts playback, after any delays have expired.
OptionalonStartParams?: any[]Additional parameters to pass to onStart.
OptionalonStop?: TweenOnStopCallbackA function to call when the chain is stopped.
OptionalonStopParams?: any[]Additional parameters to pass to onStop.
Optionalpaused?: booleanDoes the chain start in a paused state (true) or playing (false)?
Optionalpersist?: booleanWill the Tween be automatically destroyed on completion, or retained for future playback?
The object, or an array of objects, to run each tween on.
Optionaltweens?: TweenBuilderConfig[]The tweens to chain together.
The scope (or context) for all of the callbacks. The default scope is the chain.