7 lines
138 B
GDScript
7 lines
138 B
GDScript
extends HBoxContainer
|
|
|
|
@onready var _time_label = $TimeLabelControl/TimeLabel
|
|
|
|
func set_time(hour):
|
|
_time_label.text = str(hour) + ":00"
|