10 lines
108 B
GDScript
10 lines
108 B
GDScript
extends Button
|
|
|
|
@export var url:String
|
|
|
|
func _ready():
|
|
pressed.connect(
|
|
func():
|
|
OS.shell_open(url)
|
|
)
|