How can I detect when the tween is finished to run?

I am using the tween Library in my project.
and I want to detect when the tween is finished to run another tween immediately.

Thank you for any advices.
Idan.

Never mind, I got along anyway

If you have fixed the issue, it be great to post the solution here for others if they run into the same problem. Thanks.

np, I found the solution from an old post.

.on('complete', () => {
    this.inPosition = true;
    this.moving = false;
    this.app.fire("input:ready");
});
1 Like

sounds good I will try that, thanks.