mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-24 02:17:27 -04:00
home scene
This commit is contained in:
parent
5fe170dfc6
commit
cce0bedbb1
21 changed files with 559 additions and 131 deletions
14
app/scripts/debug_log/debug_log.gd
Normal file
14
app/scripts/debug_log/debug_log.gd
Normal 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))
|
Loading…
Add table
Add a link
Reference in a new issue