DialogueActor from A to B

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
fkkcloud
Posts: 298
Joined: Mon Oct 05, 2020 6:00 am

DialogueActor from A to B

Post by fkkcloud »

Hello,

I have DialogueActor component for both NonCine_Min and Cine_Min and both are the same actor called "Min".

Cine_Min is not active when the scene starts.
Later on, I call below for some cinematic.

Code: Select all

SetActive(NonCine_Min, false);
SetActive(Cine_Min, true);
I noticed that the NonCine_Min's Disable() calls unregister it.
Then, Cine_Min's Enable() calls register
which seems to be what I needed but wanted to confirm if this is the right use-case.

Thank you,
User avatar
Tony Li
Posts: 21981
Joined: Thu Jul 18, 2013 1:27 pm

Re: DialogueActor from A to B

Post by Tony Li »

Hi,

Yes, that's the correct use case.
Post Reply