diff --git a/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua b/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua
index 6db62aec..1d351ea8 100644
--- a/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua
@@ -6,7 +6,6 @@ local EXGameInfo = {}
local M = EXGameInfo
-local roundTable = { 10, 15, 20 }
function EXGameInfo.new(blur_view)
setmetatable(M, { __index = IGameInfo })
local self = setmetatable({}, { __index = M })
@@ -19,49 +18,94 @@ function M:FillData(view, index)
self._maxPlayer = 2 -- 默认玩家人数
self._roundChoice = 5 -- 回合选项数
- -- if oldGameVersion == 1 then
- self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Label_Detail_Play")
-
- local com_editSetting = self._config:GetChild("com_editSetting")
-
- com_editSetting:GetController("cGps").selectedIndex = 2
-
- local ctr_round = self._config:GetController("round")
- if ctr_round.selectedIndex == 0 then
- com_editSetting:GetController("oneRound").selectedIndex = 1
+ if oldGameVersion == 1 then
+ self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast")
else
- com_editSetting:GetController("oneRound").selectedIndex = 0
+ self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast_yueyang")
end
- self._config:GetController("round").onChanged:Set(function()
- if ctr_round.selectedIndex == 0 then
- com_editSetting:GetController("oneRound").selectedIndex = 1
- else
- com_editSetting:GetController("oneRound").selectedIndex = 0
+
+
+ if oldGameVersion == 2 then
+ self._config:GetController("xipai").selectedIndex = 0
+
+ self.xipaiValueText = self._config:GetChild('xipaifen')
+ self.xipaiValueText.text = 1
+ self.xipaiValue = 1
+
+ self.anchouValueText = self._config:GetChild('anchoufen')
+ self.anchouValueText.text = 1
+ self.anchouValue = 1
+
+ local btn_cr = self._config:GetChild('sdsrbtn')
+ btn_cr.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.xipaiValueText.text = value / 100
+ self.xipaiValue = value / 100
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
+
+
+ local btn_cr2 = self._config:GetChild('anchoubtn')
+ btn_cr2.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.anchouValueText.text = value / 100
+ self.anchouValue = value / 100
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
+ end
+
+
+
+ self._config:GetChild("people_2").onClick:Set(function()
+ self._config:GetController("rule").selectedIndex = 0
+ end)
+
+ local piao = self._config:GetController("piao")
+ local daniao = self._config:GetController("daniao")
+
+ piao.onChanged:Add(function()
+ if piao.selectedIndex ~= 0 then
+ daniao.selectedIndex = 0
end
end)
- -- else
- -- self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast_yueyang")
- -- end
-
- -- self._config:GetChild("people_2").onClick:Set(function()
- -- self._config:GetController("rule").selectedIndex = 0
- -- end)
-
- -- local piao = self._config:GetController("piao")
- -- local daniao = self._config:GetController("daniao")
-
- -- piao.onChanged:Add(function()
- -- if piao.selectedIndex ~= 0 then
- -- daniao.selectedIndex = 0
- -- end
- -- end)
-
- -- daniao.onChanged:Add(function()
- -- if daniao.selectedIndex ~= 0 then
- -- piao.selectedIndex = 0
- -- end
- -- end)
+ daniao.onChanged:Add(function()
+ if daniao.selectedIndex ~= 0 then
+ piao.selectedIndex = 0
+ end
+ end)
end
local _help_url = "ui://Info_Poker_RunFastNew/Com_help"
@@ -71,7 +115,7 @@ end
local _icon_url = "ui://Info_Poker_RunFastNew/icon"
function M:GetIconUrl()
- return "ui://Lobby/paodekuai2", "ui://Lobby/paodekuai1"
+ return _icon_url
end
local _icon_url1 = "ui://Info_Poker_RunFastNew/icon1"
@@ -86,109 +130,100 @@ end
function M:LoadConfigData(data)
local _config = self._config
- pt(data)
_config:GetController("round").selectedIndex = data.opt - 1
- _config:GetController("handcard").selectedIndex = 2 - data.leaf
- _config:GetController("peopleNum").selectedIndex = 3 - data.maxPlayers
- _config:GetController("showCardNum").selectedIndex = 1 - data.showlength
- _config:GetController("wanfa1_1").selectedIndex = data.planeNoBelt
- _config:GetController("wanfa1_2").selectedIndex = data.planelack
- _config:GetController("wanfa1_3").selectedIndex = data.fourDaiThree and 1 or 0
- _config:GetController("wanfa1_4").selectedIndex = data.heartten - 1
- _config:GetController("wanfa1_5").selectedIndex = 2 - data.rule
- _config:GetController("wanfa2_1").selectedIndex = data.specilAdd
+ _config:GetController("rule").selectedIndex = data.rule == 2 and 0 or 1
+ _config:GetController("play_list").selectedIndex = data.leaf - 1
+ _config:GetController("willBeOut").selectedIndex = data.willBeOut - 1
+ _config:GetController("heart10").selectedIndex = data.heartten - 1
+ _config:GetController("bombSpring").selectedIndex = data.minboom - 1
+ _config:GetController("player_num").selectedIndex = data.maxPlayers == 2 and 0 or 1
+ _config:GetController("Cost").selectedIndex = data.AA == 0 and 0 or 1
+ _config:GetController("showlength").selectedIndex = data.showlength
+ _config:GetController("fourBeltThree").selectedIndex = data.fourBeltThree
+ _config:GetController("demolition").selectedIndex = data.demolition
+ _config:GetController("fangzuobi").selectedIndex = data.fangzuobi
- -- local sandaidan = data.sandaidan
- -- if sandaidan ~= nil and sandaidan == 1 then
- -- _config:GetChild("sandaidan").selected = true
+ local sandaidan = data.sandaidan
+ if sandaidan ~= nil and sandaidan == 1 then
+ _config:GetChild("sandaidan").selected = true
- -- _config:GetChild("planelack").selected = false
- -- _config:GetChild("Threelack").selected = false
- -- else
- -- _config:GetChild("sandaidan").selected = false
+ _config:GetChild("planelack").selected = false
+ _config:GetChild("Threelack").selected = false
+ else
+ _config:GetChild("sandaidan").selected = false
- -- _config:GetChild("planelack").selected = data.planelack == 1 and true or false
- -- _config:GetChild("Threelack").selected = data.threelack == 1 and true or false
- -- end
+ _config:GetChild("planelack").selected = data.planelack == 1 and true or false
+ _config:GetChild("Threelack").selected = data.threelack == 1 and true or false
+ end
- -- local fs = data.fs
- -- if fs ~= nil and fs == 1 then
- -- _config:GetChild("fan_sprint").selected = true
- -- else
- -- _config:GetChild("fan_sprint").selected = false
- -- end
+ local fs = data.fs
+ if fs ~= nil and fs == 1 then
+ _config:GetChild("fan_sprint").selected = true
+ else
+ _config:GetChild("fan_sprint").selected = false
+ end
- -- local ba = data.ba
- -- if ba ~= nil and ba == 1 then
- -- _config:GetChild("boom_add").selected = true
- -- else
- -- _config:GetChild("boom_add").selected = false
- -- end
+ local ba = data.ba
+ if ba ~= nil and ba == 1 then
+ _config:GetChild("boom_add").selected = true
+ else
+ _config:GetChild("boom_add").selected = false
+ end
- -- _config:GetChild("ThreeA").selected = data.threeA == 1 and true or false
+ _config:GetChild("ThreeA").selected = data.threeA == 1 and true or false
- -- if data.piao ~= nil then
- -- _config:GetController("piao").selectedIndex = data.piao
- -- end
+ if data.piao ~= nil then
+ _config:GetController("piao").selectedIndex = data.piao
+ end
- -- if data.daniao ~= nil then
- -- _config:GetController("daniao").selectedIndex = data.daniao
- -- end
+ if data.daniao ~= nil then
+ _config:GetController("daniao").selectedIndex = data.daniao
+ end
- -- if _config:GetChild("fourBeltThree") then
- -- _config:GetChild("fourBeltThree").selected = data.fourDaiTwo
- -- end
+ if _config:GetChild("fourBeltThree") then
+ _config:GetChild("fourBeltThree").selected = data.fourDaiTwo
+ end
- -- if _config:GetChild("fourBeltTwo") then
- -- _config:GetChild("fourBeltTwo").selected = data.fourDaiThree
- -- end
+ if _config:GetChild("fourBeltTwo") then
+ _config:GetChild("fourBeltTwo").selected = data.fourDaiThree
+ end
- -- if _config:GetChild("xipai") then
- -- _config:GetChild("xipai").selected = data.xi_pai
- -- end
+ if _config:GetChild("xipai") then
+ _config:GetChild("xipai").selected = data.xi_pai
+ end
- -- if oldGameVersion == 2 then
- -- self.xipaiValueText.text = data.xi_pai_score / 1000
- -- self.xipaiValue = data.xi_pai_score / 1000
+ if oldGameVersion == 2 then
+ self.xipaiValueText.text = data.xi_pai_score / 100
+ self.xipaiValue = data.xi_pai_score / 100
- -- self.anchouValueText.text = data.an_chou_score / 1000
- -- self.anchouValue = data.an_chou_score / 1000
- -- end
+ self.anchouValueText.text = data.an_chou_score / 100
+ self.anchouValue = data.an_chou_score / 100
+ end
end
function M:SelectedConfigData()
local _config = self._config
local round = _config:GetController("round").selectedIndex
- local handcard = _config:GetController("handcard").selectedIndex
- local peopleNum = _config:GetController("peopleNum").selectedIndex
- local showCardNum = _config:GetController("showCardNum").selectedIndex
- local wanfa1_1 = _config:GetController("wanfa1_1").selectedIndex
- local wanfa1_2 = _config:GetController("wanfa1_2").selectedIndex
- local wanfa1_3 = _config:GetController("wanfa1_3").selectedIndex
- local wanfa1_4 = _config:GetController("wanfa1_4").selectedIndex
- local wanfa1_5 = _config:GetController("wanfa1_5").selectedIndex
- local wanfa2_1 = _config:GetController("wanfa2_1").selectedIndex
-
- -- local rule = _config:GetController("rule").selectedIndex
- -- local leaf = _config:GetController("play_list").selectedIndex
- -- local willBeOut = _config:GetController("willBeOut").selectedIndex
- -- local bombSpring = _config:GetController("bombSpring").selectedIndex
- -- local heart10 = _config:GetController("heart10").selectedIndex
- -- local player_num = _config:GetController("player_num").selectedIndex
- -- local AA = _config:GetController("Cost").selectedIndex
- -- local showlength = _config:GetController("showlength").selectedIndex
- -- local fourBeltThree = _config:GetController("fourBeltThree").selectedIndex
- -- local demolition = _config:GetController("demolition").selectedIndex
- -- local fangzuobi = _config:GetController("fangzuobi").selectedIndex
- -- local planelack = _config:GetChild("planelack").selected and 1 or 0
- -- local threelack = _config:GetChild("Threelack").selected and 1 or 0
- -- local ThreeA = _config:GetChild("ThreeA").selected and 1 or 0
- -- local piao = _config:GetController("piao").selectedIndex
- -- local daniao = _config:GetController("daniao").selectedIndex
- -- local sandaidan = _config:GetController("sandaidan").selectedIndex
- -- local ba = _config:GetChild("boom_add").selected and 1 or 0
- -- local fs = _config:GetChild("fan_sprint").selected and 1 or 0
+ local rule = _config:GetController("rule").selectedIndex
+ local leaf = _config:GetController("play_list").selectedIndex
+ local willBeOut = _config:GetController("willBeOut").selectedIndex
+ local bombSpring = _config:GetController("bombSpring").selectedIndex
+ local heart10 = _config:GetController("heart10").selectedIndex
+ local player_num = _config:GetController("player_num").selectedIndex
+ local AA = _config:GetController("Cost").selectedIndex
+ local showlength = _config:GetController("showlength").selectedIndex
+ local fourBeltThree = _config:GetController("fourBeltThree").selectedIndex
+ local demolition = _config:GetController("demolition").selectedIndex
+ local fangzuobi = _config:GetController("fangzuobi").selectedIndex
+ local planelack = _config:GetChild("planelack").selected and 1 or 0
+ local threelack = _config:GetChild("Threelack").selected and 1 or 0
+ local ThreeA = _config:GetChild("ThreeA").selected and 1 or 0
+ local piao = _config:GetController("piao").selectedIndex
+ local daniao = _config:GetController("daniao").selectedIndex
+ local sandaidan = _config:GetController("sandaidan").selectedIndex
+ local ba = _config:GetChild("boom_add").selected and 1 or 0
+ local fs = _config:GetChild("fan_sprint").selected and 1 or 0
-----
local fourDaiTwo = false
@@ -209,183 +244,66 @@ function M:SelectedConfigData()
----
local _data = {}
_data["account_id"] = DataManager.SelfUser.Id
- -- _data["AA"] = AA
- -- _data["willBeOut"] = willBeOut + 1
- -- _data["minboom"] = (willBeOut == 0 and leaf == 1 and player_num == 1) and bombSpring + 1 or 2
- -- _data["fourBeltThree"] = fourBeltThree
- -- _data["demolition"] = demolition
- -- _data["fangzuobi"] = fangzuobi
- -- _data["threeA"] = ThreeA
- -- _data["piao"] = piao
- -- _data["daniao"] = daniao
- -- _data["sandaidan"] = sandaidan
- -- _data["ba"] = ba
- -- _data["fs"] = fs
+ _data["opt"] = round + 1
+ _data["rule"] = rule == 0 and 2 or 1
+ _data["leaf"] = leaf + 1
+ _data["AA"] = AA
+ _data["willBeOut"] = willBeOut + 1
+ _data["showlength"] = showlength
+ _data["heartten"] = willBeOut == 0 and heart10 + 1 or 2
+ _data["minboom"] = (willBeOut == 0 and leaf == 1 and player_num == 1) and bombSpring + 1 or 2
+ _data["maxPlayers"] = player_num + 2
+ _data["fourBeltThree"] = fourBeltThree
+ _data["demolition"] = demolition
+ _data["fangzuobi"] = fangzuobi
+ _data["threeA"] = ThreeA
+ _data["piao"] = piao
+ _data["daniao"] = daniao
+ _data["sandaidan"] = sandaidan
+ _data["ba"] = ba
+ _data["fs"] = fs
_data["fourDaiTwo"] = fourDaiTwo
-
- -----------------------lingmeng----------------------------
-
- _data["AA"] = 0
- _data["willBeOut"] = 1
- _data["minboom"] = 2
- _data["fourBeltThree"] = 0
- _data["demolition"] = 0
- _data["fangzuobi"] = 0
- _data["threeA"] = 0
- _data["piao"] = 0
- _data["daniao"] = 0
- _data["sandaidan"] = 0
- _data["ba"] = 0
- _data["fs"] = 0
+ _data["fourDaiThree"] = fourDaiThree
- _data["leaf"] = handcard == 0 and 2 or handcard --手牌 1是15张,2是16张
- _data["opt"] = round + 1 --局数 1是10局 2是15局 3是20局 ("未知")
- _data["maxPlayers"] = peopleNum == 1 and 2 or 3 --人数 2是2人 3是三人
- _data["rule"] = wanfa1_5 == 0 and 2 or 1 --黑桃3必出 2是选择了该玩法 1是没有该玩法
- _data["showlength"] = (showCardNum + 1) % 2 --显示手牌数量 0是不显示 1是显示
- _data["planeNoBelt"] = wanfa1_1 --飞机不带
- _data["threeNoBelt"] = wanfa1_1 --三张不带
- _data["planelack"] = wanfa1_2 --飞机可少带接完
- _data["threelack"] = wanfa1_2 --三张可少带接完
- _data["fourDaiThree"] = false --四带三 false没有该玩法 true有该玩法
- if wanfa1_3 == 1 then
- _data["fourDaiThree"] = true
+ if willBeOut == 1 then
+ -- body
+ _data["planelack"] = 0
+ _data["threelack"] = 0
+ else
+ if sandaidan == 1 then
+ _data["planelack"] = 0
+ _data["threelack"] = 0
+ else
+ _data["planelack"] = planelack
+ _data["threelack"] = threelack
+ end
end
- _data["heartten"] = wanfa1_4 + 1 --红桃扎鸟 1没有该玩法 2有该玩法 似乎说的是红桃10分数翻倍,具体要问江西那边
- _data["specilAdd"] = wanfa2_1 --特殊加分规则:只出一张加扣10分,出2-3张加扣5分 0没有该玩法 1有该玩法
-
-
-
-
- -----------------------------------------------------------
-
-
- -- if willBeOut == 1 then
- -- -- body
- -- _data["planelack"] = 0
- -- _data["threelack"] = 0
- -- else
- -- if sandaidan == 1 then
- -- _data["planelack"] = 0
- -- _data["threelack"] = 0
- -- else
- -- _data["planelack"] = planelack
- -- _data["threelack"] = threelack
- -- end
- -- end
_data['xi_pai'] = xi_pai
- local xi_pai_score = 1
- local an_chou_score = 1
+ local xi_pai_score = 0
+ local an_chou_score = 0
- -- if oldGameVersion == 2 then
- -- xi_pai_score = self.xipaiValue
- -- an_chou_score = self.anchouValue
- -- end
+ if oldGameVersion == 2 then
+ xi_pai_score = self.xipaiValue
+ an_chou_score = self.anchouValue
+ end
- _data['xi_pai_score'] = xi_pai_score * 1000
- _data['an_chou_score'] = an_chou_score * 1000
+ _data['xi_pai_score'] = xi_pai_score * 100
+ _data['an_chou_score'] = an_chou_score * 100
return _data
end
function M:OnChangeOption(ctype, pay_obj)
IGameInfo.OnChangeOption(self, ctype, pay_obj)
- local peopleNum = self._config:GetController("peopleNum")
- peopleNum.onChanged:Set(function()
- self._maxPlayer = peopleNum.selectedIndex == 1 and 2 or 3
+ local people = self._config:GetController("player_num")
+ people.onChanged:Set(function()
+ self._maxPlayer = people.selectedIndex + 2
self:ShowVariablePrice(ctype, pay_obj)
end)
end
-function M:LoadConfigToDetail(data, hpdata)
- local configData = data
- if type(data) == 'string' then
- configData = json.decode(data)
- end
-
- local hpData = configData.hpData or hpdata
- if type(hpData) == 'string' then
- if hpData == "null" then
- hpData = nil
- else
- hpData = json.decode(hpData)
- end
- end
- local returnString = ""
-
- if hpData then
- returnString = string.format("%s倍,", hpData.times / 1000)
- end
-
- returnString = string.format("%s人数%s人", returnString, configData.maxPlayers)
-
- if hpData then
- returnString = string.format("%s %s局", returnString, hpData.maxRound)
- end
- if configData.leaf then
- returnString = string.format("%s,%s", returnString, configData.leaf == 1 and "15张手牌" or "16张手牌")
- end
- if configData.showlength then
- returnString = string.format("%s,%s", returnString, configData.showlength == 0 and "不显示牌数" or "显示牌数")
- end
- if configData.planeNoBelt and configData.threeNoBelt then
- if configData.planeNoBelt == 0 and configData.threeNoBelt == 0 then
- returnString = string.format("%s,%s", returnString, "三张、飞机必带")
- elseif configData.planeNoBelt == 0 then
- returnString = string.format("%s,%s", returnString, "三张必带、飞机可不带")
- elseif configData.threeNoBelt == 0 then
- returnString = string.format("%s,%s", returnString, "三张可不带、飞机必带")
- else
- returnString = string.format("%s,%s", returnString, "三张、飞机可不带")
- end
- else
- if configData.planeNoBelt then
- returnString = string.format("%s%s", returnString, configData.planeNoBelt == 0 and "" or ",飞机可不带")
- end
- if configData.threeNoBelt then
- returnString = string.format("%s%s", returnString, configData.threeNoBelt == 0 and "" or ",三张可不带")
- end
- end
-
- if configData.planelack and configData.threelack then
- if configData.planelack == 0 and configData.threelack == 0 then
- returnString = string.format("%s,%s", returnString, "三张、飞机不可少带接完")
- elseif configData.planelack == 0 then
- returnString = string.format("%s,%s", returnString, "三张不可少带接完、飞机可少带接完")
- elseif configData.threelack == 0 then
- returnString = string.format("%s,%s", returnString, "三张可少带接完、飞机不可少带接完")
- else
- returnString = string.format("%s,%s", returnString, "三张、飞机可少带接完")
- end
- else
- if configData.planelack then
- returnString = string.format("%s%s", returnString, configData.planelack == 0 and "" or ",飞机可少带")
- end
- if configData.threelack then
- returnString = string.format("%s%s", returnString, configData.threelack == 0 and "" or ",三张可少带")
- end
- end
- if configData.fourDaiThree then
- returnString = string.format("%s%s", returnString, configData.fourDaiThree and ",四带三" or "")
- end
- if configData.heartten then
- returnString = string.format("%s%s", returnString, configData.heartten == 1 and "" or ",红桃10扎鸟")
- end
- if configData.rule then
- returnString = string.format("%s%s", returnString,
- configData.rule == 1 and ",首局黑桃三必出" or "")
- end
- if configData.specilAdd then
- returnString = string.format("%s%s", returnString, configData.specilAdd == 0 and "" or ",只出一张加扣10分,出2-3张加扣5分")
- end
-
- returnString = returnString .. IGameInfo.LoadConfigToDetail(self, configData, hpData)
-
- return returnString
-end
-
return M
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew_old/package.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew_old/package.xml
index 27222cbb..78d68a39 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew_old/package.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew_old/package.xml
@@ -489,5 +489,5 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Button3.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/Button3.xml
index 5ac22ff4..e33515b3 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/Button3.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/Button3.xml
@@ -2,7 +2,7 @@
-
+
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Com_help.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/Com_help.xml
index 976d8c42..8d95b867 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/Com_help.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/Com_help.xml
@@ -1,6 +1,6 @@
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/ComboBox1_item.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/ComboBox1_item.xml
index 0a58668a..294d841f 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/ComboBox1_item.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/ComboBox1_item.xml
@@ -1,15 +1,15 @@
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast.xml
index 222419d0..bacf523f 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast.xml
@@ -1,212 +1,212 @@
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
+
-
-
-
+
+
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast_yueyang.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast_yueyang.xml
index 128331af..b7262947 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast_yueyang.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/Creat_RunFast_yueyang.xml
@@ -1,242 +1,242 @@
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
+
-
-
-
+
+
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/btn_add.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/btn_add.xml
index 6695fc16..78760a51 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/btn_add.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/btn_add.xml
@@ -2,7 +2,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/btn_sub.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/btn_sub.xml
index 9108a524..17c2a891 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/btn_sub.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/btn_sub.xml
@@ -2,7 +2,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_Common_Info.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_Common_Info.xml
index 93c6e449..0e3ac190 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_Common_Info.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_Common_Info.xml
@@ -1,11 +1,11 @@
-
+
-
+
-
-
+
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_cr_checkbox.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_cr_checkbox.xml
new file mode 100644
index 00000000..dc137530
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_cr_checkbox.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_cr_checkbox2.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_cr_checkbox2.xml
new file mode 100644
index 00000000..cbec117a
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/Btn_cr_checkbox2.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/di01.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/di01.xml
index 7f1a226d..4196b638 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/di01.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/di01.xml
@@ -1,8 +1,8 @@
-
+
-
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/button03.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/button03.png
new file mode 100644
index 00000000..1dc6ff4e
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/button03.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/button04.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/button04.png
new file mode 100644
index 00000000..f41357ac
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/button04.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/gou.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/gou.png
new file mode 100644
index 00000000..6eb32554
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/gou.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/multiple_btn_n.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/multiple_btn_n.png
new file mode 100644
index 00000000..5adaf2e7
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/multiple_btn_n.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/pic07.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/pic07.png
new file mode 100644
index 00000000..86812f25
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/pic07.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/pic08.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/pic08.png
new file mode 100644
index 00000000..5adaf2e7
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/pic08.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/single_btn_s.png b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/single_btn_s.png
new file mode 100644
index 00000000..9e7d6bc9
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/component/create_room/image/single_btn_s.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/package.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/package.xml
index 66693983..5640ea2b 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/package.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/package.xml
@@ -1,28 +1,37 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/xuangze.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/xuangze.xml
index 953592bb..ccff618f 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/xuangze.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/xuangze.xml
@@ -1,25 +1,25 @@
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/Button3.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Button3.xml
new file mode 100644
index 00000000..5ac22ff4
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Button3.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/Com_help.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Com_help.xml
new file mode 100644
index 00000000..976d8c42
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Com_help.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/ComboBox1_item.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/ComboBox1_item.xml
new file mode 100644
index 00000000..0a58668a
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/ComboBox1_item.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/Creat_RunFast.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Creat_RunFast.xml
new file mode 100644
index 00000000..222419d0
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Creat_RunFast.xml
@@ -0,0 +1,212 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/Creat_RunFast_yueyang.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Creat_RunFast_yueyang.xml
new file mode 100644
index 00000000..128331af
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/Creat_RunFast_yueyang.xml
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/btn_add.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/btn_add.xml
new file mode 100644
index 00000000..6695fc16
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/btn_add.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/btn_sub.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/btn_sub.xml
new file mode 100644
index 00000000..9108a524
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/btn_sub.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/component/create_room/Btn_Common_Info.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/component/create_room/Btn_Common_Info.xml
new file mode 100644
index 00000000..93c6e449
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/component/create_room/Btn_Common_Info.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/component/create_room/di01.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/component/create_room/di01.xml
new file mode 100644
index 00000000..7f1a226d
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/component/create_room/di01.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/dsj.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/dsj.png
new file mode 100644
index 00000000..f95a9219
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/dsj.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/fgx.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/fgx.png
new file mode 100644
index 00000000..88b1f407
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/fgx.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/font/SIYUAN.TTF b/wb_new_ui/assets/Info_Poker_RunFastNew_old/font/SIYUAN.TTF
new file mode 100644
index 00000000..31f678b1
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/font/SIYUAN.TTF differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon.png
new file mode 100644
index 00000000..ba5642b5
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon1-1.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon1-1.png
new file mode 100644
index 00000000..cb7e8a1b
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon1-1.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon1.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon1.png
new file mode 100644
index 00000000..8089f0d5
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon1.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon_1.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon_1.png
new file mode 100644
index 00000000..80349212
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/icon_1.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/lskd.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/lskd.png
new file mode 100644
index 00000000..d8da91ee
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/lskd.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/ly.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/ly.png
new file mode 100644
index 00000000..d9ebe51b
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/ly.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/mgr/imgs/game/bjwf.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/mgr/imgs/game/bjwf.png
new file mode 100644
index 00000000..298aeed4
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/mgr/imgs/game/bjwf.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/package.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/package.xml
new file mode 100644
index 00000000..66693983
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/package.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/wenhao.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/wenhao.png
new file mode 100644
index 00000000..c4aeeb92
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/wenhao.png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/xuangze.xml b/wb_new_ui/assets/Info_Poker_RunFastNew_old/xuangze.xml
new file mode 100644
index 00000000..953592bb
--- /dev/null
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew_old/xuangze.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew_old/yd.png b/wb_new_ui/assets/Info_Poker_RunFastNew_old/yd.png
new file mode 100644
index 00000000..c092d988
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew_old/yd.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png.meta b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png.meta
index 05d56786..fc6d244a 100644
--- a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png.meta
+++ b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_20.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/common/af187115a4824290240734622129b80b
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png.meta b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png.meta
index 25178483..ef3c8be7 100644
--- a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png.meta
+++ b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5m.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/common/af187115a4824290240734622129b80b
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png.meta b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png.meta
index 43625ad9..7e2383be 100644
--- a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png.meta
+++ b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_dqel7j5n.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/common/af187115a4824290240734622129b80b
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ina.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ina.png.meta
index 8dbd9a87..54c4d572 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ina.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ina.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ine.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ine.png.meta
index 57e6f9d3..62bc43a5 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ine.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_fwp27ine.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_sqe07inm.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_sqe07inm.png.meta
index 28ce7184..58c0643e 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_sqe07inm.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_sqe07inm.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png.meta
index ba32cadb..9ebc7d7d 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_6.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_6.png.meta
index f3c77999..bfb829ff 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_6.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_6.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_7.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_7.png.meta
index 33bf5e73..34f75858 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_7.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_7.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itw.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itw.png.meta
index 431e80cc..6aa63168 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itw.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itw.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itx.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itx.png.meta
index 5de4a9b1..af05d67d 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itx.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_b7gsp7itx.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7ith.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7ith.png.meta
index 866216cf..a4f3a3f9 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7ith.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7ith.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7itj.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7itj.png.meta
index 69875235..95861751 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7itj.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_fwp2p7itj.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivm.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivm.png.meta
index b18ae20f..f9294ab6 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivm.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivm.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivn.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivn.png.meta
index 5b829c1d..4fd07206 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivn.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7ivn.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iw9.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iw9.png.meta
index 35fb3ce6..696ab99a 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iw9.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iw9.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iwd.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iwd.png.meta
index fb538cc4..ce33ab38 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iwd.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_sqe0p7iwd.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwe.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwe.png.meta
index 8b110adb..6ce7776e 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwe.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwe.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwm.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwm.png.meta
index 52f03d84..7684f11a 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwm.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwm.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwr.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwr.png.meta
index 5d9bf8bf..cf227e08 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwr.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwr.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwv.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwv.png.meta
index 92c419b9..1a116d07 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwv.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_wqjdp7iwv.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/static/fonts/AlimamaFangYuanTiVF-Thin.ttf.meta b/wb_unity_pro/Assets/ART/base/static/fonts/AlimamaFangYuanTiVF-Thin.ttf.meta
index 8ef02bca..78b9e98f 100644
--- a/wb_unity_pro/Assets/ART/base/static/fonts/AlimamaFangYuanTiVF-Thin.ttf.meta
+++ b/wb_unity_pro/Assets/ART/base/static/fonts/AlimamaFangYuanTiVF-Thin.ttf.meta
@@ -11,7 +11,10 @@ TrueTypeFontImporter:
fontName: Alimama FangYuanTi VF
fontNames:
- Alimama FangYuanTi VF
- fallbackFontReferences: []
+ fallbackFontReferences:
+ - {fileID: 12800000, guid: 9c70fa85bfdf95543af8ecc6ade75c64, type: 3}
+ - {fileID: 12800000, guid: 6f57e0b61c884e243818f5920eb808ea, type: 3}
+ - {fileID: 12800000, guid: 682c1169bde6eab43996b468a7ff85aa, type: 3}
customCharacters:
fontRenderingMode: 0
ascentCalculationMode: 1
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6g.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6g.png.meta
index 9501a6a9..5c473557 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6g.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6g.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6h.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6h.png.meta
index f855d02d..485e9b17 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6h.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6h.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6i.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6i.png.meta
index a704d7ee..6fe3f09f 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6i.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_heaj6i.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6j.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6j.png.meta
index 375e562b..db1ef9c0 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6j.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6j.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6k.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6k.png.meta
index f4713960..92491340 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6k.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6k.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6m.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6m.png.meta
index d9afc0e1..fd00f3f4 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6m.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6m.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6n.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6n.png.meta
index 7c673118..21ff8d2c 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6n.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6n.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6o.png.meta b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6o.png.meta
index 37fc7109..373946dd 100644
--- a/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6o.png.meta
+++ b/wb_unity_pro/Assets/ART/extend/majiang/hechi/ui/Extend_MJ_HeChi_atlas_jeon6o.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png
index af0cd2e0..fb450e10 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png
index 715e3c13..c59c6eab 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas10.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas10.png
deleted file mode 100644
index 3da0d326..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas10.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas10.png.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas10.png.meta
deleted file mode 100644
index d466ed89..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas10.png.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: fd87f3f92fd29d348bea95a761496de1
-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/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_fwnygz.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_fwnygz.png
new file mode 100644
index 00000000..ad4bbfb8
Binary files /dev/null and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_fwnygz.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_fwnyh0.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_fwnyh0.png
new file mode 100644
index 00000000..21dde2c5
Binary files /dev/null and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_fwnyh0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_m9jahw.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_m9jahw.png
new file mode 100644
index 00000000..62012fdd
Binary files /dev/null and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_m9jahw.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnkq.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnkq.png
deleted file mode 100644
index 679c65b3..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnkq.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnkq.png.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnkq.png.meta
deleted file mode 100644
index de8868ac..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnkq.png.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: 013d01a77efc4c34b9c1fd585cfc5a1b
-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/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmk.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmk.png
deleted file mode 100644
index 4a3fc482..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmk.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmk.png.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmk.png.meta
deleted file mode 100644
index e2c24fff..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmk.png.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: e8e2ee24f0f001746bb04c69cdb1464b
-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/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnml.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnml.png
deleted file mode 100644
index f3c82aab..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnml.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnml.png.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnml.png.meta
deleted file mode 100644
index 4f15f744..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnml.png.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: 8c742b6fe8a475444ac6fb1f637f702c
-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/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmn.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmn.png
deleted file mode 100644
index b3a24470..00000000
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmn.png and /dev/null differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmn.png.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmn.png.meta
deleted file mode 100644
index 36b4e479..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_yffnmn.png.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: ae49c0067af9ad941bc9438282e56b47
-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/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
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 7bb8c176..c3cd1123 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/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb2.mp3 b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz94.mp3
similarity index 100%
rename from wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb2.mp3
rename to wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz94.mp3
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb5.mp3 b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz97.mp3
similarity index 100%
rename from wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb5.mp3
rename to wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz97.mp3
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnbr.mp3 b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz9s.mp3
similarity index 100%
rename from wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnbr.mp3
rename to wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz9s.mp3
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb2.mp3.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb2.mp3.meta
deleted file mode 100644
index 66b71404..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb2.mp3.meta
+++ /dev/null
@@ -1,22 +0,0 @@
-fileFormatVersion: 2
-guid: f0099d046aa39964ab23f461166d63ee
-AudioImporter:
- externalObjects: {}
- serializedVersion: 6
- defaultSettings:
- loadType: 0
- sampleRateSetting: 0
- sampleRateOverride: 44100
- compressionFormat: 1
- quality: 1
- conversionMode: 0
- platformSettingOverrides: {}
- forceToMono: 0
- normalize: 1
- preloadAudioData: 1
- loadInBackground: 0
- ambisonic: 0
- 3D: 1
- userData:
- assetBundleName: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb5.mp3.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb5.mp3.meta
deleted file mode 100644
index 35e99765..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnb5.mp3.meta
+++ /dev/null
@@ -1,22 +0,0 @@
-fileFormatVersion: 2
-guid: 20410f1202482a74a8e646be798ddb00
-AudioImporter:
- externalObjects: {}
- serializedVersion: 6
- defaultSettings:
- loadType: 0
- sampleRateSetting: 0
- sampleRateOverride: 44100
- compressionFormat: 1
- quality: 1
- conversionMode: 0
- platformSettingOverrides: {}
- forceToMono: 0
- normalize: 1
- preloadAudioData: 1
- loadInBackground: 0
- ambisonic: 0
- 3D: 1
- userData:
- assetBundleName: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnbr.mp3.meta b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnbr.mp3.meta
deleted file mode 100644
index 44faf7f1..00000000
--- a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_yffnbr.mp3.meta
+++ /dev/null
@@ -1,22 +0,0 @@
-fileFormatVersion: 2
-guid: e956e10bc102e494d8bf63f60ccdf0cf
-AudioImporter:
- externalObjects: {}
- serializedVersion: 6
- defaultSettings:
- loadType: 0
- sampleRateSetting: 0
- sampleRateOverride: 44100
- compressionFormat: 1
- quality: 1
- conversionMode: 0
- platformSettingOverrides: {}
- forceToMono: 0
- normalize: 1
- preloadAudioData: 1
- loadInBackground: 0
- ambisonic: 0
- 3D: 1
- userData:
- assetBundleName: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
- assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png
index 88920317..70a6cdd4 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes
index 66df3b30..21d34f9e 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes differ
diff --git a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_khop7i5c.png.meta b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_khop7i5c.png.meta
index 7d9debd5..99b799bc 100644
--- a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_khop7i5c.png.meta
+++ b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_khop7i5c.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/embed/81863606c8fe7f6a2bad1ce51d6dc503
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/StreamingAssets/Pack.byte b/wb_unity_pro/Assets/StreamingAssets/Pack.byte
index 3e8c89d5..c5b9b184 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 a1ded94e..8169bb6f 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/chat/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.6.bytes
index 91fd4de3..410ecd49 100644
Binary files a/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.6.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 b39a311b..050d046e 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 9554657a..32e4b316 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 ddf7ab29..5d7d39fe 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/login/asset_pack1.0.9.bytes b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.9.bytes
index 07c4b82a..18428b02 100644
Binary files a/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.9.bytes and b/wb_unity_pro/Pack/Android32/base/login/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 781ef72e..85d71d6a 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_pokemajiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.6.bytes
index a566c48a..fcfd78d4 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.6.bytes
index 228ea09f..8428e4d0 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/main_poker/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 5f51d341..6f0da69e 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/main_zipaimajiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.6.bytes
index 340d367d..047741b8 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/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 5ff21288..e7d52c17 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/rank/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.6.bytes
index d0a7f394..2a1853b5 100644
Binary files a/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.6.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 e1e58f18..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 5fedc58f..4eef3259 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 bb6377c2..43389698 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 7732c01d..17c161a2 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 f80c4ce1..bbc7267d 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 21f82605..bb65af07 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/fanpaofa/asset_pack1.0.49.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/fanpaofa/asset_pack1.0.49.bytes
index f1a2b699..f2be25a5 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/ProjectSettings/ProjectSettings.asset b/wb_unity_pro/ProjectSettings/ProjectSettings.asset
index bc09d766..dbc04cd9 100644
--- a/wb_unity_pro/ProjectSettings/ProjectSettings.asset
+++ b/wb_unity_pro/ProjectSettings/ProjectSettings.asset
@@ -779,7 +779,7 @@ PlayerSettings:
1: FAIRYGUI_TOLUA;Build_App;NOT_HOUSE_TEST
2: Build_App
4: FAIRYGUI_TOLUA;Build_App;NOT_ACCOUT_TEST;NOT_HOUSE_TEST
- 7: FAIRYGUI_TOLUA;Build_App;NOT_ACCOUT_TEST;NOT_HOUSE_TEST
+ 7: FAIRYGUI_TOLUA;Build_App;NOT_ACCOUT_TEST;NOT_HOUSE_TEST;INIT_JSON_TEST
platformArchitecture:
iPhone: 1
scriptingBackend: