UGCProjects/TwoOnTwo/Script/UI/Tip/WB_FrontSightTip.lua

19 lines
403 B
Lua
Raw Normal View History

2025-01-04 23:00:19 +08:00
---@class WB_FrontSightTip_C:UUserWidget
---@field ShowTip UWidgetAnimation
---@field TextBlock_Tip UTextBlock
--Edit Below--
local WB_FrontSightTip = { bInitDoOnce = false }
function WB_FrontSightTip:Construct()
end
function WB_FrontSightTip:AddTip(TipStr)
self.TextBlock_Tip:SetText(TipStr)
self:PlayAnimation(self.ShowTip, 0, 1, EUMGSequencePlayMode.Forward, 1.0)
end
return WB_FrontSightTip