StopResponseMenuSequence Method Issue

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
WeiYiHua
Posts: 10
Joined: Mon Mar 25, 2024 10:27 pm

StopResponseMenuSequence Method Issue

Post by WeiYiHua »

Hello,

In ConversationView, the StopResponseMenuSequence method calls m_sequencer.Stop(); followed by m_sequencer.StopAllCoroutines();. This stops the DestroyAfterOneFrame coroutine in the Sequencer, preventing SequencerCommand from being destroyed.

Would calling m_sequencer.StopAllCoroutines(); before m_sequencer.Stop(); directly fix this issue?
User avatar
Tony Li
Posts: 22107
Joined: Thu Jul 18, 2013 1:27 pm

Re: StopResponseMenuSequence Method Issue

Post by Tony Li »

Yes, you're correct. I've switched the order for version 2.2.48.
Post Reply