mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-31 09:49:06 +03:00
11 lines
226 B
GDScript
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))
|