This commit is contained in:
puxuan 2025-07-15 20:58:20 +08:00
parent caf20c9617
commit a6245691d7
4 changed files with 20 additions and 17 deletions

View File

@ -435,13 +435,13 @@ GConst.HERO_FRAME = {
} }
GConst.FRAME_QLT = { GConst.FRAME_QLT = {
[1] = "hero_frame_1", [1] = "frame_1",
[2] = "hero_frame_2", [2] = "frame_2",
[3] = "hero_frame_1", [3] = "frame_3",
[4] = "hero_frame_1", [4] = "frame_4",
[5] = "hero_frame_1", [5] = "frame_5",
[6] = "hero_frame_1", [6] = "frame_6",
[7] = "hero_frame_1", [7] = "frame_7",
} }
GConst.HERO_SMALL_FRAME_QLT = { GConst.HERO_SMALL_FRAME_QLT = {
@ -477,11 +477,11 @@ GConst.HERO_DEC_QLT = {
GConst.HERO_FRAME_QLT = { GConst.HERO_FRAME_QLT = {
[1] = "hero_frame_1", [1] = "hero_frame_1",
[2] = "hero_frame_2", [2] = "hero_frame_2",
[3] = "hero_frame_3", [3] = "hero_frame_1",
[4] = "hero_frame_4", [4] = "hero_frame_1",
[5] = "hero_frame_5", [5] = "hero_frame_1",
[6] = "hero_frame_6", [6] = "hero_frame_1",
[7] = "hero_frame_7", [7] = "hero_frame_1",
} }
GConst.HERO_FRAME_BG_QLT = { GConst.HERO_FRAME_BG_QLT = {

View File

@ -68,7 +68,6 @@ function ArenaMatchUI:onLoadRootComplete()
-- 匹配结果页 -- 匹配结果页
self.matchResult = uiMap["arena_match_ui.match_result"] self.matchResult = uiMap["arena_match_ui.match_result"]
self.btnClose = uiMap["arena_match_ui.match_result.btn_close"] self.btnClose = uiMap["arena_match_ui.match_result.btn_close"]
self.spineVS = uiMap["arena_match_ui.match_result.spine_vs"]
self.matchAnimator = self.matchResult:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR) self.matchAnimator = self.matchResult:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR)
-- 对手信息 -- 对手信息
self.matchAvatar = CellManager:addCellComp(uiMap["arena_match_ui.match_result.match.info.player_head_cell"], GConst.TYPEOF_LUA_CLASS.PLAYER_HEAD_CELL) self.matchAvatar = CellManager:addCellComp(uiMap["arena_match_ui.match_result.match.info.player_head_cell"], GConst.TYPEOF_LUA_CLASS.PLAYER_HEAD_CELL)
@ -159,9 +158,9 @@ function ArenaMatchUI:showMatchResult()
self.matchResult:setActive(true) self.matchResult:setActive(true)
UIManager:setBarsVisible(self, true) UIManager:setBarsVisible(self, true)
self.spineVS:playAnimComplete("born", false, true, function() -- self.spineVS:playAnimComplete("born", false, true, function()
self.spineVS:playAnim("idle", true, true) -- self.spineVS:playAnim("idle", true, true)
end) -- end)
self.txStart:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE)) self.txStart:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE))
self.txConst:setText(DataManager.ArenaData:getFightCostNum()) self.txConst:setText(DataManager.ArenaData:getFightCostNum())

View File

@ -170,7 +170,7 @@ end
function HeroCell:_refresh(heroInfo, isGray) function HeroCell:_refresh(heroInfo, isGray)
self.clickCallback = nil self.clickCallback = nil
self.maskImg2:setActive(isGray) self.maskImg2:setActive(isGray)
self.heroBg:setSprite(GConst.ATLAS_PATH.HERO, GConst.FRAME_QLT[heroInfo.qlt]) self.heroBg:setSprite(GConst.ATLAS_PATH.HERO, GConst.HERO_FRAME_QLT[heroInfo.qlt])
self.heroDec:setSprite(GConst.ATLAS_PATH.HERO, GConst.HERO_DEC_QLT[heroInfo.qlt]) self.heroDec:setSprite(GConst.ATLAS_PATH.HERO, GConst.HERO_DEC_QLT[heroInfo.qlt])
self.matchImg:setSprite(GConst.ATLAS_PATH.ICON_HERO, GConst.HeroConst.MATCH_ICON_NAME[heroInfo.position]) self.matchImg:setSprite(GConst.ATLAS_PATH.ICON_HERO, GConst.HeroConst.MATCH_ICON_NAME[heroInfo.position])
self.check:setVisible(false) self.check:setVisible(false)

View File

@ -38,6 +38,7 @@ function HelpTips:onLoadRootComplete()
self.arenaTxClose = uiMap["help_tips.style_arena.btn_close.tx_close"] self.arenaTxClose = uiMap["help_tips.style_arena.btn_close.tx_close"]
self.arenaContent = uiMap["help_tips.style_arena.ScrollView.Viewport.Content"] self.arenaContent = uiMap["help_tips.style_arena.ScrollView.Viewport.Content"]
self.arenaTxDesc = uiMap["help_tips.style_arena.ScrollView.Viewport.Content.tx_desc"] self.arenaTxDesc = uiMap["help_tips.style_arena.ScrollView.Viewport.Content.tx_desc"]
self.arenaCloseBtn = uiMap["help_tips.style_arena.close_btn"]
self.normaBtnClose:addClickListener(function () self.normaBtnClose:addClickListener(function ()
self:playCloseAni(function() self:playCloseAni(function()
@ -47,6 +48,9 @@ function HelpTips:onLoadRootComplete()
self.arenaBtnClose:addClickListener(function () self.arenaBtnClose:addClickListener(function ()
self:closeUI() self:closeUI()
end) end)
self.arenaCloseBtn:addClickListener(function ()
self:closeUI()
end)
self.root:addClickListener(function() self.root:addClickListener(function()
if self.params.type == GConst.TipsConst.HELP_TIPS_TYPE.NORMAL then if self.params.type == GConst.TipsConst.HELP_TIPS_TYPE.NORMAL then
self:playCloseAni(function() self:playCloseAni(function()