2019-09-25 19:59:48 +00:00
|
|
|
extends AcceptDialog
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
|
|
|
var current_version : String = ProjectSettings.get_setting("application/config/Version")
|
|
|
|
$AboutUI/Pixelorama.text = "Pixelorama %s\n" % current_version
|
|
|
|
|
|
|
|
func _on_Website_pressed() -> void:
|
2019-12-03 15:59:50 +00:00
|
|
|
OS.shell_open("https://www.orama-interactive.com/pixelorama")
|
2019-09-25 19:59:48 +00:00
|
|
|
|
|
|
|
func _on_GitHub_pressed() -> void:
|
|
|
|
OS.shell_open("https://github.com/OverloadedOrama/Pixelorama")
|
|
|
|
|
|
|
|
func _on_Donate_pressed() -> void:
|
2019-12-03 15:59:50 +00:00
|
|
|
OS.shell_open("https://paypal.me/OverloadedOrama")
|
2019-09-25 19:59:48 +00:00
|
|
|
OS.shell_open("https://ko-fi.com/overloadedorama")
|