Port audio, gui, mono, networking and viewport demos to Godot 3.1

This commit is contained in:
Rémi Verschelde
2019-02-26 14:50:18 +01:00
parent faae60ac2f
commit a38b315064
77 changed files with 482 additions and 3092 deletions

View File

@@ -3,4 +3,8 @@ extends Panel
func _on_RichTextLabel_meta_clicked(meta):
OS.shell_open(meta)
var err = OS.shell_open(meta)
if (err == OK):
print("Opened link '%s' successfully!" % meta)
else:
print("Failed opening the link '%s'!" % meta)