Importing Translated Text into Custom Script
Importing Translated Text into Custom Scripts
Overview
The LanguageManager system not only handles in-game text translations for UI elements, but it also allows you to fetch translated text directly into your custom scripts. This can be useful when you need to handle translated content programmatically. In this section, we’ll show you how to integrate translated text into your custom scripts, focusing on retrieving the translations using the LanguageManager's GetTextEntryByID()
method.
Example: Displaying Translated Error Messages
The following example demonstrates how to use the LanguageManager to retrieve a translated error message based on the current language and display it in a Text
or TextMeshProUGUI
component in Unity. This is useful for displaying dynamic content like error messages, notifications, or other in-game feedback that needs to adapt to the player's selected language.
Here’s how you can integrate text translations into a custom script:
Step-by-Step Breakdown
Assign Text Components: Start by adding a reference to a
Text
orTextMeshProUGUI
component in your script. These components will display the text retrieved from the LanguageManager.Get the Text ID: The LanguageManager stores each text entry using a unique
textID
. In this example, we retrieve the translated text based on thetextID
provided.Retrieve the Translation: Use the LanguageManager method
GetTextEntryByID(textID)
to fetch the translated text. This function returns the text corresponding to the providedtextID
in the player's currently selected language.Display the Translation: After fetching the translated text, assign it to your UI element (such as
Text
orTextMeshProUGUI
), and it will update automatically based on the current language.
Script Example
Here’s a script that demonstrates how to import and use translated text in a custom Unity script:
Key Concepts
Using
GetTextEntryByID()
: This is the core method for retrieving translations. Simply pass thetextID
associated with the text you want, and LanguageManager will return the correct translation for the current language.Displaying in
Text
orTextMeshProUGUI
: You can directly assign the retrieved text to eitherText
(Unity UI) orTextMeshProUGUI
components, depending on your project setup. This allows you to use either Unity's built-in text system or TextMeshPro, both of which are compatible with LanguageManager.
Usage Scenario
Imagine you are creating an in-game error popup or notification. Instead of hard-coding the error message in a single language, you can use LanguageManager to ensure that the message appears in the player’s selected language, enhancing the user experience.
For example, if a player tries to perform an invalid action, you can fetch a translated error message using GetTextEntryByID("error_invalid_action")
and display it dynamically on the UI.
Last updated