From cd5c1d2c732e41082b0228deadf52df91c50ffbe Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 23 九月 2024 14:06:12 +0800
Subject: [PATCH] 10261 【越南】【砍树】【英文】仙盟徽章,头像框,头像(动态),聊天气泡,聊天表情-表情在聊天界面上的显示大小由(richtext的)FaceSize决定,当配置0取图片原大小

---
 Core/GameEngine/Model/Config/FaceConfig.cs |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/Core/GameEngine/Model/Config/FaceConfig.cs b/Core/GameEngine/Model/Config/FaceConfig.cs
index 3484a4a..dd004f3 100644
--- a/Core/GameEngine/Model/Config/FaceConfig.cs
+++ b/Core/GameEngine/Model/Config/FaceConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           Fish
-//    [  Date ]:           2024骞�5鏈�17鏃�
+//    [  Date ]:           2024骞�9鏈�22鏃�
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -16,6 +16,8 @@
     public readonly string name;
 	public readonly int frameCnt;
 	public readonly int speed;
+	public readonly int frameType;
+	public readonly int EmojiPackID;
 	public readonly string folder;
 
 	public FaceConfig()
@@ -34,7 +36,11 @@
 
 			int.TryParse(tables[2],out speed); 
 
-			folder = tables[3];
+			int.TryParse(tables[3],out frameType); 
+
+			int.TryParse(tables[4],out EmojiPackID); 
+
+			folder = tables[5];
         }
         catch (Exception ex)
         {

--
Gitblit v1.8.0