Files
Dawn-Godot/scripts/System/VNSystem.gd
2025-01-08 16:53:40 -06:00

9 lines
272 B
GDScript

class_name VNSystem extends Node
const VNTextbox = preload("res://scripts/UI/VNTextbox.gd")
func getSystems():
return get_tree().current_scene.get_node("Systems");
func getTextbox() -> VNTextbox:
return get_tree().current_scene.get_node("UI/VNTextbox") as VNTextbox;