How to fix Sequencer bad First Frame.

Nice.

I spoke to a colleague, and he ask me they fix that their way on another project.

The problem seems that effectively the sequence is an actor, so it is ticked in the same group than other actors (and the order can’t be controlled)

The fix that in inserting a sequence manager, with a custom tick directly in the engine loop which control the sequences tick.
Another interesting fix is they can control much better the link between sequences.
By example, if a sequence finish and a new one start, they can tick the first frame of the new one directly so they remove the risk that the engine put a bad frame between.

I tried to change the tick group of my sequence actor in pre-physic, but it doesn’t work.
Updating sequence outside of the world tick process is a bit dirty… I’ll try if I can find some time to do so.