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