34 lines
590 B
Lua
34 lines
590 B
Lua
|
---@class WB_Tip_6_C:UUserWidget
|
||
|
---@field ShowTip UWidgetAnimation
|
||
|
---@field Border_SetTopTipsColor UBorder
|
||
|
---@field Text_Tip UTextBlock
|
||
|
---@field TextBlock_0 UTextBlock
|
||
|
--Edit Below--
|
||
|
---@type WB_Tip_3_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.Text_Tip:SetText(TipStr)
|
||
|
self:PlayAnimation(self.ShowTip, 0, 1, EUMGSequencePlayMode.Forward, 1.0)
|
||
|
end
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
-- [Editor Generated Lua] function define End;
|
||
|
|
||
|
return WB_Tip;
|