mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-31 14:16:59 -04:00
11 lines
197 B
GDScript
11 lines
197 B
GDScript
extends RichTextLabel
|
|
|
|
@export var app_events: AppEvents
|
|
|
|
|
|
func _ready() -> void:
|
|
meta_clicked.connect(on_meta_clicked)
|
|
|
|
|
|
func on_meta_clicked(meta) -> void:
|
|
app_events.open_link_emit(str(meta))
|