Here's a simple tween in Tween.js. A simple loop happens after an interval.
cjs.Tween.get(mySymbol).wait(50).to({x:10}).to({x:0});
Is there a way to make it repeat say 5 times after the interval, without repeating the interval?
By adding loop:true
I can make it loop but the loop would include the wait().
cjs.Tween.get(mySymbol, {loop:true}).wait(50).to({x:10}).to({x:0});
Is there any way to add tweens to the timeline sequentially in Tween.js?