lzx hai 13 horas
pai
achega
8b34665b01

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 176 - 176
Assets/Res/Config/EventLinkConfig.json


+ 9 - 1
Assets/Scripts/GameUI/UI/AppBarPanel/TitlePanel.cs

@@ -8,6 +8,8 @@ namespace Fort23.Mono
     public partial class TitlePanel : UIPanel
     {
         List<EnergyWidget> widgets = new List<EnergyWidget>();
+        
+         List<int> moRen =new List<int>() { 1001, 1002 };
 
         private void Init()
         {
@@ -25,8 +27,9 @@ namespace Fort23.Mono
         {
         }
 
-        public async static CTask<TitlePanel> OpenPanel(List<int> items)
+        public async static CTask<TitlePanel> OpenPanel(List<int> items = null)
         {
+           
             TitlePanel appBarPanel = null;
             if (UIManager.Instance.GetComponent<TitlePanel>() == null)
             {
@@ -44,6 +47,11 @@ namespace Fort23.Mono
 
         public async CTask CustomInit(List<int> items)
         {
+            if (items == null)
+            {
+                items = moRen;
+            }
+            
             foreach (var energyWidget in widgets)
             {
                 UIManager.Instance.DormancyGComponent(energyWidget);

+ 4 - 4
Assets/Scripts/GameUI/UI/HeroInformationPanel/HeroBreakthroughPanel.cs

@@ -27,8 +27,8 @@ namespace Fort23.Mono
 
         private void Init()
         {
-            IsShowAppBar = true;
-            isAddStack = false;
+            IsShowAppBar = false;
+            isAddStack = true;
         }
 
         protected override void AddEvent()
@@ -455,7 +455,7 @@ namespace Fort23.Mono
 
         public async static CTask<HeroBreakthroughPanel> OpenPanel()
         {
-            HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isFocus: false, isShowBG: true);
+            HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isShowBG: true);
             heroBreakthroughPanel.CustomInit();
             return heroBreakthroughPanel;
         }
@@ -464,7 +464,7 @@ namespace Fort23.Mono
         //渡劫预览
         public async static CTask<HeroBreakthroughPanel> OpenPanel1(HeroInfo heroInfo1)
         {
-            HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isFocus: false, isShowBG: true);
+            HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isShowBG: true);
             heroBreakthroughPanel.CustomInit(heroInfo1);
             return heroBreakthroughPanel;
         }

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 0 - 0
Assets/StreamingAssets/assetConfig.txt


BIN=BIN
Excel2Json/Excel/EventConfig.xlsx


+ 29 - 0
qodana.yaml

@@ -0,0 +1,29 @@
+#-------------------------------------------------------------------------------#
+#               Qodana analysis is configured by qodana.yaml file               #
+#             https://www.jetbrains.com/help/qodana/qodana-yaml.html            #
+#-------------------------------------------------------------------------------#
+version: "1.0"
+
+#Specify IDE code to run analysis without container (Applied in CI/CD pipeline)
+ide: QDNET
+
+#Specify inspection profile for code analysis
+profile:
+  name: qodana.starter
+
+#Enable inspections
+#include:
+#  - name: <SomeEnabledInspectionId>
+
+#Disable inspections
+#exclude:
+#  - name: <SomeDisabledInspectionId>
+#    paths:
+#      - <path/where/not/run/inspection>
+
+#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
+#bootstrap: sh ./prepare-qodana.sh
+
+#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
+#plugins:
+#  - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)

Algúns arquivos non se mostraron porque demasiados arquivos cambiaron neste cambio