Alternative to OnConversationLine for Translation For Dialogue Options

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
Voltage3000
Posts: 21
Joined: Mon Nov 27, 2023 8:28 pm

Alternative to OnConversationLine for Translation For Dialogue Options

Post by Voltage3000 »

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?
Voltage3000
Posts: 21
Joined: Mon Nov 27, 2023 8:28 pm

Re: Alternative to OnConversationLine for Translation For Dialogue Options

Post by Voltage3000 »

For clarity's sake here are some screen shots depicting our issue.
Attachments
SpanishRatioRuins.JPG
SpanishRatioRuins.JPG (112.17 KiB) Viewed 686 times
SpanishRatioRuins_ResponseMenu.JPG
SpanishRatioRuins_ResponseMenu.JPG (113.77 KiB) Viewed 686 times
User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Alternative to OnConversationLine for Translation For Dialogue Options

Post by Tony Li »

Hi Calvin,

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);
    }
}
Voltage3000
Posts: 21
Joined: Mon Nov 27, 2023 8:28 pm

Re: Alternative to OnConversationLine for Translation For Dialogue Options

Post by Voltage3000 »

Thanks Tony. You've allowed us to finally escape the Ratio Ruins! :D
User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Alternative to OnConversationLine for Translation For Dialogue Options

Post by Tony Li »

Happy to help!
Post Reply