31 lines
687 B
Lua
31 lines
687 B
Lua
---@class WB_DefenceItem_C:UUserWidget
|
|
---@field Image_PartIcon UImage
|
|
--Edit Below--
|
|
---@type WB_DefenceItem_C
|
|
local WB_DefenceItem = { bInitDoOnce = false; };
|
|
|
|
--[==[ Construct
|
|
function WB_DefenceItem:Construct()
|
|
|
|
end
|
|
-- Construct ]==]
|
|
|
|
-- function WB_DefenceItem:Tick(MyGeometry, InDeltaTime)
|
|
|
|
-- end
|
|
|
|
-- function WB_DefenceItem:Destruct()
|
|
|
|
-- end
|
|
|
|
--- @param InType EMedicationType 类型
|
|
---@param InCount int 数量
|
|
function WB_DefenceItem:SetOtherItemType(InType, InCount)
|
|
local Info = UGCItemSystem.GetItemData(InType);
|
|
UE.AsyncLoadObject(Info.ItemSmallIcon_n, function(TargetObject)
|
|
self.Image_PartIcon:SetBrushFromTexture(TargetObject);
|
|
end)
|
|
end
|
|
|
|
|
|
return WB_DefenceItem; |