Files
Endfield-Data/LuaScripts/UI/Widgets/SNSContentSticker.lua
2025-12-02 20:37:18 +07:00

18 lines
449 B
Lua

local SNSContentWithEmojiComp = require_ex('UI/Widgets/SNSContentWithEmojiComp')
SNSContentSticker = HL.Class('SNSContentSticker', SNSContentWithEmojiComp)
SNSContentSticker._OnSNSContentInit = HL.Override() << function(self)
SNSContentSticker.Super._OnSNSContentInit(self)
self.view.stickerImage:LoadSprite(UIConst.UI_SPRITE_SNS_STICKER, self.m_contentCfg.contentParam[0])
end
HL.Commit(SNSContentSticker)
return SNSContentSticker