Files
ImmortalSect/src/UI/Panels/Manager/OrderPanel/OrderInformation.gd
T

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;