Subtitle node is START?
Subtitle node is START?
Hello, I'm trying rework my response menu.
In ShowResponses method I get a subtitle param.
But subtitle.dialogueEntry is START node. I expected this to be the parent node for responses.
Show screenshot below.
In ShowResponses method I get a subtitle param.
But subtitle.dialogueEntry is START node. I expected this to be the parent node for responses.
Show screenshot below.
- Attachments
-
- Screenshot 2024-05-23 124849.jpg (53.75 KiB) Viewed 788 times
Re: Subtitle node is START?
The parent node for responses should be the "<>" node. How are you reworking your response menu? Are you using any DS special methods?
Re: Subtitle node is START?
I created my class by inheriting from StandardUIMenuPanel and override method ShowResponses.
Code: Select all
public override void ShowResponses(Subtitle subtitle, Response[] responses, Transform target)
{
base.ShowResponses(subtitle, responses, target);
....
}
Re: Subtitle node is START?
Hi,
I think what you're seeing is the "<>" subtitle. Here's an example scene:
DS_TestEonyanov_2024-05-23.unitypackage
It prints the dialogue entry ID along with the subtitle text. It confirms that ShowResponses() receives the "<>" subtitle entry.
I think what you're seeing is the "<>" subtitle. Here's an example scene:
DS_TestEonyanov_2024-05-23.unitypackage
It prints the dialogue entry ID along with the subtitle text. It confirms that ShowResponses() receives the "<>" subtitle entry.
Re: Subtitle node is START?
Thanks for an example.Tony Li wrote: ↑Thu May 23, 2024 4:54 pm Hi,
I think what you're seeing is the "<>" subtitle. Here's an example scene:
DS_TestEonyanov_2024-05-23.unitypackage
It prints the dialogue entry ID along with the subtitle text. It confirms that ShowResponses() receives the "<>" subtitle entry.
It's strange, but in your scene I get the correct logs even on my database.
I'm trying to understand what the difference is between the default DialogueManager prefab and ours. Maybe some of our scripts have some effect.
Here is logs on our scene with your database: Do you have any ideas where else to look?
Re: Subtitle node is START?
Hi,
Does your <START> entry have a link directly to the responses?
Can you send a reproduction project to tony (at) pixelcrushers.com?
Does your <START> entry have a link directly to the responses?
Can you send a reproduction project to tony (at) pixelcrushers.com?
Re: Subtitle node is START?
Hi,
No, <START> doesn't have a link directly to the responses. And, as I wrote above, in your example everything is fine with my database.
I'll try to create a reproduction project to send to you.
No, <START> doesn't have a link directly to the responses. And, as I wrote above, in your example everything is fine with my database.
I'll try to create a reproduction project to send to you.
Re: Subtitle node is START?
I found an issue. There was a problem in our Voiceover script. It continued the conversion if was an empty text in subtitle when received OnConversationLine event.
Re: Subtitle node is START?
Hi,
Was that the root cause? Is it working now?
Was that the root cause? Is it working now?