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

28
chatboxController.gd Normal file
View file

@ -0,0 +1,28 @@
extends PanelContainer
signal display_finished
@export var rich_label : RichTextLabel
var active : bool = false
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
GameManager.show_chat_signal.connect(displayMessage)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
visible = active
if Input.is_action_just_pressed("advance_prompt"):
hideMessage()
func hideMessage():
active = false
GameManager.change_player_movement(true)
func displayMessage(message = "String"):
rich_label.text = message
active = true
GameManager.change_player_movement(false)