Search found 2 matches

by ruanluyu
Sun Jan 22, 2023 3:59 am
Forum: Dialogue System for Unity
Topic: Unexpected behaviour of WaitForMessage
Replies: 4
Views: 482

Re: Unexpected behaviour of WaitForMessage

Hi, thanks for the fix, it works like a charm!
by ruanluyu
Thu Dec 29, 2022 12:14 pm
Forum: Dialogue System for Unity
Topic: Unexpected behaviour of WaitForMessage
Replies: 4
Views: 482

Unexpected behaviour of WaitForMessage

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.

Delay(1)->Message(A);
Delay(2)->Message(B);
WaitForMessage(A,B)->Message(C ...