Unexpected behaviour of WaitForMessage
Posted: Thu Dec 29, 2022 12:14 pm
I want to run two sequence commands asynchronously and continue scene after they are done.
To be concise I use "Delay(1)" and "Delay(2)" here to describe the problem.
The following sequence blocks conversation.
The "OnSequencerMessage" of "SequencerCommandWaitForMessage" is never called.
Did I miss something?
To be concise I use "Delay(1)" and "Delay(2)" here to describe the problem.
The following sequence blocks conversation.
Code: Select all
Delay(1)->Message(A);
Delay(2)->Message(B);
WaitForMessage(A,B)->Message(C);
Continue()@Message(C);
Did I miss something?