Ever since updating the Dialogue System for Unity to its most-recent version (2.2.45), using the SetContinueMode() sequencer command seems to be unintentionally triggering autoplay where it didn't previously.
I've been using SetContinueMode to introduce forced 'pauses' to prevent the player from continuing to the next step in the conversation so I can do things in the background. (Such as moving the player to a new location, changing the background, and so on.) This is the specific command I'm using for this:
Code: Select all
required SetContinueMode(false); SetContinueMode(original)@3;
In the Dialogue Manager's main game object, 'Continue Button' is set to 'Always,' and I've not touched any settings in there, either.
So, my working theory is that something changed in the patch, which is now causing this unwanted behavior.
Has anyone else run into this issue?