I have a DialogueSystemTrigger set to trigger on Start and play a sequence:
When I hit play in the editor, the game runs for about a second (maybe less?) before the fade kicks in. I seem to get the same result if I uncheck "Wait 1 Frame."
When a Dialogue System Trigger is set to OnStart or OnEnable, it attempts to wait until the end of the frame to allow other components' Start methods to finish first. Several Unity versions have a bug with execution order on frame 1 (the first frame of play mode) that cause "yield WaitForEndOfFrame" to incorrectly yield an extra frame. This only occurs if Unity is on frame 1. In version 2.2.17, I implemented a workaround. If a Dialogue System Trigger attempts to start on frame 1, it will start immediately instead of trying to wait until the end of the frame.