10 lines
221 B
GDScript
10 lines
221 B
GDScript
extends TextureButton
|
|
|
|
func _ready():
|
|
pressed.connect(self._button_pressed)
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _button_pressed():
|
|
OS.shell_open("http://cawez.ca/hiraeth")
|