wea re cooking 🔥

This commit is contained in:
Tabby 2025-05-16 22:13:34 +10:00
parent 2b90112231
commit 34eb42616d
25 changed files with 247 additions and 77 deletions

View file

@ -8,8 +8,13 @@ signal show_chat_signal(String)
signal show_item_signal(String, Texture)
signal prepare
signal gaming
signal channel_win
signal channel_lose
signal update_data(score : int, lives : int)
signal skip_intro
@export var broken_tv_remote : Texture
var are_we_skipping_intro : bool = false
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
@ -42,3 +47,6 @@ func prepare_for_gaming():
func actually_gaming():
gaming.emit()
func send_update_data(score : int, lives: int):
update_data.emit(score, lives)