Add VN textbox (needs some more bug fixing)

This commit is contained in:
2025-01-07 22:14:17 -06:00
parent 93c740f1ff
commit 75082e0598
10 changed files with 191 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
class_name VNSystem extends Node
const VNTextbox = preload("res://scripts/UI/VNTextbox.gd")
func getTextbox() -> VNTextbox:
return get_tree().current_scene.get_node("UI/VNTextbox") as VNTextbox;