diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
index 84c6282e..a30b7277 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
@@ -1488,15 +1488,8 @@ function M:InitView(url)
end)
end
- -- 2. 刷新当前详情页的数据 (可选,取决于“刷新当前牌友圈”的具体定义)
- -- 如果只是刷新列表,上面的步骤就够了。
- -- 如果需要刷新当前圈子的房间/玩法信息,可以调用:
+ --刷新当前详情页的数据 :
self:__loadGroupData()
- -- 或者更轻量级的刷新:
- -- self:_evtUpdatePlay()
-
- -- 这里假设主要是刷新列表展示,如需刷新详情可取消下面注释
- -- self:__loadGroupData()
ViewUtil.ErrorTip(0, "刷新成功")
else
@@ -1508,7 +1501,7 @@ function M:InitView(url)
-- local btn_cancel = self._view:GetChild('node_matching'):GetChild('btn_cancel')
-- btn_cancel.onClick:Set(
-- function()
- -- local _gameCtrl = ControllerManager.GetController(GameController)
+ -- local _gameCtrl = ControllerManager.GetController(GameController)--
-- local _currentCtrl = ControllerManager.GetCurrenController()
-- if _gameCtrl == _currentCtrl then
-- _gameCtrl:LevelRoom(
@@ -1636,27 +1629,6 @@ function M:SwitchToGroup(newGroup)
end)
end
end
-
--- 嵌入GroupMainView到详情页中
-function M:_embedGroupMainView()
- local root_view = self._root_view_for_embed
- local groupMainView = self._groupMainView_to_embed
-
- -- 设置GroupMainView的父节点为详情页的根节点
- groupMainView:SetParent(root_view)
-
- -- 设置GroupMainView的锚点和位置
- groupMainView:SetAnchor(0, 0, 1, 1)
- groupMainView:SetPos(0, 0)
- groupMainView:SetSize(root_view:GetSize())
-
- -- 设置GroupMainView的可见性
- groupMainView.visible = true
-
- -- 传递必要的数据或回调给GroupMainView
- groupMainView:FillData()
-end
-
function M:__saveLastData()
if not self._get_data then self._get_data = true end
local data = json.encode(self.curGroup.playList)
diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupMainView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupMainView.lua
index 8b99001b..310927d3 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupMainView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupMainView.lua
@@ -131,23 +131,23 @@ function M:InitView(url)
-- 读取牌友圈信息
local filename = 'fginfo_' .. DataManager.SelfUser.account_id
local json_data = Utils.LoadLocalFile(filename)
- local fg_info = not json_data and {} or json.decode(json_data)
+ --local fg_info = not json_data and {} or json.decode(json_data)
- -- 创建GroupInfoView,传入根视图和列表页容器
- -- GroupMainView会被嵌入到GroupInfoView的lnfo_group组件中,显示所有圈子列表
- local info = GroupInfoView.new(curGroup, fg_info, self._root_view, self)
- info:SetCallBack(function()
- -- 关闭回调:恢复列表页到原位置
- if self and self._view and not self._view.isDisposed then
- -- 将列表页移回原容器
- if self._originalParent then
- self._originalParent:AddChild(self._view)
- self._originalParent = nil
- end
- self._view.visible = false
- end
- end)
- info:Show()
+ -- -- 创建GroupInfoView,传入根视图和列表页容器
+ -- -- GroupMainView会被嵌入到GroupInfoView的lnfo_group组件中,显示所有圈子列表
+ -- local info = GroupInfoView.new(curGroup, fg_info, self._root_view, self)
+ -- info:SetCallBack(function()
+ -- -- 关闭回调:恢复列表页到原位置
+ -- if self and self._view and not self._view.isDisposed then
+ -- -- 将列表页移回原容器
+ -- if self._originalParent then
+ -- self._originalParent:AddChild(self._view)
+ -- self._originalParent = nil
+ -- end
+ -- self._view.visible = false
+ -- end
+ -- end)
+ -- info:Show()
end
else
ViewUtil.ErrorTip(10000000, '获取牌友圈失败,请检查网络设置!')
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngFagListView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngFagListView.lua
index 43eb97fd..a8bbd4eb 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngFagListView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngFagListView.lua
@@ -43,6 +43,12 @@ function M:FillView()
local group = DataManager.groups:get(self.group_id)
if group.lev < 3 then
self._view:GetController("mng").selectedIndex = 1
+ end
+ if self._view:GetChild("tex_gr_name") then
+ self._view:GetChild("tex_gr_name").text = group.o_nick
+ end
+ if self._view:GetChild("tex_gr_id") then
+ self._view:GetChild("tex_gr_id").text = "ID: " .. group.id
end
-- 初始化列表
self.lst_fag = self._view:GetChild("lst_fag")
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngGiveFagListView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngGiveFagListView.lua
index 3faa8cb6..ad1ad927 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngGiveFagListView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngGiveFagListView.lua
@@ -212,14 +212,16 @@ function M:OnRenderItem(index, obj)
local local_data = (self.quary_id == 0 and self.query_nick == "" ) and self.fag_data or self.fag_result_data
local rdata = local_data[index + 1]
local num = d2ad(rdata.hp)
- obj:GetChild("tex_mgr_name").text = ViewUtil.stringEllipsis(rdata.m_nick)
- obj:GetChild("tex_mgr_id").text = rdata.mgr_id
- obj:GetChild("tex_obj_name").text = ViewUtil.stringEllipsis(rdata.t_nick)
- obj:GetChild("tex_id").text = rdata.uid
- obj:GetChild("tex_num").text = num >= 0 and "+".. num or num
- obj:GetController("add").selectedIndex = num >=0 and 1 or 0
- obj:GetChild("tex_left").text = d2ad(rdata.cur_hp)
- obj:GetChild("tex_time").text = os.date("%Y-%m-%d\n%H:%M",rdata.time)
+ printlog("+++++++++++++++++++++++++sssssssssss")
+ pt(rdata)
+ obj:GetChild("tex_name").text = ViewUtil.stringEllipsis(rdata.m_nick)
+ obj:GetChild("tex_id").text = rdata.mgr_id
+ -- obj:GetChild("tex_obj_name").text = ViewUtil.stringEllipsis(rdata.t_nick)
+ -- obj:GetChild("tex_id").text = rdata.uid
+ -- obj:GetChild("tex_num").text = num >= 0 and "+".. num or num
+ -- obj:GetController("add").selectedIndex = num >=0 and 1 or 0
+ -- obj:GetChild("tex_left").text = d2ad(rdata.cur_hp)
+ -- obj:GetChild("tex_time").text = os.date("%Y-%m-%d\n%H:%M",rdata.time)
end
return M
\ No newline at end of file
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView.lua
index a62238df..079be680 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView.lua
@@ -219,11 +219,11 @@ function M:GetMemberData(index)
end
-- 修改体力值
-local function __change_fag(gid, pid, is_add, cur_hp, callback)
- printlog("修改体力值==》》》",pid)
+local function __change_fag(gid, pid, is_add, cur_hp,member, callback)
+
local gniv =
GroupNumberInputView.new(
- nil,
+ member,
function(num)
num = ad2d((is_add and num or -num))
ViewUtil.ShowModalWait()
@@ -232,7 +232,9 @@ local function __change_fag(gid, pid, is_add, cur_hp, callback)
gid,
pid,
num,
+
function(res1)
+
ViewUtil.CloseModalWait()
-- if gniv._is_destroy then
-- return
@@ -243,6 +245,7 @@ local function __change_fag(gid, pid, is_add, cur_hp, callback)
ViewUtil.ErrorTip(res1.ReturnCode, '更改积分失败!')
end
end
+
)
-- item:GetChild("tex_fag").text = (self_user or show_fag) and num or show_fag_str
end,
@@ -320,6 +323,7 @@ function M:FillItem(obj, member, refresh)
member.uid,
true,
nil,
+ member,
function(data)
local hp = data.hp
member.hp = hp
@@ -349,6 +353,7 @@ function M:FillItem(obj, member, refresh)
member.uid,
false,
member.hp,
+ member,
function(data)
local hp = data.hp
member.hp = hp
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua
index 741a94ae..eec49f78 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua
@@ -62,7 +62,7 @@ function M:FillView()
self._view = UIPackage.CreateObjectFromURL('ui://NewGroup/View_GroupMemberList1')
local rtype = self._view:GetChild("n132")
- rtype.visible = true
+ --rtype.visible = false
rtype.onChanged:Set(function ()
if tostring(self.online) == rtype.value then
@@ -294,6 +294,7 @@ function M:FillItem(obj, member, refresh)
obj:GetChild('tex_name').text = ViewUtil.stringEllipsis(member.nick)
obj:GetChild('btn_head').icon = 'ui://Common/Head0'
ImageLoad.Load(member.portrait, obj:GetChild('btn_head')._iconObject, self.class)
+
-- obj.data = member.id
-- 显示玩家标签,合伙人、管理员
local ctr_type = obj:GetController('type')
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPlayStatView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPlayStatView.lua
index 81024764..3f48911c 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPlayStatView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPlayStatView.lua
@@ -79,10 +79,10 @@ function M:OnRenderConsumeItem(index, obj)
else
obj:GetController("total").selectedIndex = 1
end
-
+ obj:GetChild("tex_date").text = os.date("%Y/%m/%d")
obj:GetChild("tex_round").text = data.round / 100
obj:GetChild("tex_finish").text = data.valid / 100
- obj:GetChild("tex_unfinish").text = data.no_valid / 100
+ obj:GetChild("tex_unfinish").text = data.valid / 100-data.no_valid / 100
obj:GetChild("tex_diamond").text = data.diamo_cost / 100
end
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRankView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRankView.lua
index de4c1adb..62b67d47 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRankView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRankView.lua
@@ -49,7 +49,12 @@ function M:FillView()
if group.lev ~= 3 then
self._view:GetController("mng").selectedIndex = 1
end
-
+ if self._view:GetChild("tex_gr_name") then
+ self._view:GetChild("tex_gr_name").text = group.o_nick
+ end
+ if self._view:GetChild("tex_gr_id") then
+ self._view:GetChild("tex_gr_id").text = "ID: " .. group.id
+ end
self.zongren = self._view:GetChild("zongren")
self.rank_data = {}
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngXingYunStatView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngXingYunStatView.lua
index 54cb956c..851eafcb 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngXingYunStatView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngXingYunStatView.lua
@@ -19,16 +19,13 @@ function M:initData()
self.lst_record.numItems = 0
self.record_data = {}
- local now_time = os.date("*t",now)
- local today = os.time({year=now_time.year, month=now_time.month, day=now_time.day, hour=0,min=0,sec=0})
+ local now_time = os.date("*t", now)
+ local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 })
self.begin_time = today
self.end_time = today + 86400
self:GetRecordData(0)
-
end
-
-
function M:InitView()
self._view = UIPackage.CreateObjectFromURL("ui://NewGroup/View_GroupXingYunStat")
@@ -36,33 +33,47 @@ function M:InitView()
-- if group.lev ~= 3 then
-- self._view:GetController("mng").selectedIndex = 1
-- end
+ if group then
+ printlog("group.lev-----------------", group.o_nick) -- 直接打印 lev 字段的值notice
+ pt(group) -- 使用 pt 打印整个表的详细结构
+ end
local lst_mgr_index = self._view:GetChild("lst_mgr_index")
-
+ if self._view:GetChild("tex_gyxs_name") then
+ self._view:GetChild("tex_gyxs_name").text = group.o_nick
+ end
+ if self._view:GetChild("tex_gyxs_id") then
+ self._view:GetChild("tex_gyxs_id").text = "ID: " .. group.id
+ end
+ if self._view:GetChild("tex_gyxs_session") then
+ self._view:GetChild("tex_gyxs_session").text = ""
+ end
self.lst_record = self._view:GetChild("lst_record")
- self.lst_record:SetVirtual()
+ self.lst_record:SetVirtual()
self.lst_record.itemRenderer = function(index, obj)
self:OnRenderRecordItem(index, obj)
end
self.lst_record.scrollPane.onPullUpRelease:Set(function()
self:GetRecordData(self.lst_record.numItems)
end)
-
- self.time_panel = TimeSettingPanel.new(self._view, self._view:GetChild("btn_date1"), self._view:GetChild("btn_date2"), -308, 0, nil, true)
+
+
+ self.time_panel = TimeSettingPanel.new(self._view, self._view:GetChild("btn_date1"), self._view:GetChild("btn_date2"),
+ -308, 0, nil, true)
local ctr_page = self._view:GetController("type")
ctr_page.onChanged:Set(function()
self.record_data = {}
self.lst_record.numItems = 0
if ctr_page.selectedIndex == 0 then
- local now_time = os.date("*t",now)
- local today = os.time({year=now_time.year, month=now_time.month, day=now_time.day, hour=0,min=0,sec=0})
+ local now_time = os.date("*t", now)
+ local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 })
self.begin_time = today
self.end_time = today + 86400
else
- local now_time = os.date("*t",now)
- local today = os.time({year=now_time.year, month=now_time.month, day=now_time.day, hour=0,min=0,sec=0})
+ local now_time = os.date("*t", now)
+ local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 })
self.begin_time = today - 86400 * ctr_page.selectedIndex
self.end_time = today - 86400 * (ctr_page.selectedIndex - 1)
end
@@ -78,28 +89,23 @@ function M:InitView()
end)
self.totalwin = self._view:GetChild("tex_alltotal")
-
end
-
function M:GetRecordData(index)
-
ViewUtil.ShowModalWait()
local time_type = self._view:GetController("type").selectedIndex
if self.begin_time ~= nil and self.end_time ~= nil then
time_type = 0
end
-
- local fgCtr = ControllerManager.GetController(NewGroupController)
- fgCtr:FG_GetXingYunStat(self.group_id, index, 6, time_type,self.begin_time,self.end_time,function(res)
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_GetXingYunStat(self.group_id, index, 6, time_type, self.begin_time, self.end_time, function(res)
ViewUtil.CloseModalWait()
if res.ReturnCode == 0 then
-
local members = res.Data.members
-
+
self.totalwin.text = d2ad(res.Data.all_total_win)
for i = 1, #members do
self.record_data[#self.record_data + 1] = members[i]
@@ -109,23 +115,19 @@ function M:GetRecordData(index)
end)
end
-
function M:FillRecordItem(data, obj)
-
- local group = DataManager.groups:get(self.group_id)
+ local group = DataManager.groups:get(self.group_id)
- obj:GetChild("tex_name").text = ViewUtil.stringEllipsis(data.nick)
- obj:GetChild("tex_id").text = "ID:" .. data.uid
- obj:GetChild("tex_round_total").text = data.total_round
- obj:GetChild("tex_total").text = d2ad(data.total_win)
+ obj:GetChild("tex_name").text = ViewUtil.stringEllipsis(data.nick)
+ obj:GetChild("tex_id").text = "ID:" .. data.uid
+ obj:GetChild("tex_round_total").text = data.total_round
+ obj:GetChild("tex_total").text = d2ad(data.total_win)
obj:GetChild("tex_round_youxiao").text = data.valid_round / 100
-
end
function M:OnRenderRecordItem(index, obj)
local data = self.record_data[index + 1]
- self:FillRecordItem(data, obj)
+ self:FillRecordItem(data, obj)
end
-
-return M
\ No newline at end of file
+return M
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupNumberInputView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupNumberInputView.lua
index 9503fe61..865289f2 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupNumberInputView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupNumberInputView.lua
@@ -44,6 +44,22 @@ function M:init(url)
self:ClearNumTex()
local cnt = self._view.numChildren - 1
+
+ if self._view:GetChild("tex_name") then
+ self._view:GetChild("tex_name").text = self._blur_view.nick
+ end
+ if self._view:GetChild("tex_id") then
+ self._view:GetChild("tex_id").text = self._blur_view.uid
+ end
+ if self._view:GetChild("btn_head") then
+ self._view:GetChild('btn_head').icon = 'ui://Common/Head0'
+ ImageLoad.Load(self._blur_view.portrait, self._view:GetChild('btn_head')._iconObject, self.class)
+ end
+ if self._view:GetChild("tex_Current matchScore") then
+ self._view:GetChild("tex_Current matchScore").text = d2ad(self._blur_view.hp)
+ end
+
+
for i = 0, 10 do
local obj = self._view:GetChild("btn_" .. i)
if obj then
diff --git a/wb_new_ui/.objs/metas/1hl55dqm/c4r115.info b/wb_new_ui/.objs/metas/1hl55dqm/c4r115.info
index 212f8d9a..14847104 100644
--- a/wb_new_ui/.objs/metas/1hl55dqm/c4r115.info
+++ b/wb_new_ui/.objs/metas/1hl55dqm/c4r115.info
@@ -33,10 +33,7 @@
"n231_ttbr": {
"collapsed": true
},
- "n89_se1s": {
- "collapsed": true
- },
- "n129_t038": {
+ "n155_c4r1": {
"collapsed": true
},
"n52_v38k": {
@@ -45,9 +42,6 @@
"n160_c4r1": {
"collapsed": true
},
- "n155_c4r1": {
- "collapsed": true
- },
"n217_rjio": {
"collapsed": true
}
diff --git a/wb_new_ui/.objs/metas/96mvx2ml/10kys6.info b/wb_new_ui/.objs/metas/96mvx2ml/10kys6.info
index 1629cbbb..f816c2a2 100644
--- a/wb_new_ui/.objs/metas/96mvx2ml/10kys6.info
+++ b/wb_new_ui/.objs/metas/96mvx2ml/10kys6.info
@@ -1,6 +1,11 @@
{
"objectStatus": {
- "n146_udgc": {
+ "n166_ozsy": {
+ "hidden": true,
+ "collapsed": true
+ },
+ "n149_udgc": {
+ "hidden": true,
"collapsed": true
},
"n153_udgc": {
@@ -8,20 +13,6 @@
},
"n152_udgc": {
"hidden": true
- },
- "n149_udgc": {
- "hidden": true,
- "collapsed": true
- },
- "n143_udgc": {
- "collapsed": true
- },
- "n140_udgc": {
- "collapsed": true
- },
- "n166_ozsy": {
- "hidden": true,
- "collapsed": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/d1qrzqpr/c4r116.info b/wb_new_ui/.objs/metas/d1qrzqpr/c4r116.info
index 36378fe3..ccff922a 100644
--- a/wb_new_ui/.objs/metas/d1qrzqpr/c4r116.info
+++ b/wb_new_ui/.objs/metas/d1qrzqpr/c4r116.info
@@ -1,11 +1,5 @@
{
"objectStatus": {
- "n163_ozsy": {
- "collapsed": true
- },
- "n157_ug6y": {
- "collapsed": true
- },
"n74_nip5": {
"hidden": true
}
diff --git a/wb_new_ui/.objs/metas/egnzysm7/ffp38j.info b/wb_new_ui/.objs/metas/egnzysm7/ffp38j.info
index 33321412..22178475 100644
--- a/wb_new_ui/.objs/metas/egnzysm7/ffp38j.info
+++ b/wb_new_ui/.objs/metas/egnzysm7/ffp38j.info
@@ -1,11 +1,3 @@
{
- "objectStatus": {
- "n322_gz8w": {
- "collapsed": true
- },
- "n317_ffp3": {
- "collapsed": true
- }
- },
"fitScreen": "FitSize"
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info b/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
index 5077008b..aab9963d 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
@@ -9,6 +9,9 @@
"n191_xsk4": {
"hidden": true
},
+ "n246_m0lm": {
+ "locked": true
+ },
"n78_i7lq": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/dzx8hbf.info b/wb_new_ui/.objs/metas/m7iejg46/dzx8hbf.info
index 0535d10e..9e26dfee 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/dzx8hbf.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/dzx8hbf.info
@@ -1,7 +1 @@
-{
- "objectStatus": {
- "n4_dzx8": {
- "hidden": true
- }
- }
-}
\ No newline at end of file
+{}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ex3l7igb.info b/wb_new_ui/.objs/metas/m7iejg46/ex3l7igb.info
index 9296e7d5..b5a1a7b1 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/ex3l7igb.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/ex3l7igb.info
@@ -1,23 +1,10 @@
{
"objectStatus": {
- "n13_kwi0": {
+ "n22_ex3l": {
"hidden": true
},
"n8_gls1": {
"hidden": true
- },
- "n14_kwi0": {
- "hidden": true
- },
- "n12_kwi0": {
- "hidden": true
- },
- "n7_gls1": {
- "hidden": true
- },
- "n22_ex3l": {
- "hidden": true,
- "collapsed": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/f6brhww.info b/wb_new_ui/.objs/metas/m7iejg46/f6brhww.info
index 249a6095..ee3a6e2b 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/f6brhww.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/f6brhww.info
@@ -3,9 +3,6 @@
"n54_j120": {
"hidden": true
},
- "n69_ex3l": {
- "collapsed": true
- },
"n42_f6br": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/g6sw7i79.info b/wb_new_ui/.objs/metas/m7iejg46/g6sw7i79.info
index 226fdba8..e4f5d468 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/g6sw7i79.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/g6sw7i79.info
@@ -3,9 +3,6 @@
"n155_sbng": {
"collapsed": true
},
- "n83_kwi0": {
- "collapsed": true
- },
"n187_g6sw": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/kwi0hkb.info b/wb_new_ui/.objs/metas/m7iejg46/kwi0hkb.info
index e5131ba1..9f245a9a 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/kwi0hkb.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/kwi0hkb.info
@@ -3,7 +3,7 @@
"n160_10xl7": {
"hidden": true
},
- "n162_10xl7": {
+ "n163_10xl7": {
"collapsed": true
}
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/kwi0hkr.info b/wb_new_ui/.objs/metas/m7iejg46/kwi0hkr.info
index dd0a7da9..bbd07466 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/kwi0hkr.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/kwi0hkr.info
@@ -3,6 +3,9 @@
"n22_cioe": {
"hidden": true
},
+ "n136_s8rw": {
+ "hidden": true
+ },
"n21_cioe": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info
index 09eb47af..7f348255 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info
@@ -1,13 +1,7 @@
{
"objectStatus": {
- "n120_l7wn": {
- "collapsed": true
- },
- "n128_tkv1": {
- "collapsed": true
- },
- "n132_tkv1": {
- "collapsed": true
+ "n122_tkv1": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i81.info b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i81.info
index 8ccf73d6..ba1af5e4 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i81.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i81.info
@@ -3,8 +3,8 @@
"n151_tkv1": {
"collapsed": true
},
- "n140_tkv1": {
- "collapsed": true
+ "n139_tkv1": {
+ "hidden": true
},
"n144_tkv1": {
"collapsed": true
diff --git a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info
index 1d9f8a41..9e26dfee 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info
@@ -1,34 +1 @@
-{
- "objectStatus": {
- "n112_l7wn": {
- "hidden": true
- },
- "n115_l7wn": {
- "hidden": true
- },
- "n117_l7wn": {
- "hidden": true
- },
- "n114_l7wn": {
- "hidden": true
- },
- "n113_l7wn": {
- "hidden": true
- },
- "n116_l7wn": {
- "hidden": true
- },
- "n118_l7wn": {
- "hidden": true
- },
- "n111_l7wn": {
- "hidden": true
- },
- "n122_jawz": {
- "hidden": true
- },
- "n119_l7wn": {
- "hidden": true
- }
- }
-}
\ No newline at end of file
+{}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/mpllhv2.info b/wb_new_ui/.objs/metas/m7iejg46/mpllhv2.info
index 9a781832..749d901b 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/mpllhv2.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/mpllhv2.info
@@ -1,27 +1,15 @@
{
"objectStatus": {
- "n199_t7dq": {
- "hidden": true
- },
- "n183_s2gd": {
- "locked": true
+ "n131_kwi0": {
+ "hidden": true,
+ "collapsed": true
},
"n198_r0qx": {
"hidden": true,
"collapsed": true
},
- "n147_r4s4": {
- "collapsed": true
- },
- "n131_kwi0": {
- "hidden": true,
- "collapsed": true
- },
- "n153_g21o": {
- "collapsed": true
- },
- "n146_r4s4": {
- "collapsed": true
+ "n162_g21o": {
+ "hidden": true
}
},
"fitScreen": "FitSize"
diff --git a/wb_new_ui/.objs/metas/m7iejg46/tkv17ii5.info b/wb_new_ui/.objs/metas/m7iejg46/tkv17ii5.info
index 89a3a89d..82d643f6 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/tkv17ii5.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/tkv17ii5.info
@@ -2,6 +2,9 @@
"objectStatus": {
"n131_jawz": {
"hidden": true
+ },
+ "n136_s8rw": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/tkv17iig.info b/wb_new_ui/.objs/metas/m7iejg46/tkv17iig.info
index 43b0ae9c..c677e7c4 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/tkv17iig.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/tkv17iig.info
@@ -11,6 +11,9 @@
},
"n65_kwi0": {
"hidden": true
+ },
+ "n140_ex3l": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
index 3864e298..43692621 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
@@ -6,6 +6,9 @@
"n122_b8zx": {
"hidden": true
},
+ "n132_z384": {
+ "hidden": true
+ },
"n127_b8zx": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/qubt49z8/mpncc1i.info b/wb_new_ui/.objs/metas/qubt49z8/mpncc1i.info
index 08b42843..fdea9a2d 100644
--- a/wb_new_ui/.objs/metas/qubt49z8/mpncc1i.info
+++ b/wb_new_ui/.objs/metas/qubt49z8/mpncc1i.info
@@ -1,5 +1,17 @@
{
"objectStatus": {
+ "n103_t038": {
+ "collapsed": true
+ },
+ "n167_ozsy": {
+ "collapsed": true
+ },
+ "n172_liak": {
+ "collapsed": true
+ },
+ "n106_t038": {
+ "collapsed": true
+ },
"n82_e8zl": {
"hidden": true
}
diff --git a/wb_new_ui/.objs/workspace.json b/wb_new_ui/.objs/workspace.json
index 5e603905..f2790253 100644
--- a/wb_new_ui/.objs/workspace.json
+++ b/wb_new_ui/.objs/workspace.json
@@ -3,16 +3,21 @@
"libview.iconScale": 0,
"doc.openedDocs": [
"ui://m7iejg4610snh5j",
- "ui://m7iejg46kwi0hkb",
- "ui://2d9xdj6z75efcz",
- "ui://1hl55dqmc4r115",
- "ui://27vd145bh1uu3i",
- "ui://27vd145br0qx7i5y"
+ "ui://m7iejg46l7wn7i82",
+ "ui://m7iejg46l7wn7i81",
+ "ui://m7iejg46l7wn7i80",
+ "ui://m7iejg46kwi0hkr",
+ "ui://m7iejg46tkv17ii5",
+ "ui://m7iejg46z3847i6m",
+ "ui://m7iejg46tkv17iig",
+ "ui://m7iejg46tkv17iii",
+ "ui://2d9xdj6zfn7fao",
+ "ui://2d9xdj6zlumrgj"
],
"test.device": "Huawei Mate20",
"canvasColor": 10066329,
"auxline2": true,
- "doc.activeDoc": "ui://m7iejg46kwi0hkb",
+ "doc.activeDoc": "ui://m7iejg46tkv17iii",
"libview.twoColumn": false,
"libview.expandedNodes": [
"27vd145b",
@@ -26,29 +31,57 @@
"27vd145b",
"/component/head/",
"27vd145b",
+ "/font/",
+ "27vd145b",
+ "/font/images/",
+ "27vd145b",
+ "/font/images/win/",
+ "27vd145b",
"/images/",
"27vd145b",
"/images/ComxiantangMui/",
+ "egnzysm7",
+ "/",
+ "egnzysm7",
+ "/component/",
+ "egnzysm7",
+ "/component/EPCDWHZMui/",
+ "442j0uep",
+ "/",
+ "442j0uep",
+ "/component/",
+ "442j0uep",
+ "/component/EPRHZMui/",
"1hl55dqm",
"/",
+ "d1qrzqpr",
+ "/",
+ "qubt49z8",
+ "/",
+ "4wmd3o8g",
+ "/",
+ "96mvx2ml",
+ "/",
+ "boq0ohep",
+ "/",
+ "2d9xdj6z",
+ "/",
+ "2d9xdj6z",
+ "/component/",
+ "2d9xdj6z",
+ "/component/group/",
"m7iejg46",
"/",
"m7iejg46",
+ "/component/",
+ "m7iejg46",
+ "/component/Btn/",
+ "m7iejg46",
"/images/",
"m7iejg46",
"/images/NGXiangTangMui/",
"m7iejg46",
"/mgr/",
- "m7iejg46",
- "/mgr/component/",
- "m7iejg46",
- "/mgr/component/member/",
- "m7iejg46",
- "/mgr/component/record/",
- "m7iejg46",
- "/mgr/imgs/",
- "m7iejg46",
- "/mgr/imgs/member/",
"x3mp2cn6",
"/"
],
diff --git a/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox.xml b/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox.xml
index 2f281d45..4c4758d4 100644
--- a/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox.xml
+++ b/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox.xml
@@ -1,12 +1,12 @@
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox2.xml b/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox2.xml
index c0b44007..819fe2e1 100644
--- a/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox2.xml
+++ b/wb_new_ui/assets/Common/component/create_room/Btn_cr_checkbox2.xml
@@ -1,8 +1,8 @@
-
+
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1122.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1122.png
new file mode 100644
index 00000000..0bf26ea1
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1122.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1123.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1123.png
new file mode 100644
index 00000000..f0711b0a
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1123.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1126(1).png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1126(1).png
new file mode 100644
index 00000000..2fae2a65
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1126(1).png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1127(1).png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1127(1).png
new file mode 100644
index 00000000..2e37581a
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Frame 1127(1).png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Rectangle 2887.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Rectangle 2887.png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Rectangle 2887.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Rectangle 2898.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Vector 59.png b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Vector 59.png
new file mode 100644
index 00000000..926ca166
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/EPCDWHZMui/Vector 59.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button2.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button2.xml
index d9826af3..fc734425 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button2.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button2.xml
@@ -2,7 +2,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button3.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button3.xml
index 1ba4f526..9afd74b1 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button3.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Button3.xml
@@ -1,8 +1,8 @@
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Cgm_create_room.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Cgm_create_room.xml
index e4be59a9..d74685c3 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Cgm_create_room.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/component/create_room/Cgm_create_room.xml
@@ -6,28 +6,28 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
@@ -41,22 +41,22 @@
-
-
-
+
+
+
-
+
-
+
-
+
-
+
@@ -66,76 +66,74 @@
-
-
-
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
-
-
+
-
-
+
+
-
+
-
+
-
+
-
+
@@ -144,7 +142,7 @@
-
+
@@ -152,33 +150,29 @@
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
@@ -186,7 +180,7 @@
-
+
@@ -194,49 +188,49 @@
-
-
+
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
@@ -244,27 +238,27 @@
-
+
-
-
+
+
-
+
-
-
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml
index d772fc81..90d1c9f8 100644
--- a/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml
+++ b/wb_new_ui/assets/Extend_Poker_ChangdeWHZ/package.xml
@@ -339,6 +339,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunBeard/component/EPRHZMui/Rectangle 2887(1).png b/wb_new_ui/assets/Extend_Poker_RunBeard/component/EPRHZMui/Rectangle 2887(1).png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_RunBeard/component/EPRHZMui/Rectangle 2887(1).png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunBeard/component/EPRHZMui/Rectangle 2898.png b/wb_new_ui/assets/Extend_Poker_RunBeard/component/EPRHZMui/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Extend_Poker_RunBeard/component/EPRHZMui/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunBeard/component/create_room/Cgm_create_room.xml b/wb_new_ui/assets/Extend_Poker_RunBeard/component/create_room/Cgm_create_room.xml
index 365965b9..112d2eff 100644
--- a/wb_new_ui/assets/Extend_Poker_RunBeard/component/create_room/Cgm_create_room.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunBeard/component/create_room/Cgm_create_room.xml
@@ -1,5 +1,5 @@
-
+
@@ -7,28 +7,28 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
@@ -47,9 +47,9 @@
-
-
-
+
+
+
@@ -62,7 +62,7 @@
-
+
@@ -93,28 +93,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -182,7 +182,7 @@
-
+
@@ -206,27 +206,27 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -234,7 +234,7 @@
-
+
@@ -245,15 +245,15 @@
-
+
-
+
-
+
-
+
@@ -261,41 +261,41 @@
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_RunBeard/package.xml b/wb_new_ui/assets/Extend_Poker_RunBeard/package.xml
index df8d2234..728eceed 100644
--- a/wb_new_ui/assets/Extend_Poker_RunBeard/package.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunBeard/package.xml
@@ -174,6 +174,8 @@
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_MJ_HongZhong/Cgm_create_room_yueyang.xml b/wb_new_ui/assets/Info_MJ_HongZhong/Cgm_create_room_yueyang.xml
index e161276c..af2d0813 100644
--- a/wb_new_ui/assets/Info_MJ_HongZhong/Cgm_create_room_yueyang.xml
+++ b/wb_new_ui/assets/Info_MJ_HongZhong/Cgm_create_room_yueyang.xml
@@ -1,65 +1,65 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
@@ -103,28 +103,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -132,13 +132,13 @@
-
+
-
+
@@ -156,13 +156,13 @@
-
+
-
+
@@ -170,27 +170,27 @@
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
@@ -201,22 +201,22 @@
-
+
-
+
-
-
+
+
-
+
-
-
-
-
-
+
+
+
+
+
diff --git a/wb_new_ui/assets/Info_MJ_HongZhong/Rectangle 2887(1).png b/wb_new_ui/assets/Info_MJ_HongZhong/Rectangle 2887(1).png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Info_MJ_HongZhong/Rectangle 2887(1).png differ
diff --git a/wb_new_ui/assets/Info_MJ_HongZhong/Rectangle 2898.png b/wb_new_ui/assets/Info_MJ_HongZhong/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Info_MJ_HongZhong/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/Info_MJ_HongZhong/package.xml b/wb_new_ui/assets/Info_MJ_HongZhong/package.xml
index b3a53b72..b705d929 100644
--- a/wb_new_ui/assets/Info_MJ_HongZhong/package.xml
+++ b/wb_new_ui/assets/Info_MJ_HongZhong/package.xml
@@ -14,6 +14,8 @@
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Cgm_create_room.xml b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Cgm_create_room.xml
index ae1269b3..16e678cb 100644
--- a/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Cgm_create_room.xml
+++ b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Cgm_create_room.xml
@@ -1,94 +1,94 @@
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -96,35 +96,35 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -141,10 +141,10 @@
-
+
-
+
@@ -153,18 +153,18 @@
-
+
-
-
+
+
-
-
+
+
diff --git a/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Rectangle 2887(1).png b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Rectangle 2887(1).png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Rectangle 2887(1).png differ
diff --git a/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Rectangle 2898.png b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/Info_MJ_ZhuanZhuan/package.xml b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/package.xml
index 69d20bf7..06bf4f98 100644
--- a/wb_new_ui/assets/Info_MJ_ZhuanZhuan/package.xml
+++ b/wb_new_ui/assets/Info_MJ_ZhuanZhuan/package.xml
@@ -14,6 +14,8 @@
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_FuLuShou/Cgm_create_room.xml b/wb_new_ui/assets/Info_Poker_FuLuShou/Cgm_create_room.xml
index 1b82b2d5..d1d67416 100644
--- a/wb_new_ui/assets/Info_Poker_FuLuShou/Cgm_create_room.xml
+++ b/wb_new_ui/assets/Info_Poker_FuLuShou/Cgm_create_room.xml
@@ -1,31 +1,31 @@
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
@@ -79,66 +79,66 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_FuLuShou/Rectangle 2887(1).png b/wb_new_ui/assets/Info_Poker_FuLuShou/Rectangle 2887(1).png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_FuLuShou/Rectangle 2887(1).png differ
diff --git a/wb_new_ui/assets/Info_Poker_FuLuShou/Rectangle 2898.png b/wb_new_ui/assets/Info_Poker_FuLuShou/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_FuLuShou/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/Info_Poker_FuLuShou/package.xml b/wb_new_ui/assets/Info_Poker_FuLuShou/package.xml
index b88ffb1c..81006a91 100644
--- a/wb_new_ui/assets/Info_Poker_FuLuShou/package.xml
+++ b/wb_new_ui/assets/Info_Poker_FuLuShou/package.xml
@@ -28,6 +28,8 @@
+
+
\ 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 0c594c89..004584a4 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,89 +1,89 @@
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
@@ -93,14 +93,14 @@
-
-
+
+
-
+
@@ -130,16 +130,16 @@
-
+
-
+
-
-
-
+
+
+
-
+
@@ -147,20 +147,20 @@
-
+
-
+
-
+
-
-
+
+
@@ -168,28 +168,28 @@
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
@@ -200,7 +200,7 @@
-
+
@@ -209,15 +209,15 @@
-
+
-
+
-
+
@@ -225,21 +225,21 @@
-
-
+
+
-
-
+
+
-
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Rectangle 2887(1).png b/wb_new_ui/assets/Info_Poker_RunFastNew/Rectangle 2887(1).png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/Rectangle 2887(1).png differ
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Rectangle 2898.png b/wb_new_ui/assets/Info_Poker_RunFastNew/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_RunFastNew/Rectangle 2898.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 295d60ed..80cebfe4 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/package.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/package.xml
@@ -29,6 +29,8 @@
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Info_Poker_YueYangWHZ/Cgm_create_room.xml b/wb_new_ui/assets/Info_Poker_YueYangWHZ/Cgm_create_room.xml
index 9ddec841..e0f1b847 100644
--- a/wb_new_ui/assets/Info_Poker_YueYangWHZ/Cgm_create_room.xml
+++ b/wb_new_ui/assets/Info_Poker_YueYangWHZ/Cgm_create_room.xml
@@ -1,32 +1,32 @@
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
@@ -36,25 +36,25 @@
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -62,29 +62,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -92,54 +92,54 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
@@ -147,33 +147,33 @@
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
@@ -183,10 +183,10 @@
-
+
-
-
+
+
@@ -195,10 +195,10 @@
-
-
+
+
-
+
diff --git a/wb_new_ui/assets/Info_Poker_YueYangWHZ/Rectangle 2887(1).png b/wb_new_ui/assets/Info_Poker_YueYangWHZ/Rectangle 2887(1).png
new file mode 100644
index 00000000..807bb9f1
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_YueYangWHZ/Rectangle 2887(1).png differ
diff --git a/wb_new_ui/assets/Info_Poker_YueYangWHZ/Rectangle 2898.png b/wb_new_ui/assets/Info_Poker_YueYangWHZ/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/Info_Poker_YueYangWHZ/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/Info_Poker_YueYangWHZ/package.xml b/wb_new_ui/assets/Info_Poker_YueYangWHZ/package.xml
index ae7cf053..030d5b17 100644
--- a/wb_new_ui/assets/Info_Poker_YueYangWHZ/package.xml
+++ b/wb_new_ui/assets/Info_Poker_YueYangWHZ/package.xml
@@ -28,6 +28,8 @@
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml b/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
index 302bd1c4..b0f9549a 100644
--- a/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
+++ b/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
@@ -1,6 +1,6 @@
-
+
@@ -111,48 +111,48 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -162,7 +162,7 @@
-
+
@@ -171,56 +171,56 @@
-
-
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_FagInput1.xml b/wb_new_ui/assets/NewGroup/Win_FagInput1.xml
index 2c9f64a3..137df99c 100644
--- a/wb_new_ui/assets/NewGroup/Win_FagInput1.xml
+++ b/wb_new_ui/assets/NewGroup/Win_FagInput1.xml
@@ -18,7 +18,7 @@
-
+
@@ -53,7 +53,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_FagInput2.xml b/wb_new_ui/assets/NewGroup/Win_FagInput2.xml
index 567b52c0..a6797b31 100644
--- a/wb_new_ui/assets/NewGroup/Win_FagInput2.xml
+++ b/wb_new_ui/assets/NewGroup/Win_FagInput2.xml
@@ -18,7 +18,7 @@
-
+
@@ -53,7 +53,7 @@
-
+
@@ -66,7 +66,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_FagInput3.xml b/wb_new_ui/assets/NewGroup/Win_FagInput3.xml
index f08d6b85..9808c77f 100644
--- a/wb_new_ui/assets/NewGroup/Win_FagInput3.xml
+++ b/wb_new_ui/assets/NewGroup/Win_FagInput3.xml
@@ -1,67 +1,59 @@
-
+
-
+
-
-
+
+
+
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/component/Btn/ComboBox1.xml b/wb_new_ui/assets/NewGroup/component/Btn/ComboBox1.xml
index ec287fff..3a9752bb 100644
--- a/wb_new_ui/assets/NewGroup/component/Btn/ComboBox1.xml
+++ b/wb_new_ui/assets/NewGroup/component/Btn/ComboBox1.xml
@@ -19,7 +19,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/component/Btn/date_set/btn_confirm.xml b/wb_new_ui/assets/NewGroup/component/Btn/date_set/btn_confirm.xml
index 880add51..75fca557 100644
--- a/wb_new_ui/assets/NewGroup/component/Btn/date_set/btn_confirm.xml
+++ b/wb_new_ui/assets/NewGroup/component/Btn/date_set/btn_confirm.xml
@@ -5,7 +5,9 @@
-
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time.xml b/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time.xml
index d4244c8c..d6f530d5 100644
--- a/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time.xml
+++ b/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time.xml
@@ -14,7 +14,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1126.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1126.png
new file mode 100644
index 00000000..2fae2a65
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1126.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1127.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1127.png
new file mode 100644
index 00000000..2e37581a
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1127.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1230.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1230.png
new file mode 100644
index 00000000..e52f6487
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1230.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1234.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1234.png
new file mode 100644
index 00000000..f8ba9b1d
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1234.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1235.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1235.png
new file mode 100644
index 00000000..5ed4ccc9
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 1235.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 311173.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 311173.png
new file mode 100644
index 00000000..c90943ab
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 311173.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 35114.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 35114.png
new file mode 100644
index 00000000..a9b8eacd
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 35114.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 4111176.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 4111176.png
new file mode 100644
index 00000000..43d1df5f
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 4111176.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 411175.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 411175.png
new file mode 100644
index 00000000..cc59bb29
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 411175.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 41176.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 41176.png
new file mode 100644
index 00000000..12d3debf
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 41176.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 471115.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 471115.png
new file mode 100644
index 00000000..4b4e1574
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 471115.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 4911112.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 4911112.png
new file mode 100644
index 00000000..1c2323c0
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 4911112.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 5111122.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 5111122.png
new file mode 100644
index 00000000..2e75714d
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 5111122.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 6516.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 6516.png
new file mode 100644
index 00000000..c0edb5b8
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 6516.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 657.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 657.png
new file mode 100644
index 00000000..baba6b12
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Frame 657.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 2898(1).png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 2898(1).png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 2898(1).png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 2898.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 7111151.png b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 7111151.png
new file mode 100644
index 00000000..e5260cab
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/NGXiangTangMui/Rectangle 7111151.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/main/Button7.xml b/wb_new_ui/assets/NewGroup/images/main/Button7.xml
index 5b82d042..28390194 100644
--- a/wb_new_ui/assets/NewGroup/images/main/Button7.xml
+++ b/wb_new_ui/assets/NewGroup/images/main/Button7.xml
@@ -2,11 +2,11 @@
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/Mui/Frame 521112.png b/wb_new_ui/assets/NewGroup/mgr/Mui/Frame 521112.png
new file mode 100644
index 00000000..a9b3f74e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/Mui/Frame 521112.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/Mui/Rectangle 2898.png b/wb_new_ui/assets/NewGroup/mgr/Mui/Rectangle 2898.png
new file mode 100644
index 00000000..e273a212
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/Mui/Rectangle 2898.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml
index 3dca286f..9d8a361f 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml
@@ -27,8 +27,8 @@
-
-
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml
index 2ceb895b..cac9b49a 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml
@@ -1,50 +1,51 @@
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
-
+
+
+
+
-
+
+
+
+
+
+
-
-
-
-
-
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupGiveFagList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupGiveFagList.xml
index 8658250d..a192a5c0 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupGiveFagList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupGiveFagList.xml
@@ -130,7 +130,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList.xml
index 008f12e1..5ccf4984 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList.xml
@@ -70,7 +70,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
index 98d2ade4..682cc830 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
@@ -89,7 +89,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList2.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList2.xml
index ca4c8dcc..5e14e427 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList2.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList2.xml
@@ -70,7 +70,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml
index a5da83df..291aa4fb 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml
@@ -2,7 +2,7 @@
-
+
@@ -14,7 +14,7 @@
-
+
@@ -26,14 +26,14 @@
-
+
-
+
@@ -47,24 +47,18 @@
-
-
-
-
-
-
+
+
-
-
-
+
-
+
@@ -110,7 +104,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/comm/mng_label.xml b/wb_new_ui/assets/NewGroup/mgr/component/comm/mng_label.xml
index 0e0bd013..3fc19c2f 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/comm/mng_label.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/comm/mng_label.xml
@@ -6,7 +6,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/game/btn_mng_edit.xml b/wb_new_ui/assets/NewGroup/mgr/component/game/btn_mng_edit.xml
index 2578e161..dbbc90f5 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/game/btn_mng_edit.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/game/btn_mng_edit.xml
@@ -1,7 +1,7 @@
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/game/panel_fag.xml b/wb_new_ui/assets/NewGroup/mgr/component/game/panel_fag.xml
index 0654fb49..ef0fc70d 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/game/panel_fag.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/game/panel_fag.xml
@@ -4,19 +4,19 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
@@ -24,33 +24,33 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -62,7 +62,7 @@
-
+
@@ -99,12 +99,12 @@
-
+
-
+
@@ -112,7 +112,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/play_set/btn_playset_add.xml b/wb_new_ui/assets/NewGroup/mgr/component/play_set/btn_playset_add.xml
index 477236ff..78ad41bd 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/play_set/btn_playset_add.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/play_set/btn_playset_add.xml
@@ -1,7 +1,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/play_set/item_rewards.xml b/wb_new_ui/assets/NewGroup/mgr/component/play_set/item_rewards.xml
index 8974e4f6..5f03da62 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/play_set/item_rewards.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/play_set/item_rewards.xml
@@ -125,9 +125,8 @@
-
+
-
@@ -175,8 +174,7 @@
-
-
+
@@ -192,12 +190,12 @@
-
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/play_set/panel_play_set.xml b/wb_new_ui/assets/NewGroup/mgr/component/play_set/panel_play_set.xml
index fe1a4b3e..b025b7c9 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/play_set/panel_play_set.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/play_set/panel_play_set.xml
@@ -1,6 +1,6 @@
-
-
+
+
@@ -12,61 +12,61 @@
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
@@ -79,7 +79,7 @@
-
+
@@ -89,68 +89,68 @@
-
+
-
-
-
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/promote/btn_promote_remove.xml b/wb_new_ui/assets/NewGroup/mgr/component/promote/btn_promote_remove.xml
index 2fe48054..9854f0ad 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/promote/btn_promote_remove.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/promote/btn_promote_remove.xml
@@ -1,7 +1,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/record/item_play_record(1).xml b/wb_new_ui/assets/NewGroup/mgr/component/record/item_play_record(1).xml
index eaa726c8..775ceb9a 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/record/item_play_record(1).xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/record/item_play_record(1).xml
@@ -9,26 +9,14 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/package.xml b/wb_new_ui/assets/NewGroup/package.xml
index fca9c3d4..6302524e 100644
--- a/wb_new_ui/assets/NewGroup/package.xml
+++ b/wb_new_ui/assets/NewGroup/package.xml
@@ -1142,6 +1142,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/tuoguan/ComboBox1.xml b/wb_new_ui/assets/NewGroup/tuoguan/ComboBox1.xml
index 712a5af4..57fb6950 100644
--- a/wb_new_ui/assets/NewGroup/tuoguan/ComboBox1.xml
+++ b/wb_new_ui/assets/NewGroup/tuoguan/ComboBox1.xml
@@ -3,11 +3,11 @@
-
+
-
+
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.png.meta b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.png.meta
index bef606c9..86b2dae0 100644
--- a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.png.meta
+++ b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_17.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_atlas0_2.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png.meta
index 5d9f8a34..fd8a0ffc 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.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_atlas0_3.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png.meta
index 0ad51f3b..d802c225 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.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_atlas0_4.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png.meta
index 44b71134..a38fb4f4 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.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_lrbs7co7.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_lrbs7co7.png.meta
index 646631d0..77f75585 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_lrbs7co7.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_lrbs7co7.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_fui.bytes b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes
index 1c2f8968..79a10fa8 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas_mag17cj8.png.meta b/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas_mag17cj8.png.meta
index c3232a6e..fd451919 100644
--- a/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas_mag17cj8.png.meta
+++ b/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas_mag17cj8.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/login/3ae2e33d365977de4dc5fc8071f2afeb
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png
index 18ae452d..b5534e1a 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png
index 1daad941..0d8c19ac 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_2.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_2.png
index 6dd785f2..25f947f2 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png
index 4527fc6c..97d65e88 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png.meta
index 4b779df3..73de59e9 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_3.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_4.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.png
index fe6a8073..9d810dc4 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.png.meta
index aa5c96d6..23cd2fcd 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_4.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_5.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png
index d1f94918..6d2b9e5c 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_5.png differ
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 6a2a5f9e..ae6de805 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 b1704c3f..5998e757 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 f13db468..603b9dc1 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_atlas0_8.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.png
index 8ed67868..76e3d640 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.png and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.png.meta
index 4fd9d332..1f33e3f0 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_8.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_9.png b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_9.png
new file mode 100644
index 00000000..c125c1b1
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_9.png differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_9.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_9.png.meta
new file mode 100644
index 00000000..137591ea
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_9.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 70b9563012749db419c6eace1c34a13f
+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: base/newgroup/1876b2140d79b7dc6c2674f954027415
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_dq5u7ifd.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_dq5u7ifd.png.meta
index 31096b42..8cb72d39 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_dq5u7ifd.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_dq5u7ifd.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_s8rw7ih4.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ih4.png.meta
index 91c31c73..8174143a 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ih4.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ih4.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_s8rw7ih9.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ih9.png.meta
index 703938be..dbe5530b 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ih9.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ih9.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_s8rw7iha.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7iha.png.meta
index a8493bb4..d7e1d7a4 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7iha.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7iha.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_s8rw7ihb.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ihb.png.meta
index 9e5366e6..39cb0f75 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ihb.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ihb.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_s8rw7ihc.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ihc.png.meta
index 834ca81b..821a6740 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ihc.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_s8rw7ihc.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_tkv17ij3.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_tkv17ij3.png.meta
index 3254590b..6ed59189 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_tkv17ij3.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_tkv17ij3.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_v4di7ids.png.meta b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_v4di7ids.png.meta
index bde1d58a..635b4d64 100644
--- a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_v4di7ids.png.meta
+++ b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas_v4di7ids.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_fui.bytes b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes
index f33a28d8..2009525a 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png b/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png
index 0b79790e..b4cd6ba7 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png and b/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_fui.bytes b/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_fui.bytes
index 595f144a..1c49ad1e 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_fui.bytes and b/wb_unity_pro/Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png b/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png
index 0b79790e..b4cd6ba7 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png and b/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_fui.bytes b/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_fui.bytes
index 96e12236..9f57dc45 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_fui.bytes and b/wb_unity_pro/Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_fui.bytes differ
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 cb6dfa72..4d2f3528 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 592951f4..95789fea 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/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 3b095fe5..bdb45341 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 b83981e3..10e1d304 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_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_fui.bytes
index 92105054..b81c5b6a 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/fulushou/ui/Info_Poker_FuLuShou_atlas0.png b/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png
index c5327d4e..4cbeadd0 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png and b/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_fui.bytes
index 22854e9c..f83924fe 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_fui.bytes and b/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0.png b/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0.png
index 22a37005..a96dc5ee 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0.png and b/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0_1.png b/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0_1.png
index d4912cc3..84e55e4c 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0_1.png and b/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_fui.bytes
index 18feeeca..95979456 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_fui.bytes and b/wb_unity_pro/Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png b/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png
index c2f06c4a..c587bcfb 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png and b/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_fui.bytes
index c3360e6d..795a91dc 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_fui.bytes and b/wb_unity_pro/Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_fui.bytes differ
diff --git a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_lrbs7i4w.png.meta b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_lrbs7i4w.png.meta
index ebe9f238..e8219cb2 100644
--- a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_lrbs7i4w.png.meta
+++ b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_lrbs7i4w.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 782119f9..b0231639 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.8.bytes b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.8.bytes
index 3e16d75a..575fc608 100644
Binary files a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes
index 370ab327..d5ce0da9 100644
Binary files a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.bytes
index 128685d6..fe5ef531 100644
Binary files a/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.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 cebdd490..5387c1ba 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.8.bytes b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.8.bytes
index 46ec3a29..a7cdfb1b 100644
Binary files a/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes
index b28b0f6a..197cc67a 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes
index 0ee6523e..d6817fb4 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes
index fc383123..8c2f6b47 100644
Binary files a/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes
index 83d82c3b..bb470a63 100644
Binary files a/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes and b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.7.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.7.bytes
index 355ceb4d..5c2b3806 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.7.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/changsha/asset_pack1.0.7.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.7.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.7.bytes
index f9cec3e9..ed94a9d3 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.7.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/hongzhong/asset_pack1.0.7.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.5.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.5.bytes
index f65a9d7a..04cf1bce 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.5.bytes and b/wb_unity_pro/Pack/Android32/extend/majiang/zhuanzhuan/asset_pack1.0.5.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.6.bytes
index bce7b9b6..c4ef39de 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/zipai/changdepaohuzi/asset_pack1.0.10.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/changdepaohuzi/asset_pack1.0.10.bytes
index 88c0bcc9..775f3934 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/zipai/changdepaohuzi/asset_pack1.0.10.bytes and b/wb_unity_pro/Pack/Android32/extend/zipai/changdepaohuzi/asset_pack1.0.10.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/zipai/fulushou/asset_pack1.0.4.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/fulushou/asset_pack1.0.4.bytes
index e12e2671..0f22b0c1 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/zipai/fulushou/asset_pack1.0.4.bytes and b/wb_unity_pro/Pack/Android32/extend/zipai/fulushou/asset_pack1.0.4.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/zipai/runbeard/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/runbeard/asset_pack1.0.6.bytes
index 7530909b..c471ee77 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/zipai/runbeard/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/extend/zipai/runbeard/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/zipai/yueyangwaihuzi/asset_pack1.0.4.bytes b/wb_unity_pro/Pack/Android32/extend/zipai/yueyangwaihuzi/asset_pack1.0.4.bytes
index 225f5524..a14d5cd5 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/zipai/yueyangwaihuzi/asset_pack1.0.4.bytes and b/wb_unity_pro/Pack/Android32/extend/zipai/yueyangwaihuzi/asset_pack1.0.4.bytes differ
diff --git a/wb_unity_pro/ProjectSettings/ProjectSettings.asset b/wb_unity_pro/ProjectSettings/ProjectSettings.asset
index 2687f47a..c2c118e6 100644
--- a/wb_unity_pro/ProjectSettings/ProjectSettings.asset
+++ b/wb_unity_pro/ProjectSettings/ProjectSettings.asset
@@ -13,7 +13,7 @@ PlayerSettings:
useOnDemandResources: 0
accelerometerFrequency: 60
companyName: llgamebb
- productName: "\u9E3F\u8FD0"
+ productName: "\u6E58\u6F6D\u516D\u987A"
defaultCursor: {fileID: 0}
cursorHotspot: {x: 0, y: 0}
m_SplashScreenBackgroundColor: {r: 0, g: 0, b: 0, a: 1}