28 lines
603 B
Lua
28 lines
603 B
Lua
---@class W_BuffShow_C:UUserWidget
|
|
---@field Image_Buff UImage
|
|
--Edit Below--
|
|
---@type W_BuffShow_C
|
|
local W_BuffShow = { bInitDoOnce = false; };
|
|
|
|
--[==[ Construct
|
|
function W_BuffShow:Construct()
|
|
|
|
end
|
|
-- Construct ]==]
|
|
|
|
-- function W_BuffShow:Tick(MyGeometry, InDeltaTime)
|
|
|
|
-- end
|
|
|
|
-- function W_BuffShow:Destruct()
|
|
|
|
-- end
|
|
|
|
function W_BuffShow:UpdateIcon(BuffType)
|
|
if Tables.BuffInfo[BuffType] then
|
|
self.Image_Buff:SetBrushFromTexture(UE.LoadObject(Tables.BuffInfo[BuffType].Icon))
|
|
self.Image_Buff:SetColorAndOpacity(Tables.BuffInfo[BuffType].Color)
|
|
end
|
|
end
|
|
|
|
return W_BuffShow; |