33 lines
556 B
Lua
33 lines
556 B
Lua
---@class WB_Tip_7_C:UUserWidget
|
|
---@field ShowTip UWidgetAnimation
|
|
---@field Border_Tip2 UBorder
|
|
---@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; |