From 987087eb401e39656fcfd9b5108eee93c3383396 Mon Sep 17 00:00:00 2001
From: weixudong <weixudong4700@ktgame.com>
Date: Mon, 02 Nov 2020 18:20:44 +0800
Subject: [PATCH] 修复购买金币按钮,位置不对的BUG

---
 Assets/Scripts/Common/GameConfig.cs |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/Assets/Scripts/Common/GameConfig.cs b/Assets/Scripts/Common/GameConfig.cs
index def4d23..ecce532 100644
--- a/Assets/Scripts/Common/GameConfig.cs
+++ b/Assets/Scripts/Common/GameConfig.cs
@@ -10,11 +10,14 @@
         /// <summary>
         /// LoadingScene 载入下一个场景的场景名
         /// </summary>
-        public static string NextSceneName = "GemBattle";
+        public static string NextSceneName = "Endless";
 
         public static bool IsDebug = false;
+
         public static string TestLoginUrl = "http://10.5.3.227:9000/user/login";
+
         public static string LoginUrl = "http://172.16.1.52:9000/user/login";
+
         public static bool OpenDebug = true;
 
         /// <summary>
@@ -43,8 +46,18 @@
         public static bool IsNewbie = true;
 
         /// <summary>
-        /// 所有新手的引导步骤是否全部完成
+        /// 无尽模式每一轮游戏中成功使用技能宝石的次数
         /// </summary>
-        public static bool IsNewbieGuideCompleted = false;
+        public static int EndlessPortUseSkillTowerCount;
+
+        /// <summary>
+        /// 每一轮游戏中成功开启的塔位置数量,这个是上阵的塔,可以攻击的塔位
+        /// </summary>
+        public static int EndlessOpenAttackTowerCount;
+
+        /// <summary>
+        /// 每一轮游戏中成功购买塔的数量
+        /// </summary>
+        public static int EndlessBuyTowerCount;
     }
 }
\ No newline at end of file

--
Gitblit v1.9.1