mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 23:10:08 +01:00
11 lines
212 B
GDScript
11 lines
212 B
GDScript
|
|
extends Panel
|
|
|
|
|
|
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)
|