---@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