From 18f96c9313bf24d2296e615f44fc0ca005f2e872 Mon Sep 17 00:00:00 2001
From: liuzhiwei <liuzhiwei@qq.com>
Date: Thu, 12 Nov 2020 16:05:44 +0800
Subject: [PATCH] Merge branch 'master' of http://172.16.1.52:8090/r/GemBattle into master

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

diff --git a/Assets/Scripts/Common/GameConfig.cs b/Assets/Scripts/Common/GameConfig.cs
index 0d5678b..23381ce 100644
--- a/Assets/Scripts/Common/GameConfig.cs
+++ b/Assets/Scripts/Common/GameConfig.cs
@@ -1,8 +1,10 @@
-/**
- * 全局配置
- * @Author: chenxin
- * @Date: 2020-10-14 10:40:24
- */
+
+using UnityEngine;
+/**
+* 全局配置
+* @Author: chenxin
+* @Date: 2020-10-14 10:40:24
+*/
 namespace KTGMGemClient
 {
     public class GameConfig
@@ -61,5 +63,14 @@
         /// 每一轮游戏中成功购买塔的数量
         /// </summary>
         public static int EndlessBuyTowerCount;
+
+        #region 各个塔的偏移量
+        public static Vector3 fireScale = new Vector3(1.92f, 1.92f, 2.208f);
+        public static Vector3 woodScale = new Vector3(1.5f, 1.5f, 2.82f);
+        public static Vector3 waterScale = new Vector3(1.0f, 1.0f, 1.88f);
+
+        public static Vector3 fireOffectp = new Vector3(0f, 0f, -0.15f);
+        public static Vector3 woodOffectp = new Vector3(0.08f, 0f, 0.2f);
+        #endregion
     }
 }
\ No newline at end of file

--
Gitblit v1.9.1