9 lines
131 B
GDScript3
Raw Normal View History

2024-01-18 22:35:17 +00:00
class_name DebugLabel
extends Control
2024-01-28 23:55:49 +00:00
var text: String:
2024-01-18 22:35:17 +00:00
get:
return get_child(1).text
set(value):
get_child(1).text = value