mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
830ae623d2
Greek translation is still in progress
12 lines
459 B
GDScript
12 lines
459 B
GDScript
extends WindowDialog
|
|
|
|
func _on_SplashDialog_about_to_show() -> void:
|
|
var current_version : String = ProjectSettings.get_setting("application/config/Version")
|
|
window_title = "Pixelorama" + " " + current_version
|
|
$Contents/DevelopedBy.text = "Pixelorama" + " " + current_version + " - " + tr("MADEBY_LABEL")
|
|
|
|
$Contents/ArtCredits.text = tr("Art by") + ": Erevos"
|
|
|
|
func _on_ArtCredits_pressed() -> void:
|
|
OS.shell_open("https://www.instagram.com/erevos_art")
|