mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-23 14:06:50 +01:00
9 lines
210 B
GDScript3
9 lines
210 B
GDScript3
|
extends Control
|
||
|
|
||
|
func _on_RichTextLabel_meta_clicked(meta):
|
||
|
var err = OS.shell_open(meta)
|
||
|
if err == OK:
|
||
|
print("Opened link '%s' successfully!" % meta)
|
||
|
else:
|
||
|
print("Failed opening the link '%s'!" % meta)
|