Hello, we have a question about the Dialogue system.
We're using OnConversationLine() to translate dialouge text right before it is shown to the user. This works fine for 99% of cases, but we have dialogue options that say Yes No. Those are not being translated, and OnConversationLine() doesn't seem to trigger for them until they're clicked on. Is there an equivalent to OnConversationLine() that will catch dialogue options? Or is there a different way you would recommend going about this?
Alternative to OnConversationLine for Translation For Dialogue Options
-
- Posts: 21
- Joined: Mon Nov 27, 2023 8:28 pm
-
- Posts: 21
- Joined: Mon Nov 27, 2023 8:28 pm
Re: Alternative to OnConversationLine for Translation For Dialogue Options
For clarity's sake here are some screen shots depicting our issue.
- Attachments
-
- SpanishRatioRuins.JPG (112.17 KiB) Viewed 685 times
-
- SpanishRatioRuins_ResponseMenu.JPG (113.77 KiB) Viewed 685 times
Re: Alternative to OnConversationLine for Translation For Dialogue Options
Hi Calvin,
To translate response menu items, add an OnConversationResponseMenu(Response[]) method:
To translate response menu items, add an OnConversationResponseMenu(Response[]) method:
Code: Select all
void OnConversationResponseMenu(Response[] responses)
{
foreach (var response in responses)
{
response.formattedText.text = YourTranslationFunction(response.formattedText.text);
}
}
-
- Posts: 21
- Joined: Mon Nov 27, 2023 8:28 pm
Re: Alternative to OnConversationLine for Translation For Dialogue Options
Thanks Tony. You've allowed us to finally escape the Ratio Ruins! 
