SetContinueMode(true) not enabling the continue button
Posted: Mon Feb 15, 2016 10:22 pm
I am trying to disable the continue button for dialogue while my sequence finishes and have seen previous posts suggest SetContinueMode().
I am using the following sequence:
Everything works as expected until SetContinueMode(true)@3.
The continue button is disabled for this dialogue entry and the grandma object moves to both beacons.
I can see the SetContinueMode(true)@3 event happening in the console.
However, the continue button is never returned to continue the conversation.
I am using the following sequence:
Code: Select all
SetContinueMode(false);
MoveTo(TrailerBeacon, Grandma,2);
MoveTo(TrailerBeacon2, Grandma)@2;
SetContinueMode(true)@3
The continue button is disabled for this dialogue entry and the grandma object moves to both beacons.
I can see the SetContinueMode(true)@3 event happening in the console.
However, the continue button is never returned to continue the conversation.