1
0
forked from joey/godottest
2025-10-11 01:09:46 -04:00

10 lines
108 B
GDScript

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