Files
Dawn-Godot/ui/UISingleton.gd
2026-01-09 20:52:47 -06:00

15 lines
245 B
GDScript

extends Node
var rootUi:RootUI = null
var DEBUG_MENU:
get():
if rootUi && rootUi.debugMenu:
return rootUi.debugMenu
return null
var TEXTBOX:
get():
if rootUi && rootUi.textBox:
return rootUi.textBox
return null