Files
godot-demo-projects/misc/multiple_windows/scenes/window/url_opener.gd
2025-10-08 15:00:22 -07:00

11 lines
226 B
GDScript

extends RichTextLabel
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
meta_clicked.connect(_on_meta_clicked)
func _on_meta_clicked(meta: Variant) -> void:
OS.shell_open(str(meta))