+2 votes

(Sorry for my english i'm using google translator)
I want to make it so that using the MenuButton it was possible to change the language, but I can't.
Here are my ideas:

onready var menuButton = get_node('ColorRect/MenuButton')

func ready():
var popup = menuButton.get
popup()
popup.connect("idpressed", self, "filemenu")
$ColorRect/MenuButton.getpopup().additem('keyru', 0)
$ColorRect/MenuButton.get
popup().additem('keyen', 1)

func file_menu( id ):
match id:
0:
TranslationServer.translate('ru')
1:
TranslationServer.translate('en')

in Engine by (61 points)

Please log in or register to answer this question.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.