diff --git a/lua_probject/extend_project/extend/majiang/changsha/EXMainView.lua b/lua_probject/extend_project/extend/majiang/changsha/EXMainView.lua
index 8aaf92a0..05e331ff 100644
--- a/lua_probject/extend_project/extend/majiang/changsha/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/changsha/EXMainView.lua
@@ -67,6 +67,10 @@ function M:InitView(url)
if (room.playing or room.curren_round > 0) or room.status == 1 then
self:ReloadRoom()
end
+ local text_playName = self._view:GetChild('text_playName')
+ if text_playName then
+ text_playName.text = "长沙麻将"
+ end
end
diff --git a/lua_probject/extend_project/extend/majiang/hechi/EXMainView.lua b/lua_probject/extend_project/extend/majiang/hechi/EXMainView.lua
index 1946b2d0..198fee76 100644
--- a/lua_probject/extend_project/extend/majiang/hechi/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/hechi/EXMainView.lua
@@ -77,6 +77,10 @@ function M:InitView(url)
if room.playing or room.curren_round > 0 then
self:ReloadRoom()
end
+ local text_playName = self._view:GetChild('text_playName')
+ if text_playName then
+ text_playName.text = "河池麻将"
+ end
end
function M:__BuGang(card1,card2, callback)
diff --git a/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXMainView.lua b/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXMainView.lua
index b1300b7b..ea99e011 100644
--- a/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXMainView.lua
+++ b/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXMainView.lua
@@ -68,9 +68,9 @@ function M:setBtn()
local btn_rule = rightpanel:GetChild('btn_log')
local gcm_chat = self._view:GetChild('gcm_chat')
local _btn_chat = gcm_chat:GetChild('n1')
- _btn_chat:GetChild('icon').icon = 'ui://Main_RunBeard/chat_img'
+ -- _btn_chat:GetChild('icon').icon = 'ui://Main_RunBeard/chat_img'
local btn_record = gcm_chat:GetChild('btn_record')
- btn_record:GetChild('icon').icon = 'ui://Main_RunBeard/yuyin_img'
+ --btn_record:GetChild('icon').icon = 'ui://Main_RunBeard/yuyin_img'
if btn_rule ~= nil then
btn_rule.onClick:Set(
diff --git a/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXPlayBackView.lua b/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXPlayBackView.lua
index be8a9390..95416886 100644
--- a/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXPlayBackView.lua
+++ b/lua_probject/extend_project/extend/zipai/changdepaohuzi/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/changdepaohuzi/PlayerCardInfoView.lua b/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerCardInfoView.lua
index 243b0bb7..ec1f1bf2 100644
--- a/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerCardInfoView.lua
+++ b/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerCardInfoView.lua
@@ -12,8 +12,17 @@ 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)
for i = 1,#fz_list do
@@ -80,7 +89,7 @@ function M:UpdateFzList( fz_list ,ispaly,seat)
else
for j=1,4 do
if j==4 then
- fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
+ fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
else
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
end
@@ -181,9 +190,7 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
self._area_outcard_list:RemoveChildren(0,-1,true)
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
- outcards.onClick:Set(function()
- outcards.alpha = 1.1 - outcards.alpha
- end)
+
if outcard==0 then
outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
else
@@ -230,7 +237,7 @@ end
function M:UpdateQiPai( qi_list,ispaly,seat)
self._area_qipai_list:RemoveChildren(0,-1,true)
for i=1,#qi_list do
- local qicards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Qipais")
+ local qicards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Qipai")
qicards:GetChild("icon").icon = self:getCardItem("ui://Main_RunBeard/202_",qi_list[i])
if(ispaly)then
if(i == #qi_list) then
diff --git a/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerSelfCardInfoView.lua b/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerSelfCardInfoView.lua
index 4a441833..00a45cfb 100644
--- a/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerSelfCardInfoView.lua
+++ b/lua_probject/extend_project/extend/zipai/changdepaohuzi/PlayerSelfCardInfoView.lua
@@ -40,13 +40,13 @@ function M:__OnDragEnd(context)
self.outcard_button = nil
end
local button = context.sender
- local xy = self._area_handcard_list:GlobalToLocal(Vector2.New(context.inputEvent.x, context.inputEvent.y))
+
local card = button.data
local _room = DataManager.CurrenRoom
card.btn_card.sortingOrder = 0
- card.btn_card.height = card.btn_card.width/95*119
- if (button.y < self._data_outLinePos - self.card_hight * 0.66 and _room.curren_outcard_seat == _room.self_player.seat) then
+ -- print("button.y"..button.y .. "_room.curren_outcard_seat".._room.curren_outcard_seat)
+ if (button.y < -380 and _room.curren_outcard_seat == _room.self_player.seat) then
button.touchable = false
self.outcard_button = card
self:UpdateIsOnClick(false)
@@ -81,7 +81,7 @@ function M:__OnDragEnd(context)
maxmark =#self.card_list-1
end
end
- if xy.x < self.card_list[minmark].btn_card.x and #CountCards < 10 and xy.y > self._data_outLinePos - self.card_hight * 0.66 then
+ if button.x + button.width / 2 < self.card_list[minmark].btn_card.x and #CountCards < 10 then
list_remove(self.card_list, card)
local num = 0
for i=1,#self.card_list do
@@ -107,7 +107,7 @@ function M:__OnDragEnd(context)
card.index_Y =1
table.insert(self.card_list,1,card)
isChangeCard = true
- elseif xy.x > (self.card_list[maxmark].btn_card.x + self.card_width) and #CountCards < 10 and xy.y > self._data_outLinePos - self.card_hight * 0.66 then
+ elseif button.x + button.width / 2 > (self.card_list[maxmark].btn_card.x + button.width) and #CountCards < 10 then
list_remove(self.card_list, card)
local num = 0
for i=1,#self.card_list do
@@ -136,7 +136,7 @@ function M:__OnDragEnd(context)
for i=1,#CountCards do
local card_view = CountCards[i][1]
if card_view ~= nil then
- if xy.x > card_view.old_postion.x and xy.x < (card_view.old_postion.x + self.card_width) and xy.y > self._data_outLinePos - self.card_hight * 0.66 then
+ if button.x + button.width / 2 > card_view.old_postion.x and button.x + button.width / 2 < (card_view.old_postion.x + button.width) then
if card ~= card_view and #CountCards[i] < 4 and card.index_X ~= card_view.index_X then
MoveCardPos = i
MoveCardY = #CountCards[i]+1
@@ -148,37 +148,34 @@ function M:__OnDragEnd(context)
end
local MoveCardindex = 0
-- local MoveCardY = 0
- -- print("lingmeng end", button.y, MoveCard, button.y > self._data_outLinePos,
- -- button.x + button.width / 2 > card.old_postion.x and
- -- button.x + button.width / 2 < (card.old_postion.x + button.width) and button.y > self._data_outLinePos)
- if xy.x > card.old_postion.x and xy.x < (card.old_postion.x + self.card_width) and button.y > self._data_outLinePos - self.card_hight * 0.66 then
+ if button.x + button.width / 2 > card.old_postion.x and button.x + button.width / 2 < (card.old_postion.x + button.width) then
if #CountCards[card.index_X] > 1 then
for i = 1, #CountCards[card.index_X] do
local _cv = CountCards[card.index_X][i]
if _cv ~= card then
- if xy.y > _cv.btn_card.y and xy.y < (_cv.btn_card.y + self.card_hight) then
+ if button.y + button.height / 2 > _cv.btn_card.y and button.y + button.height / 2 < (_cv.btn_card.y + button.height) then
--向下移動
- if i < card.index_Y then
+ if ((button.y + button.height / 2) + 20) > (card.old_postion.y + button.height) then
MoveCardindex = -1
MoveCardPos = card.index_X
MoveCardY = _cv.index_Y
MoveCard = true
list_remove(self.card_list, card)
--向上移動
- elseif i > card.index_Y then
+ elseif ((button.y + button.height / 2) - 20) < card.old_postion.y then
MoveCardindex = 1
MoveCardPos = card.index_X
MoveCardY = _cv.index_Y
MoveCard = true
list_remove(self.card_list, card)
end
- elseif i == #CountCards[card.index_X] and button.y + self.card_hight / 2 < _cv.btn_card.y then
+ elseif i == #CountCards[card.index_X] and button.y + button.height / 2 < _cv.btn_card.y then
MoveCardindex = 1
MoveCardPos = card.index_X
MoveCardY = _cv.index_Y
MoveCard = true
list_remove(self.card_list, card)
- elseif i == 1 and button.y + self.card_hight / 2 > (_cv.btn_card.y + button.width * 2) then
+ elseif i == 1 and button.y + button.height / 2 > (_cv.btn_card.y + button.width) then
MoveCardindex = -1
MoveCardPos = card.index_X
MoveCardY = _cv.index_Y
@@ -270,13 +267,11 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
if(isMopai == nil) then
isMopai = false
end
- self._area_outcard_list:RemoveChildren(0,-1,true)
- local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
- outcards.onClick:Set(function()
- outcards.alpha = 1.3 - outcards.alpha
- end)
- if outcard==0 then
- outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
+ self._area_outcard_list:RemoveChildren(0, -1, true)
+ local outcards = UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
+
+ if outcard == 0 then
+ outcards:GetChild("icon").icon = "ui://Main_RunBeard/202_1_300"
else
outcards:GetChild("icon").icon =self:getCardItem("ui://Main_RunBeard/203_",outcard)
end
@@ -330,11 +325,11 @@ function M:PlayingOutCardAnima( card)
self:ClearOutCard()
end)
end
-
-function M:UpdateFzList( fz_list ,ispaly)
- self._area_fz_list:RemoveChildren(0,-1,true)
- for i = 1,#fz_list do
- local fzitem=nil
+--自己
+function M:UpdateFzList(fz_list, ispaly)
+ self._area_fz_list:RemoveChildren(0, -1, true)
+ for i = 1, #fz_list do
+ local fzitem = nil
if fz_list[i].type ~= RB_FZType.Kan then
fzitem =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/ComponentNew")
if(ispaly == false)then
@@ -346,11 +341,11 @@ function M:UpdateFzList( fz_list ,ispaly)
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
fzcards:GetChild("card_"..1).icon = self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].active_card)
fzcards:GetController("c2").selectedIndex = 1
- fzcards:GetChild("card_"..2).icon = self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].opcard[1])
- fzcards:GetChild("card_"..3).icon = self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].opcard[2])
- fzcards.x,fzcards.y = 0,0
- self:playAnim(fzitem,fzcards,#fz_list,i,ispaly)
-
+ fzcards:GetController("c3").selectedIndex = 1
+ fzcards:GetChild("card_" .. 2).icon = self:getCardItem("ui://Main_RunBeard/202_", fz_list[i].opcard[1])
+ fzcards:GetChild("card_" .. 3).icon = self:getCardItem("ui://Main_RunBeard/202_", fz_list[i].opcard[2])
+ fzcards.x, fzcards.y = 0, 0
+ self:playAnim(fzitem, fzcards, #fz_list, i, ispaly)
elseif fz_list[i].type == RB_FZType.Peng then
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
@@ -361,11 +356,15 @@ function M:UpdateFzList( fz_list ,ispaly)
self:playAnim(fzitem,fzcards,#fz_list,i,ispaly)
elseif fz_list[i].type == RB_FZType.Wei then
-
- local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
- fzcards:GetController("c1").selectedIndex=1
- for j=1,3 do
- fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
+ local fzcards = UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
+ --fzcards:GetController("c1").selectedIndex = 1
+ for j = 1, 3 do
+ if j == 3 then
+ fzcards:GetChild("card_" .. j).icon = self:getCardItem("ui://Main_RunBeard/202_", fz_list[i].card)
+ else
+ fzcards:GetChild("card_" .. j).icon = "ui://Main_RunBeard/202_1_300"
+ end
+
end
fzcards.x,fzcards.y = 0,0
self:playAnim(fzitem,fzcards,#fz_list,i,ispaly)
diff --git a/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPMainView.lua b/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPMainView.lua
index 478660f8..0dfdf799 100644
--- a/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPMainView.lua
+++ b/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPMainView.lua
@@ -86,11 +86,11 @@ function M:InitView(url, isdisplay, open_social, change_card_size, qihu)
local typeface = _data['game_cardsize']
local _gamectr = self._gamectr
if typeface == 0 then
- self._room.change_card_size = 1.03
+ self._room.change_card_size = 1.2
elseif typeface == 1 then
self._room.change_card_size = 1
elseif typeface == 2 then
- self._room.change_card_size = 1
+ self._room.change_card_size = 0.8
end
else
self._room.change_card_size = change_card_size
@@ -178,6 +178,56 @@ function M:InitView(url, isdisplay, open_social, change_card_size, qihu)
self:showBackBtnView()
self:InitXiPai()
self:InitXiPai1()
+
+ 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
+
+-- zlx 20260208
+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:InitXiPai()
@@ -301,11 +351,11 @@ end
-- 设置 更新 手牌大小
function M:UpdateCardSize(index)
if index == 0 then
- self._room.change_card_size = 1.03
+ self._room.change_card_size = 1.2
elseif index == 1 then
self._room.change_card_size = 1
elseif index == 2 then
- self._room.change_card_size = 1
+ self._room.change_card_size = 0.8
end
local info = self._player_card_info[1]
info:UpdateCardSize()
diff --git a/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPSettingView.lua b/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPSettingView.lua
index f6ccb824..11edc36f 100644
--- a/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPSettingView.lua
+++ b/lua_probject/extend_project/extend/zipai/changdepaohuzi/main/ZPSettingView.lua
@@ -1,5 +1,6 @@
local SettingView = require('Game.View.SettingView')
local ZPTableBG = import('.ZPTableBG')
+local TableBG = require("Game.Data.TableBG")
local ZPSettingView = {
-- 修改牌字体
@@ -27,11 +28,11 @@ function ZPSettingView.new(blur_view, index, open_social,cardIndex)
self.cd_time = 0
self._btn_dismiss_room_enable = false
self._close_destroy = true
- self.bigSize = 1.03
+ self.bigSize = 1.2
self.mediumSize = 1
- self.smallSize = 1
+ self.smallSize = 0.8
self._full = true
- self._anim_pop = 2
+ self._anim_pop = 0
self._open_social = open_social
self._cardType=cardIndex
self:init('ui://Main_RunBeard/New_SettingWindow')
@@ -51,6 +52,26 @@ function M:init(url)
-- local btn_music = view:GetChild('btn_music')
-- local btn_sound = view:GetChild('btn_sound')
+ local _btn_dismiss_room = view:GetChild('btn_dismiss_room')
+ self._btn_dismiss_room = _btn_dismiss_room
+ if _btn_dismiss_room then
+ _btn_dismiss_room.onClick:Add(
+ function()
+ local _gamectr = ControllerManager.GetController(GameController)
+ _gamectr:AskDismissRoom()
+ self:Destroy()
+ end
+ )
+ end
+
+ self._view:GetChild("btn_close22").onClick:Set(function( ... )
+ local bg_id = self._view:GetController("bg").selectedIndex + 1
+ if self._bg ~= bg_id then
+ self._bg = bg_id
+ TableBG.SaveTableBG(self._game_id, self._bg)
+ end
+ self:Destroy()
+ end)
-- btn_music.selected = (GameApplication.Instance.MusicValue < 5 and false or true)
slider_sound.value = GameApplication.Instance.SoundValue
slider_music.value = GameApplication.Instance.MusicValue
@@ -84,7 +105,7 @@ function M:init(url)
elseif room.change_card_size == self.mediumSize then
size.selectedIndex = 1
elseif room.change_card_size == self.smallSize then
- size.selectedIndex = 1
+ size.selectedIndex = 2
end
else
room.change_card_size = 0
@@ -94,14 +115,14 @@ function M:init(url)
if room.change_card_display ~= nil then
local _str = string.sub(room.change_card_display, 1, 1)
local n = tonumber(_str)
- if n == 6 then
+ if n == 1 then
c1.selectedIndex = 1
- elseif n == 1 then
+ elseif n == 2 then
c1.selectedIndex = 0
elseif n == 8 then
c1.selectedIndex = 3
else
- c1.selectedIndex = 0
+ c1.selectedIndex = 2
end
end
if self._open_social then
@@ -245,16 +266,16 @@ function M:UpdateIndex()
local _str = string.sub(room.change_card_display, 1, 1)
local n = tonumber(_str)
if n == 7 then
- n = 6
+ n = 2
end
- if n == 6 then
+ if n == 1 then
c1.selectedIndex = 1
- elseif n == 1 then
+ elseif n == 2 then
c1.selectedIndex = 0
elseif n == 8 then
c1.selectedIndex = 3
else
- c1.selectedIndex = 0
+ c1.selectedIndex = 2
end
end
end
@@ -267,7 +288,7 @@ function M:UpdateCardSizeIndex()
elseif room.change_card_size == self.mediumSize then
size.selectedIndex = 1
elseif room.change_card_size == self.smallSize then
- size.selectedIndex = 1
+ size.selectedIndex = 2
end
else
size.selectedIndex = 0
diff --git a/lua_probject/main_project/main/zipai/ZPPlayerSelfCardInfoView.lua b/lua_probject/main_project/main/zipai/ZPPlayerSelfCardInfoView.lua
index 834e58f5..23d5c12b 100644
--- a/lua_probject/main_project/main/zipai/ZPPlayerSelfCardInfoView.lua
+++ b/lua_probject/main_project/main/zipai/ZPPlayerSelfCardInfoView.lua
@@ -475,7 +475,10 @@ function M:UpdateOutLine()
elseif self:getCardSize() == 1 then
self._data_outLinePos = 147 - (197 * 3)
end
- self._view_outLine.y = self._data_outLinePos - 80
+ if self._data_outLinePos and self._view_outLine then
+ self._view_outLine.y = self._data_outLinePos - 80
+ end
+
end
function M:UpdateIsOnClick(isOut)
diff --git a/wb_new_ui/.objs/fonts.json b/wb_new_ui/.objs/fonts.json
index be18de50..c6ac34df 100644
--- a/wb_new_ui/.objs/fonts.json
+++ b/wb_new_ui/.objs/fonts.json
@@ -23,7 +23,13 @@ ui://27vd145bvbut7ir5
ui://27vd145byffn7iqf
ui://27vd145bh46p7iwa
ui://27vd145bh46p7iwm
-ui://3qr8nmi47q1m2h
+ui://8nwpfk27remn1q
+ui://8nwpfk27remn2h
+ui://8nwpfk27remn4j
+ui://8nwpfk27remn44
+ui://8nwpfk27remn8o
+ui://8nwpfk27remn84
+ui://8nwpfk27remn2
ui://hrxsdiixla4ep
ui://hrxsdiixla4e3n
ui://hrxsdiixla4e38
@@ -31,8 +37,9 @@ ui://hrxsdiixla4e4h
ui://hrxsdiixla4e1c
ui://fnuxqeflkllg1u
ui://fnuxqeflkllg1v
-ui://egnzysm7ffp38o
-ui://egnzysm7ffp35q
+ui://8onu6pxjremn2g
+ui://8onu6pxjremn95
+ui://8onu6pxjremn2l
ui://1utjt0r2ufu98l
ui://1utjt0r2ufu98k
ui://ppu1wv7699we4s
@@ -50,16 +57,15 @@ ui://8wph7p8nyffng
ui://8wph7p8nyffn1e
ui://8wph7p8nyffn7w
ui://8wph7p8nyffn89
-ui://9n9stu2enaueci9
-ui://9n9stu2enauecht
+ui://8lbrl8ivremn2
ui://h30s8vmela4e6
-ui://eyxz924gffp34g
+ui://889ll7cbremn2x
+ui://889ll7cbremn13
ui://4wmd3o8gvlhjde
ui://mtk9dj10m1i32x
ui://mtk9dj10m1i313
ui://z3z0ysurvlhj7t
ui://7ij0e6i2sv5g3
-ui://96mvx2mlvlhjcsv
ui://boq0ohepvlhjd0
ui://v0j9abjygq7m7
ui://v0j9abjygq7mw
diff --git a/wb_new_ui/.objs/metas/8onu6pxj/remn35.info b/wb_new_ui/.objs/metas/8onu6pxj/remn35.info
new file mode 100644
index 00000000..0fe7265f
--- /dev/null
+++ b/wb_new_ui/.objs/metas/8onu6pxj/remn35.info
@@ -0,0 +1,37 @@
+{
+ "objectStatus": {
+ "n31_n1ry": {
+ "hidden": true
+ },
+ "n73_p9qe": {
+ "hidden": true
+ },
+ "n33_n1ry": {
+ "hidden": true
+ },
+ "n16_pt1r": {
+ "hidden": true
+ },
+ "n15_pt1r": {
+ "hidden": true
+ },
+ "n32_n1ry": {
+ "hidden": true
+ },
+ "n14_pt1r": {
+ "hidden": true
+ },
+ "n51_fmkv": {
+ "collapsed": true
+ },
+ "n55_rx2e": {
+ "collapsed": true
+ },
+ "n46_n1ry": {
+ "hidden": true
+ },
+ "n17_pt1r": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/8onu6pxj/remn3m.info b/wb_new_ui/.objs/metas/8onu6pxj/remn3m.info
new file mode 100644
index 00000000..851e55fe
--- /dev/null
+++ b/wb_new_ui/.objs/metas/8onu6pxj/remn3m.info
@@ -0,0 +1,28 @@
+{
+ "objectStatus": {
+ "n29_tjnv": {
+ "hidden": true
+ },
+ "n28_tjnv": {
+ "hidden": true
+ },
+ "n6_tjnv": {
+ "hidden": true
+ },
+ "n5_tjnv": {
+ "hidden": true
+ },
+ "n15_tjnv": {
+ "hidden": true
+ },
+ "n34_aen8": {
+ "hidden": true
+ },
+ "n27_tjnv": {
+ "hidden": true
+ },
+ "n45_mj9f": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/8onu6pxj/remn3z.info b/wb_new_ui/.objs/metas/8onu6pxj/remn3z.info
new file mode 100644
index 00000000..9a0e6cd4
--- /dev/null
+++ b/wb_new_ui/.objs/metas/8onu6pxj/remn3z.info
@@ -0,0 +1,13 @@
+{
+ "objectStatus": {
+ "n8_tjnv": {
+ "hidden": true
+ },
+ "n22_aen8": {
+ "hidden": true
+ },
+ "n7_tjnv": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/mzvoz9ud/m1i335.info b/wb_new_ui/.objs/metas/mzvoz9ud/m1i335.info
index 10a7c119..3b81d650 100644
--- a/wb_new_ui/.objs/metas/mzvoz9ud/m1i335.info
+++ b/wb_new_ui/.objs/metas/mzvoz9ud/m1i335.info
@@ -30,18 +30,9 @@
"n15_pt1r": {
"hidden": true
},
- "n58_fnpw": {
- "collapsed": true
- },
- "n44_n1ry": {
- "collapsed": true
- },
"n32_n1ry": {
"hidden": true
},
- "n19_pt1r": {
- "collapsed": true
- },
"n68_w06x": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/workspace.json b/wb_new_ui/.objs/workspace.json
index 5f707803..8ae26e55 100644
--- a/wb_new_ui/.objs/workspace.json
+++ b/wb_new_ui/.objs/workspace.json
@@ -2,81 +2,18 @@
"libview.firstColumnWidth": 384,
"libview.iconScale": 0,
"doc.openedDocs": [
- "ui://v0j9abjygq7mgo",
- "ui://hrxsdiixla4e2c",
- "ui://s63l0suw6cpqv",
- "ui://fnuxqeflnrnod",
- "ui://egnzysm7ffp36a",
- "ui://8wph7p8nyffnhr",
+ "ui://8onu6pxjremn35",
+ "ui://8onu6pxjremn3m",
+ "ui://8onu6pxjremn3v",
+ "ui://8onu6pxjremn3r",
+ "ui://8onu6pxjremn42",
"ui://mzvoz9udm1i335",
- "ui://lkq9ne9speuqc",
- "ui://m7iejg46l679hws",
- "ui://m7iejg46kwi0hmc",
- "ui://m7iejg46kwi0hme",
- "ui://mzvoz9udm1i382",
- "ui://mzvoz9udm1i32b",
- "ui://mzvoz9udm1i33m",
- "ui://m7iejg4610snh5j",
- "ui://m7iejg46h46p7ish",
- "ui://mzvoz9udm1i32i",
- "ui://h30s8vmela4eb",
- "ui://mzvoz9udm1i34z",
- "ui://mzvoz9udm1i35m",
- "ui://mzvoz9udm1i35j",
- "ui://mzvoz9udm1i358",
- "ui://mzvoz9udm1i35f",
- "ui://mzvoz9udm1i35b",
- "ui://mtk9dj10m1i32v",
- "ui://z3z0ysurygxgd",
- "ui://8wph7p8nyffnmy",
- "ui://8wph7p8nyffn8s",
- "ui://v0j9abjygq7med",
- "ui://27vd145b7jqkcdl",
- "ui://v0j9abjygq7m8f",
- "ui://lkq9ne9ssyh3rk",
- "ui://mzvoz9udm1i33c",
- "ui://1utjt0r2ufu92i",
- "ui://ppu1wv76j4mf9j",
- "ui://ypulwxjhl9mn14",
- "ui://1utjt0r2ufu92t",
- "ui://mzvoz9udm1i32j",
- "ui://442j0uepygxga",
- "ui://4skil1l6piv91ny",
- "ui://niy3ldiwl9mn14",
- "ui://9n9stu2eprgzee",
- "ui://v0j9abjygq7mgp",
- "ui://lkq9ne9speuqc6",
- "ui://lkq9ne9speuq8b",
- "ui://lkq9ne9speuq5a",
- "ui://lkq9ne9speuq6e",
- "ui://hrxsdiixla4e69",
- "ui://lkq9ne9speuq2q",
- "ui://lkq9ne9speuq3",
- "ui://lkq9ne9speuq2",
- "ui://v6yvqp7wcyprwq",
- "ui://v0j9abjygq7mej",
- "ui://lkq9ne9speuq9d",
- "ui://lkq9ne9speuq6p",
- "ui://lkq9ne9speuq8r",
- "ui://lkq9ne9speuq8w",
- "ui://lkq9ne9ssyh3rj",
- "ui://lkq9ne9so0c1ru",
- "ui://lkq9ne9speuqao",
- "ui://lkq9ne9sszpgtz",
- "ui://lkq9ne9speuqap",
- "ui://lkq9ne9speuqaa",
- "ui://8wph7p8nyffnmr",
- "ui://2d9xdj6zl0lzb",
- "ui://lkq9ne9speuqbv",
- "ui://yzaioi79wyal8n",
- "ui://v6yvqp7wwyal8n",
- "ui://9n9stu2eprgzgj",
- "ui://lx6k641gajzhoe"
+ "ui://mzvoz9udm1i33m"
],
"test.device": "1080p Phone",
"canvasColor": 10066329,
"auxline2": true,
- "doc.activeDoc": "ui://lkq9ne9speuq3",
+ "doc.activeDoc": "ui://8onu6pxjremn35",
"libview.twoColumn": false,
"libview.expandedNodes": [
"27vd145b",
@@ -87,14 +24,12 @@
"/font/font_gameTableName/",
"27vd145b",
"/images/",
- "egnzysm7",
+ "8onu6pxj",
"/",
- "egnzysm7",
+ "8onu6pxj",
"/component/",
- "egnzysm7",
- "/component/clearing/",
- "egnzysm7",
- "/component/clearing/image/",
+ "8onu6pxj",
+ "/component/epcwhzHECHIMui/",
"1utjt0r2",
"/",
"1utjt0r2",
@@ -125,6 +60,16 @@
"/images/",
"2d9xdj6z",
"/images/LobbyMui/",
+ "v0j9abjy",
+ "/",
+ "v0j9abjy",
+ "/images/",
+ "v0j9abjy",
+ "/images/cards/",
+ "v0j9abjy",
+ "/images/cards/1/",
+ "v0j9abjy",
+ "/images/cards/2/",
"lkq9ne9s",
"/",
"lkq9ne9s",
@@ -132,16 +77,6 @@
"lkq9ne9s",
"/component/",
"lkq9ne9s",
- "/component/HuTip/",
- "lkq9ne9s",
- "/component/Main/",
- "lkq9ne9s",
- "/component/Main/component/",
- "lkq9ne9s",
- "/component/cards/",
- "lkq9ne9s",
- "/component/chi_peng_effect/",
- "lkq9ne9s",
"/image/",
"lkq9ne9s",
"/images/",
diff --git a/wb_new_ui/assets/Common/font/font_gameTableName/30-常.png b/wb_new_ui/assets/Common/font/font_gameTableName/30-常.png
new file mode 100644
index 00000000..876c5d1c
Binary files /dev/null and b/wb_new_ui/assets/Common/font/font_gameTableName/30-常.png differ
diff --git a/wb_new_ui/assets/Common/font/font_gameTableName/31-德.png b/wb_new_ui/assets/Common/font/font_gameTableName/31-德.png
new file mode 100644
index 00000000..e7098f71
Binary files /dev/null and b/wb_new_ui/assets/Common/font/font_gameTableName/31-德.png differ
diff --git a/wb_new_ui/assets/Common/font/font_gameTableName/32-长.png b/wb_new_ui/assets/Common/font/font_gameTableName/32-长.png
new file mode 100644
index 00000000..f810ecd0
Binary files /dev/null and b/wb_new_ui/assets/Common/font/font_gameTableName/32-长.png differ
diff --git a/wb_new_ui/assets/Common/font/font_gameTableName/33-沙.png b/wb_new_ui/assets/Common/font/font_gameTableName/33-沙.png
new file mode 100644
index 00000000..0db29b1a
Binary files /dev/null and b/wb_new_ui/assets/Common/font/font_gameTableName/33-沙.png differ
diff --git a/wb_new_ui/assets/Common/font/font_gameTableName/font_gameTableName.fnt b/wb_new_ui/assets/Common/font/font_gameTableName/font_gameTableName.fnt
index f672c095..85e676eb 100644
--- a/wb_new_ui/assets/Common/font/font_gameTableName/font_gameTableName.fnt
+++ b/wb_new_ui/assets/Common/font/font_gameTableName/font_gameTableName.fnt
@@ -15,7 +15,7 @@ char id=50 img=kra57j83 xoffset=0 yoffset=0 xadvance=0
char id=32602 img=kra57j7l xoffset=0 yoffset=0 xadvance=0
char id=25226 img=kra57j7k xoffset=0 yoffset=0 xadvance=0
char id=32467 img=kra57j7j xoffset=0 yoffset=0 xadvance=0
-char id=46 img=kra57j7i xoffset=0 yoffset=0 xadvance=0
+char id=32 img=kra57j7i xoffset=0 yoffset=0 xadvance=0
char id=27827 img=kra57j7h xoffset=0 yoffset=0 xadvance=0
char id=27744 img=kra57j7g xoffset=0 yoffset=0 xadvance=0
char id=32993 img=kra57j7f xoffset=0 yoffset=0 xadvance=0
@@ -29,3 +29,7 @@ char id=54 img=kra57j7z xoffset=0 yoffset=0 xadvance=0
char id=55 img=kra57j7y xoffset=0 yoffset=0 xadvance=0
char id=56 img=kra57j7x xoffset=0 yoffset=0 xadvance=0
char id=57 img=kra57j7w xoffset=0 yoffset=0 xadvance=0
+char id=24120 img=svh87j8d xoffset=0 yoffset=0 xadvance=0
+char id=24503 img=svh87j8c xoffset=0 yoffset=0 xadvance=0
+char id=38271 img=svh87j8e xoffset=0 yoffset=0 xadvance=0
+char id=27801 img=svh87j8f xoffset=0 yoffset=0 xadvance=0
diff --git a/wb_new_ui/assets/Common/package.xml b/wb_new_ui/assets/Common/package.xml
index 20f2d2f6..fe1eb3d3 100644
--- a/wb_new_ui/assets/Common/package.xml
+++ b/wb_new_ui/assets/Common/package.xml
@@ -1649,6 +1649,10 @@
+
+
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/big_zipai_result_item.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/big_zipai_result_item.xml
index a11af19b..7ebff2d5 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/big_zipai_result_item.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/big_zipai_result_item.xml
@@ -1,28 +1,31 @@
-
-
+
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
+
+
+
-
-
+
+
@@ -30,23 +33,23 @@
-
+
-
+
-
+
-
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/btn_result_close.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/btn_result_close.xml
index 4936a546..8c640446 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/btn_result_close.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/btn_result_close.xml
@@ -1,6 +1,6 @@
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/card_item.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/card_item.xml
index 6b988ef0..6f4115f7 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/card_item.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/card_item.xml
@@ -1,23 +1,23 @@
-
+
-
-
-
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing.xml
index 87f69df3..ca75505d 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing.xml
@@ -1,18 +1,20 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
+
+
@@ -20,7 +22,7 @@
-
+
@@ -29,30 +31,23 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
-
+
-
+
-
-
-
+
+
+
-
+
@@ -61,8 +56,8 @@
-
-
+
+
@@ -76,17 +71,18 @@
-
-
-
+
+
+
-
+
+
-
+
@@ -95,15 +91,15 @@
-
+
-
+
-
+
@@ -112,7 +108,7 @@
-
+
@@ -121,7 +117,7 @@
-
+
@@ -130,8 +126,8 @@
-
-
+
+
@@ -140,46 +136,46 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing_1_item.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing_1_item.xml
index 3007186f..87af9b13 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing_1_item.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/clearing_1_item.xml
@@ -1,23 +1,21 @@
-
+
-
-
-
-
+
+
-
-
-
+
+
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/descript_item_zipai.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/descript_item_zipai.xml
index e901f2f6..eb5c520d 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/descript_item_zipai.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/descript_item_zipai.xml
@@ -1,7 +1,7 @@
-
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/result_zipai_main.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/result_zipai_main.xml
index f9c07fd8..557f8b17 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/result_zipai_main.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/result_zipai_main.xml
@@ -1,72 +1,65 @@
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_confirm.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_confirm.xml
index 08519952..8dfb991d 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_confirm.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_confirm.xml
@@ -1,9 +1,8 @@
-
+
-
-
-
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_share.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_share.xml
index d09047a4..1d75fdcb 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_share.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/clearing/zipai_btn_result_share.xml
@@ -1,8 +1,8 @@
-
+
-
-
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1253.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1253.png
new file mode 100644
index 00000000..897e04be
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1253.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1254.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1254.png
new file mode 100644
index 00000000..7ddd05d4
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1254.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1255.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1255.png
new file mode 100644
index 00000000..ed9d8837
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1255.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1273.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1273.png
new file mode 100644
index 00000000..3db0600c
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1273.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 12731.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 12731.png
new file mode 100644
index 00000000..141f4961
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 12731.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1275.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1275.png
new file mode 100644
index 00000000..e49ab959
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1275.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1369.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1369.png
new file mode 100644
index 00000000..c11cfbce
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 1369.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 13691.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 13691.png
new file mode 100644
index 00000000..2a2135e8
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 13691.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 136911.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 136911.png
new file mode 100644
index 00000000..d8d118aa
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 136911.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 787.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 787.png
new file mode 100644
index 00000000..9655fc85
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Frame 787.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 2782.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 2782.png
new file mode 100644
index 00000000..27de198f
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 2782.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 2784.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 2784.png
new file mode 100644
index 00000000..691d1d28
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 2784.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 374.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 374.png
new file mode 100644
index 00000000..207cfd4c
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 374.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 375.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 375.png
new file mode 100644
index 00000000..dfaa68a0
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 375.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 3761.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 3761.png
new file mode 100644
index 00000000..e27c82c3
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/Rectangle 3761.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/总战绩.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/总战绩.png
new file mode 100644
index 00000000..2fd17e98
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/epcwhzHECHIMui/总战绩.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml
index 6ebb24f8..0a706275 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml
@@ -344,6 +344,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/big_zipai_result_item.xml b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/big_zipai_result_item.xml
index 32c68201..1a7e3e49 100644
--- a/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/big_zipai_result_item.xml
+++ b/wb_new_ui/assets/Extend_Poker_HeChi/component/clearing/big_zipai_result_item.xml
@@ -1,10 +1,10 @@
-
-
+
+
-
-
+
+
@@ -21,7 +21,7 @@
-
+
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 d56eeb97..bee2f736 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
@@ -7,7 +7,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 34969fdf..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 a1a30a3a..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 c51bb352..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 7ec6da77..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 a555a86a..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 f6d58e5c..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 1c0b50dd..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 274a5765..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 10e26160..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_17.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.png
index 58e58837..9d84e2f6 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_18.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_18.png
index 16a8e8d8..e1747068 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_18.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_18.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_19.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_19.png
index fb1ccc6e..f309ea82 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_19.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_19.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 00b5f7fc..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_20.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png
index df4ae465..9119c33f 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_21.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_21.png
index b1f85b6e..67bcab75 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_21.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_21.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png
index c67f4f36..1edbb188 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.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 4e3bc3a3..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 0602d1c0..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 2afccd75..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 e9c6e9f9..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 dca8f449..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 3cb7b39a..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_atlas1.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas1.png
index e486a757..dc05b902 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas1.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas2.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas2.png
index be0989fe..1a67dc5c 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas2.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas3.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas3.png
index f3fa52d6..aa740243 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas3.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas3.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas4.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas4.png
index 63234e7d..094cc3b7 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas4.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas7.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas7.png
index b41eb6ae..f5bc05e6 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas7.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas7.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_cv577io9.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_cv577io9.png
index 16004bb3..a20edf6e 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_cv577io9.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_cv577io9.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png
index 7216b056..5fd94a31 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png
index 18cfac05..9c839564 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.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 fc382f42..b2ccacc1 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/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png
index c664c257..50c9e947 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png and b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png
index 10f5ea73..0f66acde 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png and b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png.meta b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png.meta
index 8af46066..35c13136 100644
--- a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0_1.png.meta
@@ -88,4 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName: extend/zipai/changdepaoh
\ No newline at end of file
+ assetBundleName: extend/zipai/changdepaohuzi/e03ff1f4dc77821fe95910001a7e606e
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9k.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9k.png
new file mode 100644
index 00000000..7ddd05d4
Binary files /dev/null and b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9k.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn3a.png.meta b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9k.png.meta
similarity index 93%
rename from wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn3a.png.meta
rename to wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9k.png.meta
index d40793cb..c665a67b 100644
--- a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn3a.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9k.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 35e5cdd428435d24392952cd26171557
+guid: c99d27bec9e206645b9d30e11fe934fb
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -88,4 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName: extend/zipai/changdepaoh
\ No newline at end of file
+ assetBundleName: extend/zipai/changdepaohuzi/e03ff1f4dc77821fe95910001a7e606e
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9l.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9l.png
new file mode 100644
index 00000000..ed9d8837
Binary files /dev/null and b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9l.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn36.png.meta b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9l.png.meta
similarity index 93%
rename from wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn36.png.meta
rename to wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9l.png.meta
index 8529a2a7..ee3c9a6d 100644
--- a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn36.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_pptc9l.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: be1befaff40515641a1e27198475c4e3
+guid: bcdf5fc6a329be84ea8629520e47af4c
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -88,4 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName: extend/zipai/changdepaoh
\ No newline at end of file
+ assetBundleName: extend/zipai/changdepaohuzi/e03ff1f4dc77821fe95910001a7e606e
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn36.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn36.png
deleted file mode 100644
index 3bac7baf..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn36.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn37.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn37.png
deleted file mode 100644
index 081d3028..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn37.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn37.png.meta b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn37.png.meta
deleted file mode 100644
index 5998874f..00000000
--- a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn37.png.meta
+++ /dev/null
@@ -1,91 +0,0 @@
-fileFormatVersion: 2
-guid: a2d83e29bbf78c443ba3d77750a44936
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 1
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: -1
- aniso: -1
- mipBias: -100
- wrapU: -1
- wrapV: -1
- wrapW: -1
- nPOTScale: 1
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 0
- spriteTessellationDetail: -1
- textureType: 0
- textureShape: 1
- singleChannelComponent: 0
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID:
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: extend/zipai/changdepaoh
\ No newline at end of file
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn3a.png b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn3a.png
deleted file mode 100644
index 95a9782a..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas_remn3a.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_fui.bytes
index 770a01b4..7c7c733b 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_fui.bytes and b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_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 b3deedc2..246be91a 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 fe0585df..fb9b79d1 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_atlas_mrlr9j.png b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9j.png
index 53d8a8b9..fc2eb7f1 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9j.png and b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9j.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9k.png b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9k.png
index 69ff7a50..8353f281 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9k.png and b/wb_unity_pro/Assets/ART/extend/zipai/hechi/ui/Extend_Poker_HeChi_atlas_mrlr9k.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 e45f6260..e241ea19 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 1590a390..4e0bbe78 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/base_script/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.12.bytes
index 8d11169d..5ec30f62 100644
Binary files a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.12.bytes and b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.12.bytes 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 21bee3bb..a91d876b 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/embed/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.6.bytes
index abf8be9a..e8a46465 100644
Binary files a/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.bytes
index 9b5451ce..e15fa368 100644
Binary files a/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.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 075841d7..a3b6f2bd 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 737f6093..9aa1c313 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/base/newgroup/asset_pack1.0.10.bytes b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.10.bytes
index f83e54dd..a9c4a73b 100644
Binary files a/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.10.bytes and b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.10.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes
index d2787e8d..ab91c287 100644
Binary files a/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.3.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.3.bytes
index 9aa996ad..1174b87d 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.3.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.3.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 27850c8d..5551b053 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/majiang/hongzhong/asset_pack1.0.14.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.14.bytes
index 37765f0d..58209d07 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.14.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.14.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.10.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.10.bytes
index 63ea6b69..9f3504f6 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.10.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.10.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 99f2135f..130e6514 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/changdepaohuzi/asset_pack1.0.1.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/changdepaohuzi/asset_pack1.0.1.bytes
new file mode 100644
index 00000000..24cf9028
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/zipai/changdepaohuzi/asset_pack1.0.1.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/zipai/fanpaofa/asset_pack1.0.49.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/fanpaofa/asset_pack1.0.49.bytes
index 75b9f459..5db52692 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/zipai/fanpaofa/asset_pack1.0.49.bytes and b/wb_unity_pro/Pack/Android32/extend/zipai/fanpaofa/asset_pack1.0.49.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 cb2bcd19..0e4d5ba9 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
diff --git a/wb_unity_pro/ProjectSettings/GraphicsSettings.asset b/wb_unity_pro/ProjectSettings/GraphicsSettings.asset
index 4f4dac17..ad8f23e5 100644
--- a/wb_unity_pro/ProjectSettings/GraphicsSettings.asset
+++ b/wb_unity_pro/ProjectSettings/GraphicsSettings.asset
@@ -38,6 +38,7 @@ GraphicsSettings:
- {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0}
m_PreloadedShaders: []
m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
type: 0}
diff --git a/wb_unity_pro/ProjectSettings/QualitySettings.asset b/wb_unity_pro/ProjectSettings/QualitySettings.asset
index d146daa2..0ea7fc4c 100644
--- a/wb_unity_pro/ProjectSettings/QualitySettings.asset
+++ b/wb_unity_pro/ProjectSettings/QualitySettings.asset
@@ -17,7 +17,8 @@ QualitySettings:
shadowNearPlaneOffset: 2
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 1
+ shadowmaskMode: 0
+ skinWeights: 1
textureQuality: 1
anisotropicTextures: 0
antiAliasing: 0
@@ -28,9 +29,18 @@ QualitySettings:
vSyncCount: 0
lodBias: 0.3
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 4
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- serializedVersion: 2
name: Fast
@@ -43,7 +53,8 @@ QualitySettings:
shadowNearPlaneOffset: 2
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 2
+ shadowmaskMode: 0
+ skinWeights: 2
textureQuality: 0
anisotropicTextures: 0
antiAliasing: 0
@@ -54,9 +65,18 @@ QualitySettings:
vSyncCount: 0
lodBias: 0.4
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 16
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- serializedVersion: 2
name: Simple
@@ -69,7 +89,8 @@ QualitySettings:
shadowNearPlaneOffset: 2
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 2
+ shadowmaskMode: 0
+ skinWeights: 2
textureQuality: 0
anisotropicTextures: 1
antiAliasing: 0
@@ -80,9 +101,18 @@ QualitySettings:
vSyncCount: 0
lodBias: 0.7
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 64
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- serializedVersion: 2
name: Good
@@ -95,7 +125,8 @@ QualitySettings:
shadowNearPlaneOffset: 2
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 2
+ shadowmaskMode: 1
+ skinWeights: 2
textureQuality: 0
anisotropicTextures: 1
antiAliasing: 0
@@ -106,9 +137,18 @@ QualitySettings:
vSyncCount: 1
lodBias: 1
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 256
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- serializedVersion: 2
name: Beautiful
@@ -121,7 +161,8 @@ QualitySettings:
shadowNearPlaneOffset: 2
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 4
+ shadowmaskMode: 1
+ skinWeights: 4
textureQuality: 0
anisotropicTextures: 2
antiAliasing: 2
@@ -132,9 +173,18 @@ QualitySettings:
vSyncCount: 1
lodBias: 1.5
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 1024
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- serializedVersion: 2
name: Fantastic
@@ -147,7 +197,8 @@ QualitySettings:
shadowNearPlaneOffset: 2
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 4
+ shadowmaskMode: 1
+ skinWeights: 4
textureQuality: 0
anisotropicTextures: 2
antiAliasing: 2
@@ -158,9 +209,18 @@ QualitySettings:
vSyncCount: 1
lodBias: 2
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 4096
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- serializedVersion: 2
name: qyq
@@ -173,7 +233,8 @@ QualitySettings:
shadowNearPlaneOffset: 0
shadowCascade2Split: 0.33333334
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- blendWeights: 1
+ shadowmaskMode: 0
+ skinWeights: 1
textureQuality: 0
anisotropicTextures: 0
antiAliasing: 0
@@ -184,11 +245,17 @@ QualitySettings:
vSyncCount: 0
lodBias: 2
maximumLODLevel: 0
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
particleRaycastBudget: 4096
asyncUploadTimeSlice: 2
asyncUploadBufferSize: 4
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 0}
excludedTargetPlatforms: []
- m_PerPlatformDefaultQuality:
- Android: 6
- Standalone: 6
- iPhone: 6
+ m_PerPlatformDefaultQuality: {}