From 796f2b2e8a0435df7e3cf8e36afeeb69d7b37876 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期六, 13 十二月 2025 16:22:32 +0800
Subject: [PATCH] 0312 特权卡立即跳过不受功能开启影响(20级) 优化挑战BOSS引导提示时机 吞噬红点优武将"新"提醒 优化武将突破红点 满星不能遣散问题
---
Main/System/HeroUI/HeroTrainWin.cs | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/Main/System/HeroUI/HeroTrainWin.cs b/Main/System/HeroUI/HeroTrainWin.cs
index 7a974fc..93caf6f 100644
--- a/Main/System/HeroUI/HeroTrainWin.cs
+++ b/Main/System/HeroUI/HeroTrainWin.cs
@@ -95,6 +95,7 @@
[SerializeField] Image redpointAwake;
[SerializeField] Image redpointGift;
[SerializeField] Image redpointLVUP;
+ [SerializeField] Image redpointBreakLVUP; //绐佺牬绾㈢偣
@@ -838,6 +839,7 @@
redpointLVUP.SetActive(false);
trainMainRedImg.SetActive(false);
breakMainRedImg.SetActive(false);
+ redpointBreakLVUP.SetActive(false);
var heroCnt = PackManager.Instance.GetItemCountByID(PackType.Hero, hero.heroId);
@@ -887,7 +889,7 @@
if (HeroUIManager.Instance.IsCanBreak(hero))
{
- redpointLVUP.SetActive(true);
+ redpointBreakLVUP.SetActive(true);
breakMainRedImg.SetActive(true);
}
--
Gitblit v1.8.0