chenxin
2020-10-27 38136a34de9aa36bf15ec7471abd56e2cba6c26f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * 全局配置
 * @Author: chenxin
 * @Date: 2020-10-14 10:40:24
 */
namespace KTGMGemClient
{
    public class GameConfig
    {
        /// <summary>
        /// LoadingScene 载入下一个场景的场景名
        /// </summary>
        public static string NextSceneName = "GemBattle";
 
        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>
        /// PVE无尽模式,是否可以点击购买新的宝石
        /// </summary>
        public static bool CanBuyNewTower = false;
 
        /// <summary>
        /// 是否可以点击金币购买新的塔位
        /// </summary>
        public static bool CanOpenNewTower = true;
 
        /// <summary>
        /// 攻击塔是否可以收到伤害
        /// </summary>
        public static bool TowerCanTakeDamage = false;
 
        /// <summary>
        /// 攻击塔是否第一次收到伤害
        /// </summary>
        public static bool TowerFirstTakeDamage = true;
 
        /// <summary>
        /// 是否是新手
        /// </summary>
        public static bool IsNewbie = true;
 
        /// <summary>
        /// 所有新手的引导步骤是否全部完成
        /// </summary>
        public static bool IsNewbieGuideCompleted = false;
    }
}