#️⃣Change the language
If you want to change the language of the game you can do it this way:
public void Main()
{
Translator.Instance.CurrentLanguage = Language.Turkish;
}
Language enum:
public enum Language
{
English,
Russian,
SimplifiedChinese,
Spanish,
Portuguese,
German,
Japanese,
French,
Polish,
Turkish
}
Last updated