Moved everything into a file system. Links broken.

This commit is contained in:
2025-08-10 03:58:03 -04:00
parent 4e0b42eb23
commit 434216ca29
182 changed files with 1141 additions and 252 deletions

18
scripts/notice_panel.gd Normal file
View File

@@ -0,0 +1,18 @@
class_name NoticePanel extends PanelContainer
var message : String :
get:
return %Label.text
set(value):
%Label.text = value
var duration : float :
get:
return %Timer.wait_time
set(value):
%Timer.wait_time = value
%Timer.start()
func _on_timer_timeout() -> void:
queue_free()