diff --git a/lua_probject/extend_project/extend/majiang/hechi/EXPlayBackView.lua b/lua_probject/extend_project/extend/majiang/hechi/EXPlayBackView.lua
index 861d7d85..e359f59b 100644
--- a/lua_probject/extend_project/extend/majiang/hechi/EXPlayBackView.lua
+++ b/lua_probject/extend_project/extend/majiang/hechi/EXPlayBackView.lua
@@ -40,8 +40,34 @@ function M:InitView(url)
self._cmdmap[Record_Event.Evt_Niao] = self.CmdNiao
self._cmdmap[Record_Event.Evt_Piao] = self.CmdPiao
self._cmdmap[Record_Event.Evt_Result] = self.CmdResult
+ self._cmdmap[Record_Event.Evt_FizTip] = self.CmdFizTip
+
+ self._cmdmap[Record_Event.Evt_KaiGang] = self.CmdKaiGang
+ self._cmdmap[Record_Event.Evt_QiShou] = self.CmdQiShou
+ self._cmdmap[Record_Event.Evt_GangScore] = self.CmdGangScore
+end
+-- 处理杠分结算(通常只涉及UI飘字,不改变手牌数据)
+function M:CmdGangScore(cmd, index)
+ local data = self:CopyLastStep(index)
+ data.cmd = cmd.cmd
+ -- 保存结算数据,以便在 ShowStep 中显示飘分特效
+ data.gang_score_data = cmd.data
+end
+-- 处理开杠展示(通常不改变手牌数据,只改变UI展示,所以复制状态即可)
+function M:CmdKaiGang(cmd, index)
+ local data = self:CopyLastStep(index)
+ data.cmd = cmd.cmd
+ data.left_card = cmd.data.left_count
+ data.card = cmd.data.info.cardList
end
+function M:CmdQiShou(cmd, index)
+ local data = self:CopyLastStep(index)
+ data.cmd = cmd.cmd
+ data.qs_seat = cmd.seat
+ data.qs_data = cmd.data.data
+ -- data.qs_card = cmd.data.card
+end
function M:FillRoomData(data)
MJPlayBackView.FillRoomData(self)
if self._win_pic then self._win_pic:Dispose() end
@@ -96,10 +122,17 @@ function M:ShowStep(index)
p.piao_niao = step.player_card_data[i].piao_niao
local head_info = self._player_info[self:GetPos(i)]
if p.piao_niao and p.piao_niao > 0 then
- head_info._view:GetChild("mask_piao").title = "飘分 " .. p.piao_niao
- head_info._view:GetController("piao_niao").selectedIndex = 1
+ if head_info._view:GetChild("mask_piao") then
+ head_info._view:GetChild("mask_piao").title = "飘分 " .. p.piao_niao
+ end
+ if head_info._view:GetController("piao_niao") then
+ head_info._view:GetController("piao_niao").selectedIndex = 1
+ end
+
else
- head_info._view:GetController("piao_niao").selectedIndex = 0
+ if head_info._view:GetController("piao_niao") then
+ head_info._view:GetController("piao_niao").selectedIndex = 0
+ end
end
if step.cmd == Record_Event.Evt_OutCard and i == step.last_out_seat then
local card = p.outcard_list[#p.outcard_list]
@@ -151,13 +184,13 @@ function M:ShowStep(index)
self.result._view.width = GRoot.inst.width
self.result._view.height = GRoot.inst.height
self.result._view:GetChild("btn_confirm").visible = false
+
self._anchor:AddChild(self.result._view)
self.result._view.x = self._anchor.x * -1
self.result._view.y = self._anchor.y * -1
else
self.result._view.visible = true
end
- -- self.result._view:Center()
else
if self.result then
self.result._view.visible = false
@@ -193,6 +226,7 @@ function M:GenerateAllStepData(data)
for i = 1, #cmdList do
local tem = cmdList[i]
+ printlog("ss--ss",tem.cmd, i)
self._cmdmap[tem.cmd](self, tem, i)
end
end
@@ -221,14 +255,33 @@ function M:CmdAction(cmd, index)
data.cmd = cmd.cmd
data.last_out_seat = 0
data.current_out_seat = cmd.seat
- local u = data.player_card_data[cmd.seat]
- for i = 1, #cmd.data.opcard do
- list_remove(u.card_list, cmd.data.opcard[i])
- end
local fz = {}
fz.type = cmd.data.type
fz.card = cmd.data.card
fz.opcard = cmd.data.opcard
+ fz.kaigang = cmd.data.opengang
+
+ local u = data.player_card_data[cmd.seat]
+
+ for i = 1, #fz.opcard do
+ list_remove(u.card_list, fz.opcard[i])
+ end
+
+ if fz.type == 1 then
+ fz.type = FZType.Chi
+ fz.opcard[#fz.opcard + 1] = fz.card
+ elseif fz.type ==2 then
+ fz.type = FZType.Peng
+ elseif fz.type == 3 or fz.type == 4 then
+ if #fz.opcard == 1 then
+ fz.type = FZType.Gang_Peng
+ elseif #fz.opcard == 3 then
+ fz.type = FZType.Gang
+ elseif #fz.opcard == 4 then
+ fz.type = FZType.Gang_An
+ end
+ end
+
local uf = data.player_card_data[cmd.data.from_seat]
if fz.type ~= FZType.Gang_An and fz.type ~= FZType.Gang_Peng then
table.remove(uf.outcard_list, #uf.outcard_list)
@@ -267,6 +320,11 @@ function M:CmdResult(cmd, index)
data.cmd = cmd.cmd
data.result_data = cmd.data
end
+-- 处理提示类命令,复制上一步状态
+function M:CmdFizTip(cmd, index)
+ local data = self:CopyLastStep(index)
+ data.cmd = cmd.cmd
+end
function M:CopyLastStep(index)
local step = {}
diff --git a/lua_probject/extend_project/extend/majiang/hechi/RecordEvent.lua b/lua_probject/extend_project/extend/majiang/hechi/RecordEvent.lua
index 09748550..94c8ca0d 100644
--- a/lua_probject/extend_project/extend/majiang/hechi/RecordEvent.lua
+++ b/lua_probject/extend_project/extend/majiang/hechi/RecordEvent.lua
@@ -6,6 +6,10 @@ local Record_Event = {
Evt_Niao = "Niao",
Evt_Piao = "PiaoNiao",
Evt_Result = "Result",
+ Evt_FizTip = "FizTip",
+ Evt_KaiGang = "KaiGang",
+ Evt_QiShou = "QiShou",
+ Evt_GangScore = "GangScore",
}
return Record_Event
\ No newline at end of file
diff --git a/lua_probject/extend_project/extend/zipai/hechi/EXPlayBackView.lua b/lua_probject/extend_project/extend/zipai/hechi/EXPlayBackView.lua
index 8453ce98..95953174 100644
--- a/lua_probject/extend_project/extend/zipai/hechi/EXPlayBackView.lua
+++ b/lua_probject/extend_project/extend/zipai/hechi/EXPlayBackView.lua
@@ -98,8 +98,60 @@ function M:InitView(url)
self._cmdmap[Record_Event.Evt_Win] = self.CmdWin
self._cmdmap[Record_Event.Evt_ChangePaiXing] = self.CmdChangePaiXing
self._cmdmap[Record_Event.Evt_result] = self.onResult
+
+ local btn_safe = self._view:GetChild('btn_safe')
+ self.safe_arrow1 = btn_safe:GetChild("arrow1")
+ self.safe_arrow2 = btn_safe:GetChild("arrow2")
+ btn_safe.onClick:Set(
+ function()
+ self:BtnsSafe()
+ end
+ )
+ local safe_close = self._view:GetChild('safe_close')
+ safe_close.onClick:Set(
+ function()
+ self:BtnsSafe()
+ end
+ )
+ self:BtnsSafe()
+
end
+function M:BtnsSafe()
+ local btn_temp1 = self._view:GetChild("btn_back_lobby")
+ local btn_temp2 = self._view:GetChild("Btn_jiesan_lobby")
+ local btn_temp3 = self._view:GetChild("btn_leave_lobby")
+ local btn_temp4 = self._view:GetChild("btn_setting")
+ local safe_close = self._view:GetChild('safe_close')
+ local btn_rule = self._view:GetChild('btn_rule')
+ local gcm_chat = self._view:GetChild('gcm_chat')
+
+ btn_temp1.visible = not btn_temp1.visible
+ btn_temp2.visible = not btn_temp2.visible
+ btn_temp3.visible = not btn_temp3.visible
+ btn_temp4.visible = not btn_temp4.visible
+ safe_close.visible = not safe_close.visible
+ btn_rule.visible = not btn_rule.visible
+ gcm_chat.visible = not gcm_chat.visible
+
+ local safe = self._view:GetChild("safe_bg")
+ safe.visible = not safe.visible
+
+ if safe.visible then
+ self.safe_arrow1.visible = false
+ self.safe_arrow2.visible = true
+ else
+ self.safe_arrow1.visible = true
+ self.safe_arrow2.visible = false
+ end
+ local text_playName = self._view:GetChild('text_playName')
+ if text_playName then
+ text_playName.text = "放炮罚"
+ end
+end
+
+
+
function M:NewPlayerPokerInfoView(view, index)
if index == 1 then
return PlayerSelfCardInfoView.new(view, self)
diff --git a/lua_probject/extend_project/extend/zipai/hechi/PlayerCardInfoView.lua b/lua_probject/extend_project/extend/zipai/hechi/PlayerCardInfoView.lua
index 93083b03..a32c8ba8 100644
--- a/lua_probject/extend_project/extend/zipai/hechi/PlayerCardInfoView.lua
+++ b/lua_probject/extend_project/extend/zipai/hechi/PlayerCardInfoView.lua
@@ -12,7 +12,16 @@ function M.new(view,mainView)
return self
end
-
+--牌位置
+function M:GetHandCardPos(cards_view, cards)
+ local x, y = 0, 0
+ local card_width = 75 -- 改小间距,让牌更紧凑
+ local middle_x = self._area_handcard_list.width / 2
+ local start_x = middle_x - (cards / 2 * card_width)
+ x = start_x + (card_width) * (cards_view.index_X - 1)
+ y = 0 - (75 * cards_view.index_Y)
+ return Vector2.New(x, y)
+end
function M:UpdateFzList( fz_list ,ispaly,seat)
self._area_fz_list:RemoveChildren(0,-1,true)
diff --git a/lua_probject/extend_project/extend/zipai/hechi/RunBeard_ResultView.lua b/lua_probject/extend_project/extend/zipai/hechi/RunBeard_ResultView.lua
index 4319b34e..ebeebaff 100644
--- a/lua_probject/extend_project/extend/zipai/hechi/RunBeard_ResultView.lua
+++ b/lua_probject/extend_project/extend/zipai/hechi/RunBeard_ResultView.lua
@@ -346,11 +346,11 @@ function M:FillItemData(room, data, item)
local dipais = UIPackage.CreateObjectFromURL('ui://Extend_Poker_HeChi/FullName')
dipais:GetChild('n0').icon = 'ui://Extend_Poker_HeChi/hu_' .. win_data.mingtang[i].mingtang
if win_data.mingtang[i].type == 1 and win_data.mingtang[i].score ~= 0 then
- dipais:GetChild('n2').text = win_data.mingtang[i].score .. ' 番'
+ dipais:GetChild('n2').text = ' x2'
elseif win_data.mingtang[i].type == 2 and win_data.mingtang[i].score ~= 0 then
- dipais:GetChild('n2').text = win_data.mingtang[i].score .. ' 囤'
+ dipais:GetChild('n2').text = ' x2'
elseif win_data.mingtang[i].type == 3 and win_data.mingtang[i].score ~= 0 then
- dipais:GetChild('n2').text = win_data.mingtang[i].score .. ' 倍'
+ dipais:GetChild('n2').text = ' x2'
end
fullname_list:AddChild(dipais)
end
diff --git a/lua_probject/extend_project/extend/zipai/hechi/main/ZPPlayerCardInfoView.lua b/lua_probject/extend_project/extend/zipai/hechi/main/ZPPlayerCardInfoView.lua
index dfab2634..a3c17b17 100644
--- a/lua_probject/extend_project/extend/zipai/hechi/main/ZPPlayerCardInfoView.lua
+++ b/lua_probject/extend_project/extend/zipai/hechi/main/ZPPlayerCardInfoView.lua
@@ -35,11 +35,11 @@ function M.new(view,mainView)
self._view = view
self._mainView = mainView
self:init()
+
return self
end
function M:init()
-
local view = self._view
self._room = DataManager.CurrenRoom
self._area_outcard_list = view:GetChild("area_outcard_list")
@@ -227,14 +227,14 @@ function M:UpdateHandCards( list )
end
--牌位置
-function M:GetHandCardPos(cards_view,cards)
- local x,y = 0,0
- local card_width = 42 -- 牌的宽度
+function M:GetHandCardPos(cards_view, cards)
+ local x, y = 0, 0
+ local card_width = 60 -- 改小间距,让牌更紧凑
local middle_x = self._area_handcard_list.width / 2
- local start_x = middle_x - (cards / 2 * (card_width))
- x = start_x + (card_width) * (cards_view.index_X - 1)
- y = 0 - (42*cards_view.index_Y)
- return Vector2.New(x,y)
+ local start_x = middle_x - (cards / 2 * card_width)
+ x = start_x + (card_width) * (cards_view.index_X - 1)
+ y = 150 - (60 * cards_view.index_Y)
+ return Vector2.New(x, y)
end
diff --git a/wb_new_ui/.objs/metas/lkq9ne9s/peuq8b.info b/wb_new_ui/.objs/metas/lkq9ne9s/peuq8b.info
index 74948d59..0c21f596 100644
--- a/wb_new_ui/.objs/metas/lkq9ne9s/peuq8b.info
+++ b/wb_new_ui/.objs/metas/lkq9ne9s/peuq8b.info
@@ -25,9 +25,6 @@
"n170_o49p": {
"hidden": true
},
- "n183_yfzf": {
- "collapsed": true
- },
"n35_k3io": {
"hidden": true
}
diff --git a/wb_new_ui/.objs/workspace.json b/wb_new_ui/.objs/workspace.json
index 9535f7d9..5ca01aef 100644
--- a/wb_new_ui/.objs/workspace.json
+++ b/wb_new_ui/.objs/workspace.json
@@ -6,6 +6,12 @@
"ui://hrxsdiixla4e2c",
"ui://8wph7p8nyffnhr",
"ui://mzvoz9udm1i335",
+ "ui://8wph7p8nyffnmy",
+ "ui://8wph7p8nyffn8s",
+ "ui://v0j9abjygq7med",
+ "ui://27vd145b7jqkcdl",
+ "ui://v0j9abjygq7m8f",
+ "ui://lkq9ne9ssyh3rk",
"ui://mzvoz9udm1i33c",
"ui://1utjt0r2ufu92i",
"ui://1utjt0r2ufu92t",
@@ -15,6 +21,8 @@
"ui://v0j9abjygq7mgp",
"ui://lkq9ne9speuqc6",
"ui://lkq9ne9speuq8b",
+ "ui://lkq9ne9speuq5a",
+ "ui://lkq9ne9speuq6p",
"ui://lkq9ne9speuq8r",
"ui://lkq9ne9speuq8w",
"ui://lkq9ne9ssyh3rj",
@@ -34,9 +42,21 @@
"test.device": "1080p Phone",
"canvasColor": 10066329,
"auxline2": true,
- "doc.activeDoc": "ui://mzvoz9udm1i335",
+ "doc.activeDoc": "ui://8wph7p8nyffnmy",
"libview.twoColumn": false,
"libview.expandedNodes": [
+ "27vd145b",
+ "/",
+ "27vd145b",
+ "/images/",
+ "egnzysm7",
+ "/",
+ "egnzysm7",
+ "/component/",
+ "egnzysm7",
+ "/component/clearing/",
+ "egnzysm7",
+ "/component/clearing/image/",
"1utjt0r2",
"/",
"1utjt0r2",
@@ -50,9 +70,17 @@
"mzvoz9ud",
"/component/",
"mzvoz9ud",
+ "/component/EPCDWHZMui/",
+ "mzvoz9ud",
"/component/clearing/",
"mzvoz9ud",
"/component/clearing/image/",
+ "mzvoz9ud",
+ "/component/clearing/images/",
+ "8wph7p8n",
+ "/",
+ "8wph7p8n",
+ "/image/",
"lkq9ne9s",
"/",
"lkq9ne9s",
@@ -62,6 +90,8 @@
"lkq9ne9s",
"/component/Main/",
"lkq9ne9s",
+ "/component/cards/",
+ "lkq9ne9s",
"/image/",
"lkq9ne9s",
"/image/MRBMui/",
diff --git a/wb_new_ui/assets/Common/images/Frame 1347.png b/wb_new_ui/assets/Common/images/Frame 1347.png
new file mode 100644
index 00000000..6b43a4d1
Binary files /dev/null and b/wb_new_ui/assets/Common/images/Frame 1347.png differ
diff --git a/wb_new_ui/assets/Common/images/Frame 1348.png b/wb_new_ui/assets/Common/images/Frame 1348.png
new file mode 100644
index 00000000..d92314d1
Binary files /dev/null and b/wb_new_ui/assets/Common/images/Frame 1348.png differ
diff --git a/wb_new_ui/assets/Common/package.xml b/wb_new_ui/assets/Common/package.xml
index bb16e86c..ae838649 100644
--- a/wb_new_ui/assets/Common/package.xml
+++ b/wb_new_ui/assets/Common/package.xml
@@ -1642,6 +1642,8 @@
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/EPCDWHZMui/Frame 12731.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/EPCDWHZMui/Frame 12731.png
new file mode 100644
index 00000000..141f4961
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/EPCDWHZMui/Frame 12731.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/clearing.xml b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/clearing.xml
index 69608ab8..d66d760e 100644
--- a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/clearing.xml
+++ b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/clearing.xml
@@ -191,7 +191,7 @@
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1.png
index caa25b7d..73e72e8b 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10.png
index 746c5212..8e5d92bd 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10_1.png
new file mode 100644
index 00000000..746c5212
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_10_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11.png
index 186a2c22..d69c7c5d 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11_1.png
new file mode 100644
index 00000000..186a2c22
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_11_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12.png
index b3f96520..27fb471f 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12_1.png
new file mode 100644
index 00000000..b3f96520
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_12_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13.png
index ae90ce55..7139768d 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13_1.png
new file mode 100644
index 00000000..ae90ce55
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_13_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14.png
index 1b64d814..69e4846d 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14_1.png
new file mode 100644
index 00000000..1b64d814
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_14_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15.png
index 604d0f74..accd3eb7 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15_1.png
new file mode 100644
index 00000000..604d0f74
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_15_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16.png
index f38e9521..60344d16 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16_1.png
new file mode 100644
index 00000000..f38e9521
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_16_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17.png
index 085c02c7..1840e1bb 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17_1.png
new file mode 100644
index 00000000..085c02c7
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_17_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18.png
index 4e4bc544..ef842665 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18_1.png
new file mode 100644
index 00000000..4e4bc544
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_18_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19.png
index 5df88baa..4395b88f 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19_1.png
new file mode 100644
index 00000000..5df88baa
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_19_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1_1.png
new file mode 100644
index 00000000..caa25b7d
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_1_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2.png
index e0c460d4..732f4cf0 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20.png
index 185a8737..8e4ba879 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20_1.png
new file mode 100644
index 00000000..185a8737
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_20_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_21.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_21.png
new file mode 100644
index 00000000..3b1c0724
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_21.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_22.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_22.png
new file mode 100644
index 00000000..376eef18
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_22.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2_1.png
new file mode 100644
index 00000000..e0c460d4
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_2_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3.png
index f8eb6bd4..0eb6c7e4 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3_1.png
new file mode 100644
index 00000000..f8eb6bd4
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_3_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4.png
index 7cc2e8c9..1e4131f9 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4_1.png
new file mode 100644
index 00000000..7cc2e8c9
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_4_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5.png
index 9385a6aa..a00594ed 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5_1.png
new file mode 100644
index 00000000..9385a6aa
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_5_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6.png
index 8795d85e..6046324d 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6_1.png
new file mode 100644
index 00000000..8795d85e
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_6_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7.png
index 311ebfdb..ec775f07 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7_1.png
new file mode 100644
index 00000000..311ebfdb
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_7_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8.png
index bbd3010e..e8a77bd8 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8_1.png
new file mode 100644
index 00000000..bbd3010e
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_8_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9.png
index 4342387c..b5ad9c69 100644
Binary files a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9.png and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9_1.png b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9_1.png
new file mode 100644
index 00000000..4342387c
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/image/hu_9_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/package.xml b/wb_new_ui/assets/Extend_Poker_HeChi/package.xml
index 80316e0c..b1f32712 100644
--- a/wb_new_ui/assets/Extend_Poker_HeChi/package.xml
+++ b/wb_new_ui/assets/Extend_Poker_HeChi/package.xml
@@ -32,26 +32,26 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -362,6 +362,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/RunFast_Main_New_2.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/RunFast_Main_New_2.xml
index 9640a3df..bb6c8f4e 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/RunFast_Main_New_2.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/RunFast_Main_New_2.xml
@@ -1,8 +1,8 @@
-
+
-
+
@@ -47,7 +47,7 @@
-
+
@@ -221,15 +221,15 @@
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Main_Majiang/component/clearing/clearing.xml b/wb_new_ui/assets/Main_Majiang/component/clearing/clearing.xml
index 688cfb2e..574a3048 100644
--- a/wb_new_ui/assets/Main_Majiang/component/clearing/clearing.xml
+++ b/wb_new_ui/assets/Main_Majiang/component/clearing/clearing.xml
@@ -3,81 +3,82 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml b/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml
index e4540cd2..fd96110c 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml
@@ -2,9 +2,9 @@
-
-
-
+
+
+
@@ -15,7 +15,7 @@
-
+
@@ -134,7 +134,9 @@
-
+
+
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_2.xml b/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_2.xml
index d29a5b1d..8d8be9d7 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_2.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_2.xml
@@ -20,7 +20,7 @@
-
+
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png
index 651f5e5f..b2cb1604 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png
index 13da1e9a..ba4b892e 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_10.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_10.png
index 6a7a237d..52d3e9b2 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_10.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_10.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_11.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_11.png
index 33900742..1390a141 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_11.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_11.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_12.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_12.png
index d06649a0..e5bf2c51 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_12.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_12.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png
index bc1fc2ec..e31ea9c4 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png
index 1a569896..99c44112 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_15.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_15.png
index b863c6d4..2aa4cc63 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_15.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_15.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_16.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_16.png
index e3a8f528..39a34f0a 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_16.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_16.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png
index ff1e8bbd..2ece8d8b 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png
index 4761dc78..eab64c5f 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png
index ec8e5b67..62c0a7ae 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png
index 86bcd450..5c8ef934 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png
index f8c342cc..44271129 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_8.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_8.png
index b69bdca5..34000a99 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_8.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_8.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_9.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_9.png
index 93eb8ff7..eb6a67d6 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_9.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_9.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes b/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes
index e6a13ccd..eba62809 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes and b/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes
index ded07e2f..b039e614 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes and b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes
index 5fa1797f..886dfa87 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes and b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes
index 40568e9b..55da462b 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0.png b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0.png
index 7f2fd5ea..8f0c254c 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0.png and b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0_1.png b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0_1.png
index 85ff66f4..ae486563 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0_1.png and b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_fui.bytes
index 7e21e8e9..e00fedc9 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_fui.bytes and b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_fui.bytes differ
diff --git a/wb_unity_pro/Assets/StreamingAssets/Pack.byte b/wb_unity_pro/Assets/StreamingAssets/Pack.byte
index d6d51869..90fa9495 100644
Binary files a/wb_unity_pro/Assets/StreamingAssets/Pack.byte and b/wb_unity_pro/Assets/StreamingAssets/Pack.byte differ
diff --git a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.9.bytes b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.9.bytes
index 7177e29c..d4fea738 100644
Binary files a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.9.bytes and b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.9.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes
index 211e9a6d..f5709be6 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes
index 600f2720..84c57916 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/hechi/asset_pack1.0.14.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/hechi/asset_pack1.0.14.bytes
index 96a1a794..27850c8d 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/hechi/asset_pack1.0.14.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/hechi/asset_pack1.0.14.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.32.bytes b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.32.bytes
index ead4727a..99f2135f 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.32.bytes and b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.32.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/zipai/hechi/asset_pack1.0.1.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/hechi/asset_pack1.0.1.bytes
index 19e57bf0..5a435b4f 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/zipai/hechi/asset_pack1.0.1.bytes and b/wb_unity_pro/Pack/Android32/extend/zipai/hechi/asset_pack1.0.1.bytes differ