Files
seeding-planets/gui/credits/socials/scripts/link_button.gd

10 lines
132 B
GDScript

extends Button
@export var link="TODO"
func _ready():
pressed.connect(
func ():
OS.shell_open(link)
)