PGRData/Script/matrix/xui/xuispecialtrainmusic/XUiGridSpecialTrainMusicMap.lua

34 lines
999 B
Lua
Raw Normal View History

local XUiGridSpecialTrainMusicMap = XClass(nil, "XUiGridSpecialTrainMusicMap")
function XUiGridSpecialTrainMusicMap:Ctor(stageId,ui,clickEvent)
self.StageId = stageId
self.GameObject = ui
self.Transform = ui.transform
self.ClickEvent = clickEvent
XTool.InitUiObject(self)
self.BtnNormal.CallBack = function()
self:OnClickBtnSelect()
end
self:RefreshStage()
end
function XUiGridSpecialTrainMusicMap:OnClickBtnSelect()
if self.ClickEvent then
self.ClickEvent(self.StageId)
end
end
function XUiGridSpecialTrainMusicMap:RefreshStage()
local config = XDataCenter.FubenManager.GetStageCfg(self.StageId)
if config then
self.RImgTitle:SetRawImage(config.StoryIcon)
self.TxtMusicName.text = config.Name
end
end
function XUiGridSpecialTrainMusicMap:SetSelect(isSelect)
self.PanelSelect.gameObject:SetActiveEx(isSelect)
self.PanelNormal.gameObject:SetActiveEx(not isSelect)
end
return XUiGridSpecialTrainMusicMap