Files
Dawn-Godot/scripts/System/VNSystem.gd
2025-05-01 19:08:20 -05: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;