13 lines
338 B
GDScript
13 lines
338 B
GDScript
extends PanelContainer
|
|
class_name CargoItem
|
|
|
|
@onready var item_texture: TextureRect = %ItemTexture
|
|
@onready var item_label: Label = %ItemLabel
|
|
|
|
func init(type: String, count: int):
|
|
item_texture.texture = DataHandler.type_to_texture(type)
|
|
item_label.text = "x%s" % count
|
|
|
|
func update_count(count: int):
|
|
item_label.text = "x%s" % count
|