mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
17 lines
256 B
GDScript
17 lines
256 B
GDScript
extends Control
|
|
|
|
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():
|
|
$Audio.play()
|