- Home /
Changing Quality Settings Language
So I want to add a language option to my game that will change the language of the subtitles and the interface. The Issue is that I don't know how I can change the language of the quality settings from my quality settings dropdown. I do have a way to kind-of do it, but it also changes the quality level when it changes the name. I'm not really sure what to do.
void Start() { if (LanguageSettings.isRussian) { int selection;
selection = qualityDropdown.GetComponent<TMP_Dropdown>().value = 0;
qualityDropdown.options[selection].text = "Ультра";
}
Your answer
Follow this Question
Related Questions
Programmatically set Sun Game Object 0 Answers
I am trying to spawn multiple asteroids but only one of them is screen wrapping. 0 Answers
ExecuteInEditMode not working in some scripts 1 Answer
AnimatorOverrideController can't take 1 argument 1 Answer
Is it possible to rotate the environment's reflection source at runtime? (C#) 1 Answer