Files
godot-demo-projects/gui/rich_text_bbcode/rich_text_bbcode.gd
Aaron Franke 0d1f16d073 Remove panel nodes that don't have panels
Replace with Control nodes
2020-10-01 23:46:50 -04:00

9 lines
210 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)