home scene

This commit is contained in:
Nordup 2024-11-21 05:20:31 +04:00
parent 5fe170dfc6
commit cce0bedbb1
21 changed files with 559 additions and 131 deletions

View file

@ -0,0 +1,14 @@
extends RichTextLabel
func _ready() -> void:
Debug.logged.connect(add_log)
meta_clicked.connect(on_meta_clicked)
func add_log(msg: String) -> void:
append_text(msg + "\n")
func on_meta_clicked(meta) -> void:
OS.shell_open(str(meta))