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
305 B
GDScript
14 lines
305 B
GDScript
|
2 years ago
|
extends Control
|
||
|
2 years ago
|
class_name CoreItemSub
|
||
|
2 years ago
|
|
||
|
2 years ago
|
@onready var icon = $CoreIcon as TextureRect
|
||
|
|
@onready var slot = $CoreSlot as TextureRect
|
||
|
2 years ago
|
|
||
|
2 years ago
|
@onready var icon_empty = load("res://resource/ui/icon/core/empty.png")
|
||
|
2 years ago
|
|
||
|
2 years ago
|
func set_icon(value:Texture2D):
|
||
|
|
if value:
|
||
|
|
icon.texture = value
|
||
|
|
else:
|
||
|
|
icon.texture = icon_empty
|