I need to create a motion tween in code that scales up and back to the original size with a bounce effect.
createjs.Tween.get(this.movieClip).wait(200).to({scaleX:1.10,scaleY:1.10}, 1000, createjs.Ease.bounceOut);
As far as I have got is, this scales up with bounce effect but stays at 110% and I need it to return to 100% all within the bounce effect. I can do this with a motion tween with bounce..., but need to be able to do this in code.
You can either chain two tweens, or use Ease.backOut to tween slightly over your target and then back.
Chaining two tweens
Overshooting and then moving back
Documentation: https://createjs.com/docs/tweenjs/classes/Ease.html