Manage Localization System

Localization settings can be found in: Project Settings -> Meet and Talk -> Localization

Adding a New Language

To add a new language, in the Available Language List click the + Icon This will add a new language to the list, then you need to select the language you want to add from the list At the very end, you need to click Generate C# Enum

In Future Updates [Generate C# Enum] button will be replace by automated version

Managing Localization in Code

Get Localization Settings
LocalizationManager.Instance;
Get Actual Used Language (In-Game)
LocalizationManager.Instance.SelectedLang();
Change Selected Language (In-Game)
LocalizationManager.Instance.selectedLang = SystemLanguage.Polish;

Last updated