MagicNStuff/source/addons/panku_console/modules/about/url_button.gd
2025-02-25 22:07:11 +01:00

10 lines
108 B
GDScript

extends Button
@export var url:String
func _ready():
pressed.connect(
func():
OS.shell_open(url)
)