mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-12 10:47:10 +01:00
10 lines
211 B
GDScript
10 lines
211 B
GDScript
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)
|