feat: Add core game scene with manager initialization, a dynamic message bar, scarcity-based tile respawn, and a new star tile asset.
This commit is contained in:
+9
-7
@@ -1075,13 +1075,15 @@ func sync_full_grid_data(data: PackedInt32Array):
|
||||
|
||||
func _on_timer_updated(time_remaining: float):
|
||||
# Update standalone timer display
|
||||
var time_text = str(int(time_remaining))
|
||||
|
||||
var timer_panel = get_node_or_null("GoalsTimer")
|
||||
if timer_panel:
|
||||
var timer_label = timer_panel.get_node_or_null("VBox/TimerLabel")
|
||||
if timer_label:
|
||||
timer_label.text = time_text
|
||||
# DISABLED: Now used for PowerUp Cooldown (handled in UIManager)
|
||||
# var time_text = str(int(time_remaining))
|
||||
#
|
||||
# var timer_panel = get_node_or_null("GoalsTimer")
|
||||
# if timer_panel:
|
||||
# var timer_label = timer_panel.get_node_or_null("VBox/TimerLabel")
|
||||
# if timer_label:
|
||||
# timer_label.text = time_text
|
||||
pass
|
||||
|
||||
func _on_score_updated(peer_id: int, new_score: int):
|
||||
# Update player's score display
|
||||
|
||||
Reference in New Issue
Block a user