33 lines
634 B
Lua
33 lines
634 B
Lua
---@class WB_Tip_1_C:UUserWidget
|
|
---@field ShowTip UWidgetAnimation
|
|
---@field Image_Icon UImage
|
|
---@field TextBlock_Tips UTextBlock
|
|
--Edit Below--
|
|
---@type WB_Tip_1_C
|
|
local WB_Tip_1 = { bInitDoOnce = false; };
|
|
|
|
--[==[ Construct
|
|
function WB_Tip_1:Construct()
|
|
|
|
end
|
|
-- Construct ]==]
|
|
|
|
-- function WB_Tip_1:Tick(MyGeometry, InDeltaTime)
|
|
|
|
-- end
|
|
|
|
-- function WB_Tip_1:Destruct()
|
|
|
|
-- end
|
|
|
|
function WB_Tip_1:OnShowPanel(...)
|
|
self:SetTipsText(...)
|
|
-- 显示动画
|
|
self:PlayAnimation(self.ShowTip, 0, 1, EUMGSequencePlayMode.Forward, 1)
|
|
end
|
|
|
|
function WB_Tip_1:SetTipsText(InText)
|
|
self.TextBlock_Tips:SetText(InText)
|
|
end
|
|
|
|
return WB_Tip_1; |