mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-05 23:40:07 +01:00
14 lines
262 B
GDScript
14 lines
262 B
GDScript
extends Panel
|
|
|
|
func _on_english_pressed():
|
|
TranslationServer.set_locale("en")
|
|
|
|
func _on_spanish_pressed():
|
|
TranslationServer.set_locale("es")
|
|
|
|
func _on_japanese_pressed():
|
|
TranslationServer.set_locale("ja")
|
|
|
|
func _on_play_pressed():
|
|
get_node("audio").play()
|