- Aug 26, 2017
- 389
- 6,777
The first point is specific to AWAM, usually you have to modify the preferences screen to add a language (and it's higly preferable than sharing your persistent file). You copy the preferences screen from screens.rpy to your own .rpy and you add in it (after the "Skip" parameter for example):
The second point exists in every Renpy game... but it also depends on the dev. I specifically created one style per button to allow that.Python:vbox: style_prefix "radio" label ("Language") textbutton "English" action Language(None) textbutton "Español" action Language("spanish")
Note few untranslatable texts (like scene names in the gallery) will be fixed in the next update.
It works