Timeline supported in 3.80?

I am upgrading from 3.55 to 3.80. Is there a good way to convert my timelines to 3.80?

If it’s a one-by-one tween sequence, you can use tween chains. Otherwise, you can use the new timelines with a tween event config.

Thanks! Is it possible to use a callback with the new timeline when the it completes? I get an error that callbacks are not available.

Yes, you can do

timeline.on(Phaser.Time.Events.COMPLETE, () => {
  // …
});

Thank you!