Ok, I already have done that, so now I need to create a function o a command that when you press a button, it will change the lenguaje and restart the game
Something like this:
Code: Select all
def changelang(langtobe):
Language(langtobe)
$ renpy.full_restart()
Because if I do it like this:
Code: Select all
imagebutton auto "images/gui/botones/spanish_%s.png" hovered tt.Action("Juega el juego en español") action Language("spanish")
It doesn't restart the game and it doesn't change the menus or images already displayed
Can some one help me with this?
Also, how do you change it to its original lenguaje?
Like this? is not working for me:
Code: Select all
imagebutton auto "images/gui/botones/english_%s.png" hovered tt.Action("Play the game in english") action Language(None)