Timeline Questions

Just some random questions in regards to the Timeline class:

Anyway to have the timeline auto start instead of manually calling the play method?

Can the play method at least return this, the instance of the timeline?

Would it be bad to add tweens to a timeline while it is currently playing?

bump

(sorry, I have to know)

I don’t think Phaser could know when you want to start the timeline. Just do something like

timeline.add(…).add(…).play();

play() and some other methods probably should return the instance. You could open an issue or make a PR.

You should be able to add tweens to the end while it’s playing, AFAIK.