Files
Dawn-Godot/scripts/System/VNSystem.gd

6 lines
197 B
GDScript

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;