Hello,
is there any way to complete current tween in the timeline and then remove following tweens? I'm inserting tweens like this:
tweens.push({
targets: this.sprite,
x: { value: 50, duration: 1000 },
y: { value: 50, duration: 1000 }
});
this.tweens.timeline({ tweens });
Then after some event I need to finish current tween and clear all following (if any). This seems to stop tweens:
this.tweens.killAll();
but I can't find anything to finish current tween at first.
Thanks