Files
pomchronicles/main_panel.gd

13 lines
201 B
GDScript3
Raw Normal View History

2025-07-10 14:19:17 -04:00
extends PanelContainer
signal time_changed(time : float)
@onready var timer : Timer = $Timer
func _ready() -> void:
$Pass
func _process(delta: float) -> void:
time_changed.emit(timer.time_left)