11 lines
250 B
GDScript
11 lines
250 B
GDScript
extends Control
|
|
|
|
func _ready() -> void:
|
|
custom_minimum_size = Vector2(180, 240)
|
|
custom_maximum_size = Vector2(180, 240)
|
|
pass
|
|
|
|
func set_order_info(info : Dictionary) -> bool:
|
|
$PanelContainer/VBoxContainer/Title.text = info['title']
|
|
return true;
|