very good progress, next up: tripping and starting the game

This commit is contained in:
Tabby 2025-05-15 15:28:16 +10:00
parent 8be34b6c12
commit f16d046a6c
14 changed files with 206 additions and 19 deletions

View file

@ -3,6 +3,9 @@ extends Node
# it is I, the manaegr of the games~
signal zoom_out_signal
signal allow_movement(bool)
signal show_chat_signal(String)
signal show_item_signal(String, Texture)
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
@ -15,3 +18,12 @@ func _process(delta: float) -> void:
func play_zoom_out():
zoom_out_signal.emit()
func show_chat(text : String):
show_chat_signal.emit(text)
func show_item(text : String, texture : Texture):
show_item_signal.emit(text,texture)
func change_player_movement(state : bool):
allow_movement.emit(state)