8 lines
150 B
GDScript
8 lines
150 B
GDScript
extends Button
|
|
|
|
|
|
func set_slot_name_date(p_name: String, p_date: String):
|
|
$VBoxContainer/slot_name.text = p_name
|
|
$VBoxContainer/date.text = p_date
|
|
|