mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
1c56fc60d8
Moved Material Spray to another repository. Renamed the addon directory to material_maker
10 lines
257 B
GDScript
10 lines
257 B
GDScript
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)
|