9 lines
131 B
GDScript
9 lines
131 B
GDScript
class_name DebugLabel
|
|
extends Control
|
|
|
|
var text: String:
|
|
get:
|
|
return get_child(1).text
|
|
set(value):
|
|
get_child(1).text = value
|