Hello,
Is it possible to change the language during the game in the option menu?
And if not is it possible to change the language in the installation setup of the game?
I want my game as an english and a german version.
Yes, you can use the static function ChangeTranslation
static bool Game.ChangeTranslation(string newTranslationName)
if (Game.ChangeTranslation("Polish") == true) {
Display("Now using Polish translation!");
} else {
Display("Unable to change the translation!");
}
There are also other helpful functions, like IsTranslationAvailable and TranslationFilename, if you want to change translations while the game is running. It's all in the manual. ;)
Thank you very much and warm regards CrashPL!