21 lines
437 B
GDScript
21 lines
437 B
GDScript
extends Control
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
pass # Replace with function body.
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|
|
|
|
|
|
func _on_rich_text_label_meta_clicked(meta):
|
|
OS.shell_open(str(meta))
|
|
pass # Replace with function body.
|
|
|
|
|
|
func _on_close_button_pressed():
|
|
visible = false
|
|
pass # Replace with function body.
|