9 lines
131 B
GDScript3
Raw Normal View History

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