You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
274 B
GDScript
16 lines
274 B
GDScript
|
9 months ago
|
extends Control
|
||
|
|
class_name DebugInfoItemSub
|
||
|
|
|
||
|
|
var label: Label
|
||
|
|
var value: Label
|
||
|
|
|
||
|
|
|
||
|
|
func init(label_value: String) -> void:
|
||
|
|
label = ($Label as Label)
|
||
|
|
value = ($Value as Label)
|
||
|
|
label.text = label_value
|
||
|
|
|
||
|
|
|
||
|
|
func set_value(value_value: String) -> void:
|
||
|
|
value.text = value_value
|