You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
GDScript
14 lines
306 B
GDScript
extends Control
|
|
class_name CoreItemSub
|
|
|
|
@onready var icon = $CoreIcon as TextureRect
|
|
@onready var slot = $CoreSlot as TextureRect
|
|
@onready var icon_empty = load("res://resource/ui/icon/core/empty.png")
|
|
|
|
|
|
func set_icon(value: Texture2D):
|
|
if value:
|
|
icon.texture = value
|
|
else:
|
|
icon.texture = icon_empty
|