basic dialogue progression

This commit is contained in:
wooshings
2026-09-04 21:04:58 -07:00
parent 624a6c1c73
commit 3112d6b8bf
13 changed files with 98 additions and 2 deletions
+5 -2
View File
@@ -1,5 +1,8 @@
extends Node
class_name Game
func _process(_delta: float) -> void:
pass
@export var dialogue_scene: DialogueScene
func _ready() -> void:
add_child(await DialogueEncounter.new(self.dialogue_scene))