material-maker/addons/material_maker/widgets/about.gd

10 lines
257 B
GDScript3
Raw Normal View History

2018-08-11 11:33:24 +02:00
extends WindowDialog
func _ready():
$VBoxContainer/VBoxContainer1/ApplicationName.text = ProjectSettings.get_setting("application/config/name")+" v"+ProjectSettings.get_setting("application/config/release")
pass
func open_url(url):
OS.shell_open(url)