34 lines
581 B
Lua
34 lines
581 B
Lua
|
---@class WB_Tip_2_C:UUserWidget
|
||
|
---@field ShowTip UWidgetAnimation
|
||
|
---@field Border_Tip2 UBorder
|
||
|
---@field Image_0 UImage
|
||
|
---@field TextBlock_Tip UTextBlock
|
||
|
--Edit Below--
|
||
|
---@type WB_Tip_2_C
|
||
|
local WB_Tip = { bInitDoOnce = false; };
|
||
|
|
||
|
function WB_Tip:Construct()
|
||
|
|
||
|
end
|
||
|
|
||
|
|
||
|
-- function WB_Tip:Tick(MyGeometry, InDeltaTime)
|
||
|
|
||
|
-- end
|
||
|
|
||
|
-- function WB_Tip:Destruct()
|
||
|
|
||
|
-- end
|
||
|
|
||
|
function WB_Tip:AddTip(TipStr)
|
||
|
self.TextBlock_Tip:SetText(TipStr)
|
||
|
self:PlayAnimation(self.ShowTip, 0, 1, EUMGSequencePlayMode.Forward, 1.0)
|
||
|
end
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
-- [Editor Generated Lua] function define End;
|
||
|
|
||
|
return WB_Tip;
|