diff --git a/lua_probject/base_project/Game/View/Family/FamilyBanDesk.lua b/lua_probject/base_project/Game/View/Family/FamilyBanDesk.lua
index 435d0b76..f341c2ee 100644
--- a/lua_probject/base_project/Game/View/Family/FamilyBanDesk.lua
+++ b/lua_probject/base_project/Game/View/Family/FamilyBanDesk.lua
@@ -64,7 +64,7 @@ local function AddPlayer(data, self)
end
-- 点击弹出选择成员界面
- local view = FamilySelectNumber.New()
+ local view = FamilySelectNumber.New(data)
view:Show(self.root._group.id, function(number)
if Exists(number.uid, data.deskList) then
ViewUtil.ErrorTip(-1, "设置失败,成员已经在关系中")
diff --git a/lua_probject/base_project/Game/View/Family/FamilyNotice.lua b/lua_probject/base_project/Game/View/Family/FamilyNotice.lua
index f38c0079..3a969db8 100644
--- a/lua_probject/base_project/Game/View/Family/FamilyNotice.lua
+++ b/lua_probject/base_project/Game/View/Family/FamilyNotice.lua
@@ -27,7 +27,9 @@ function M.TryShow(data, callback)
local group = data.group
local noticeTime = Utils.LoadLocalFile(string.format("Family_%s_notice_time", group.id)) or 0
local noticeText = Utils.LoadLocalFile(string.format("Family_%s_notice_text", group.id)) or ""
- if tonumber(os.date("%Y%m%d", tonumber(noticeTime))) - tonumber(os.date("%Y%m%d", os.time())) <= -1 or (group.notice and #group.notice > 0 and noticeText ~= group.notice) then
+ printlog("lingmeng notice", os.date("%Y%m%d", tonumber(noticeTime)), os.date("%Y%m%d", os.time()), group.notice,
+ group.notice)
+ if group.notice and #group.notice > 0 and (tonumber(os.date("%Y%m%d", tonumber(noticeTime))) - tonumber(os.date("%Y%m%d", os.time())) <= -1 or noticeText ~= group.notice) then
Utils.SaveLocalFile(string.format("Family_%s_notice_time", group.id), os.time())
Utils.SaveLocalFile(string.format("Family_%s_notice_text", group.id), group.notice)
local my = M.New(data, callback)
diff --git a/lua_probject/base_project/Game/View/Family/FamilyNumberRecord.lua b/lua_probject/base_project/Game/View/Family/FamilyNumberRecord.lua
index 615a60c6..3279f4c8 100644
--- a/lua_probject/base_project/Game/View/Family/FamilyNumberRecord.lua
+++ b/lua_probject/base_project/Game/View/Family/FamilyNumberRecord.lua
@@ -36,7 +36,9 @@ function FamilyNumberRecord.New(root, page)
self.text_score_majiang = self._view:GetChild('text_score_majiang')
local box_type = self._view:GetChild('combBox_type')
local box_mumberTime = self._view:GetChild('box_mumberTime')
- local ctr_day = self._view:GetController('day')
+ self._ctr_day = self._view:GetController('day')
+ self._ctr_myday = self._view:GetController('myday')
+
local ctr_sort = self._view:GetController('sort')
local ctr_limitDay = self._view:GetController('limitDay')
@@ -71,12 +73,12 @@ function FamilyNumberRecord.New(root, page)
self:NumverRankRenderer(group_id)
self:NumberRecordDetailRender()
- box_mumberTime.onChanged:Set(function()
- self._data_leftTime = tonumber(box_mumberTime.value)
- self._data_rightTime = tonumber(box_mumberTime.value) + 86399
- self:OnClickNumberRank(group_id, self.rankNumber.uid, 0)
- end)
- ctr_day.onChanged:Set(function(context)
+ -- box_mumberTime.onChanged:Set(function()
+ -- self._data_leftTime = tonumber(box_mumberTime.value)
+ -- self._data_rightTime = tonumber(box_mumberTime.value) + 86399
+ -- self:OnClickNumberRank(group_id, self.rankNumber.uid, 0)
+ -- end)
+ self._ctr_day.onChanged:Set(function(context)
local timeTable = os.date("*t", os.time())
timeTable.hour = 0
timeTable.min = 0
@@ -104,6 +106,17 @@ function FamilyNumberRecord.New(root, page)
end)
end)
+ self._ctr_myday.onChanged:Set(function(context)
+ local timeTable = os.date("*t", os.time())
+ timeTable.hour = 0
+ timeTable.min = 0
+ timeTable.sec = 0
+ local index = context.sender.selectedIndex
+ self._data_myleftTime = os.time(timeTable) - index * 86400
+ self._data_myrightTime = os.time(timeTable) - index * 86400 + 86399
+ self:OnClickNumberRank(group_id, self.rankNumber.uid, 0)
+ end)
+
ctr_sort.onChanged:Set(function(context)
local index = context.sender.selectedIndex
self._data_sortType = index
@@ -335,13 +348,15 @@ function M:InitBoxTime()
end
function M:InitTimeAndSord()
- local timeTable = os.date("*t", os.time())
- timeTable.hour = 0
- timeTable.min = 0
- timeTable.sec = 0
- self._data_leftTime = os.time(timeTable)
- self._data_rightTime = os.time(timeTable) + 86399
- self._data_sortType = 0
+ local timeTable = os.date("*t", os.time())
+ timeTable.hour = 0
+ timeTable.min = 0
+ timeTable.sec = 0
+ self._data_leftTime = os.time(timeTable)
+ self._data_rightTime = os.time(timeTable) + 86399
+ self._data_myleftTime = os.time(timeTable)
+ self._data_myrightTime = os.time(timeTable) + 86399
+ self._data_sortType = 0
end
function M:NumverRecordRenderer()
@@ -543,7 +558,11 @@ function M:NumverRankRenderer(groupId)
tonumber(info.score))
obj:GetChild('btn_lookRecord').onClick:Set(function()
self.ctr_numberRecord.selectedIndex = 1
- self:OnClickNumberRank(groupId, info.uid, info.round)
+ if self._ctr_day.selectedIndex ~= self._ctr_myday.selectedIndex then
+ self._ctr_myday.selectedIndex = self._ctr_day.selectedIndex
+ else
+ self:OnClickNumberRank(groupId, info.uid, info.round)
+ end
self._view:GetChild('text_numberRecordName').text = info.nick
self._view:GetChild('text_numberRecordID').text = string.format("ID:%s", info.uid)
ImageLoad.Load(info.portrait, self._view:GetChild('btn_numberRecordHead')._iconObject)
@@ -555,8 +574,10 @@ end
function M:OnClickSortType()
self.rank = {}
- local fgCtr = ControllerManager.GetController(NewGroupController)
- self:RecursionGetNumberRank(fgCtr, 0, 0, 0, 0)
+ if self._father._group.lev < 3 then
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ self:RecursionGetNumberRank(fgCtr, 0, 0, 0, 0)
+ end
end
function M:RecursionGetNumberRank(fgCtr, index, round, win, cost)
@@ -597,8 +618,8 @@ function M:OnClickNumberRank(groupId, uid, round)
end
function M:RecursionGetNumberRecord(fgCtr, groupId, uid, index)
- fgCtr:FG_GetGroupRecordSpe(groupId, GetPlatform(), uid, 0, index * 100, 100, self._data_leftTime,
- self._data_rightTime, 0,
+ fgCtr:FG_GetGroupRecordSpe(groupId, GetPlatform(), uid, 0, index * 100, 100, self._data_myleftTime,
+ self._data_myrightTime, 0,
function(res)
pt(res)
if res.ReturnCode ~= 0 then
diff --git a/lua_probject/base_project/Game/View/Family/FamilySelectNumber.lua b/lua_probject/base_project/Game/View/Family/FamilySelectNumber.lua
index 1acf0414..71822041 100644
--- a/lua_probject/base_project/Game/View/Family/FamilySelectNumber.lua
+++ b/lua_probject/base_project/Game/View/Family/FamilySelectNumber.lua
@@ -3,7 +3,7 @@ local FamilySelectNumber = {}
local function search(self)
local t = self.input_search.text
local re = {}
- for _, player in pairs(self.group.members) do
+ for _, player in pairs(self.group.members) do
if string.match(player.nick, t) then
re[#re + 1] = player
end
@@ -12,18 +12,24 @@ local function search(self)
self.players = re
end
-function FamilySelectNumber.New()
- setmetatable(FamilySelectNumber, { __index = BaseWindow})
- local inst = setmetatable({}, { __index = FamilySelectNumber})
+function FamilySelectNumber.New(data)
+ setmetatable(FamilySelectNumber, { __index = BaseWindow })
+ local inst = setmetatable({}, { __index = FamilySelectNumber })
--inst._full = true
inst._scale = true
inst._close_destroy = true
inst._full_offset = false
inst._anim_pop = 0
inst._animation = false
+ inst._data = data
+
+ inst._data_deskMap = {}
+ for k, v in pairs(data.deskList) do
+ inst._data_deskMap[v.uid] = 1
+ end
BaseWindow.init(inst, "ui://Family/com_SelectNumber")
-
+
inst:Init()
return inst
@@ -43,7 +49,6 @@ function FamilySelectNumber:Show(groupId, callback)
end
function FamilySelectNumber:Init()
-
self.input_search = self._view:GetChild("input_search")
self.list_number = self._view:GetChild("list_number")
self.btn_search = self._view:GetChild("btn_search")
@@ -58,22 +63,28 @@ function FamilySelectNumber:Init()
self:Close()
end)
+ self.list_number:SetVirtual()
self.list_number.itemRenderer = function(index, obj)
local i = index + 1
local player = self.players[i] --self.group.members[i]
obj:GetController('lev').selectedIndex = player.lev - 1
obj:GetController('ban').selectedIndex = player.ban
+ obj:GetController('banDesk').selectedIndex = self._data_deskMap[player.uid] or 0
+ obj:GetChild('name').emojies = EmojiDitc.EmojiesDitc
obj:GetChild('name').text = player.nick
obj:GetChild('id').text = string.format("ID:%s", player.uid)
- obj.onClick:Set(function()
- if self.callback then
- self.callback(player)
- end
- self.callback = nil
- self:Close()
- end)
+ ImageLoad.Load(player.portrait, obj:GetChild('btn_head')._iconObject)
+
+ if not self._data_deskMap[player.uid] then
+ obj:GetChild('n17').onClick:Set(function()
+ if self.callback then
+ self.callback(player)
+ end
+ self.callback = nil
+ self:Close()
+ end)
+ end
end
-
end
-return FamilySelectNumber
\ No newline at end of file
+return FamilySelectNumber
diff --git a/lua_probject/base_project/Game/View/FamilyView.lua b/lua_probject/base_project/Game/View/FamilyView.lua
index b38ade8b..23bd5cc2 100644
--- a/lua_probject/base_project/Game/View/FamilyView.lua
+++ b/lua_probject/base_project/Game/View/FamilyView.lua
@@ -234,7 +234,7 @@ function M:init(url)
--ViewUtil.ErrorTip(-1,"已在家族中")
return
end
-
+ self:RefNotice(group.id)
self.curGroupIndex = j
self:ConnetFamily(j, DataManager.groups.groupList)
end)
@@ -296,7 +296,6 @@ function M:Reflash()
end
local btn = self.list_family:GetChildAt(chooseIndex - 1)
btn.onClick:Call()
- self:RefNotice(DataManager.groups.groupList[chooseIndex].id)
else
self:JoinFamily(true)
self.btn_chatRoom.visible = false
@@ -624,7 +623,7 @@ function M:UpdateFamilyRoom(fgCtr, id)
local list_room = self._view:GetChild('list_room')
list_room:SetVirtual()
local pane = list_room.scrollPane
- pane.decelerationRate = 0.95 -- 惯性大
+ pane.decelerationRate = 0.96 -- 惯性大
pane.bouncebackEffect = true
local playList = self._group.playList
local roomList = self._group.rooms
@@ -988,7 +987,10 @@ function M:OnUpdate()
if self._data_falshRoomTime > 0 then
self._data_falshRoomTime = self._data_falshRoomTime - deltaTime
else
- self._flag_falshRoomTime = false
+ self._flag_falshRoomTime = true
+ self._data_falshRoomTime = 120
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ self:UpdateFamilyRoom(fgCtr, self._group.id)
self._view:GetChild('list_room').scrollPane:SetPosY(0, true)
end
end
diff --git a/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua b/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua
index a0c8c607..4bcb229c 100644
--- a/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua
+++ b/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua
@@ -1,4 +1,6 @@
-local LobbyGiftDiamond = {}
+local LobbyGiftDiamond = {
+ sendPage = 1
+}
local M = LobbyGiftDiamond
@@ -6,7 +8,9 @@ function M.new(data, callback)
setmetatable(M, { __index = BaseWindow })
local self = setmetatable({}, { __index = M })
self.class = "LobbyGiftDiamond"
+ self._full = true
self._close_destroy = true
+ self._close_zone = false
self._data = data
self._callback = callback
self:init("ui://Lobby/GiftDiamond")
@@ -16,8 +20,15 @@ end
function M:init(url)
BaseWindow.init(self, url)
+ local input_id = self._view:GetChild('input_id')
+
+ input_id.onFocusOut:Set(function()
+ --发送查找用户的协议
+ printlog("lingmeng send find", input_id.text)
+ end)
+
self._view:GetChild('btn_center').onClick:Set(function()
- local text_id = self._view:GetChild('input_id').text
+ local text_id = input_id.text
local text_num = self._view:GetChild('input_num').text
local lobbyCtr = ControllerManager.GetController(LoddyController)
@@ -32,6 +43,23 @@ function M:init(url)
end
end)
end)
+
+ local ctr_page = self._view:GetController('page')
+ ctr_page.onChanged:Set(function()
+ if ctr_page.selectedIndex == 0 then
+ input_id.text = ""
+ self._view:GetChild('input_num').text = ""
+ self._view:GetChild('text_name').text = ""
+ self._view:GetChild('btn_head').url = ""
+ elseif ctr_page.selectedIndex == 1 then
+
+ end
+ end)
+
+ self._list_list = self._view:GetChild('list')
+ self._list_list.itemRenderer = function(index, obj)
+
+ end
end
return M
diff --git a/lua_probject/base_project/table/Table_Error_code.lua b/lua_probject/base_project/table/Table_Error_code.lua
index eaf68ab5..e6d528cb 100644
--- a/lua_probject/base_project/table/Table_Error_code.lua
+++ b/lua_probject/base_project/table/Table_Error_code.lua
@@ -76,7 +76,7 @@ Table_Error_code_Map = {
[1023] = { id = 1023, note = "目標玩家是合伙人" },
[1024] = { id = 1024, note = "目標玩家不是合伙人" },
[1025] = { id = 1025, note = "已被管理员禁止娱乐" },
- [1026] = { id = 1026, note = "分数已被限制,请联系管理员" },
+ [1026] = { id = 1026, note = "创建亲友圈房间失败,已达到积分限制,请联系亲友圈管理员" },
[1027] = { id = 1027, note = "只能创建一个亲友圈" },
[1028] = { id = 1028, note = "亲友圈玩法必须开启积分" },
[1029] = { id = 1029, note = "还存在该玩法的房间,操作失败" },
@@ -87,7 +87,7 @@ Table_Error_code_Map = {
[1034] = { id = 1034, note = "玩家在游戏中,不能下分" },
[1035] = { id = 1035, note = "奖励池积分不足" },
[1036] = { id = 1036, note = " 奖励池没提取" },
- [1037] = { id = 1037, note = "禁止同桌" },
+ [1037] = { id = 1037, note = "加入房间失败、距离太近、无法加入房间" },
[1038] = { id = 1038, note = "玩法禁止娱乐" },
[1039] = { id = 1039, note = "亲友圈已关闭申请" },
[1040] = { id = 1040, note = "亲友圈已停止服务" },
diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua
index 10b4aeac..9aef4187 100644
--- a/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua
@@ -243,7 +243,9 @@ function M:OnPlaySuccCheck(evt_data)
local player = self._room:GetPlayerBySeat(seat)
local out_card_list = self:ChangeCodeByFrom(cards, true)
player.hand_count = remain
- self._cardCheck:InitLastCard(out_card_list)
+ if remain ~= 0 then
+ self._cardCheck:InitLastCard(out_card_list)
+ end
local card_type, number, length, plan_three_count = self:GetCardListInfo(out_card_list)
player.out_card_list = self:GetSortOutCardList(out_card_list, card_type, number, plan_three_count)
DispatchEvent(self._dispatcher, RunFast_GameEvent.OnPlaySucc, player, remain, card_type, number, otherList,
diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_MainView.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_MainView.lua
index b8aa65f4..1ed2e78a 100644
--- a/lua_probject/extend_project/extend/poker/runfast/RunFast_MainView.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_MainView.lua
@@ -1154,6 +1154,7 @@ function M:EventInit()
_gamectr:AddEventListener(RunFast_GameEvent.OnBompScoreNew, function(...)
local arg = { ... }
+ self._popEvent = false
local scoreList = arg[1]
for i = 1, #scoreList do
local score = scoreList[i].pomSore
@@ -1162,6 +1163,10 @@ function M:EventInit()
head_info:PlayScore(score, true)
head_info:UpdateScore(player.total_score)
end
+ coroutine.start(function()
+ coroutine.wait(1)
+ self._popEvent = true
+ end)
end)
end
diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerPokerInfoView.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerPokerInfoView.lua
index 9df6436f..041bc45c 100644
--- a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerPokerInfoView.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerPokerInfoView.lua
@@ -349,13 +349,10 @@ function M:PlayEffect(type, callback)
local y = 0
local x = 0
local width = 0
- pt("lingmeng PlayEffect1", fristXy, lastXy)
- pt("lingmeng PlayEffect2", self._view_Out.xy)
if type == 10 then
effect = "te_liandui"
y = self._view_Out.y + fristXy.y
x = self._view_Out.x + (lastXy.x + fristXy.x) / 2
- pt("lingmeng PlayEffect2", x, y)
elseif type == 4 then
effect = "te_sandaidui"
y = self._view_Out.y + fristXy.y
diff --git a/wb_new_ui/assets/Family/NumberList/com_numberList.xml b/wb_new_ui/assets/Family/NumberList/com_numberList.xml
index 0ea09183..7468a173 100644
--- a/wb_new_ui/assets/Family/NumberList/com_numberList.xml
+++ b/wb_new_ui/assets/Family/NumberList/com_numberList.xml
@@ -41,9 +41,6 @@
-
-
-
diff --git a/wb_new_ui/assets/Family/NumberRecord/comp_numberRecord.xml b/wb_new_ui/assets/Family/NumberRecord/comp_numberRecord.xml
index 4542d21a..4f7f5f66 100644
--- a/wb_new_ui/assets/Family/NumberRecord/comp_numberRecord.xml
+++ b/wb_new_ui/assets/Family/NumberRecord/comp_numberRecord.xml
@@ -6,6 +6,7 @@
+
@@ -23,7 +24,7 @@
-
+
diff --git a/wb_new_ui/assets/Family/SelectNumber/Component/c_numberChild_select.xml b/wb_new_ui/assets/Family/SelectNumber/Component/c_numberChild_select.xml
new file mode 100644
index 00000000..1b06169d
--- /dev/null
+++ b/wb_new_ui/assets/Family/SelectNumber/Component/c_numberChild_select.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Family/SelectNumber/Image/xuanzhe.png b/wb_new_ui/assets/Family/SelectNumber/Image/xuanzhe.png
new file mode 100644
index 00000000..9b9a80c2
Binary files /dev/null and b/wb_new_ui/assets/Family/SelectNumber/Image/xuanzhe.png differ
diff --git a/wb_new_ui/assets/Family/SelectNumber/Image/yixuanzhe.png b/wb_new_ui/assets/Family/SelectNumber/Image/yixuanzhe.png
new file mode 100644
index 00000000..1a128b34
Binary files /dev/null and b/wb_new_ui/assets/Family/SelectNumber/Image/yixuanzhe.png differ
diff --git a/wb_new_ui/assets/Family/SelectNumber/com_SelectNumber.xml b/wb_new_ui/assets/Family/SelectNumber/com_SelectNumber.xml
index 2f30a4de..caae006e 100644
--- a/wb_new_ui/assets/Family/SelectNumber/com_SelectNumber.xml
+++ b/wb_new_ui/assets/Family/SelectNumber/com_SelectNumber.xml
@@ -1,39 +1,51 @@
-
+
-
-
+
+
-
-
-
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Family/package.xml b/wb_new_ui/assets/Family/package.xml
index d55dbc83..73417f6d 100644
--- a/wb_new_ui/assets/Family/package.xml
+++ b/wb_new_ui/assets/Family/package.xml
@@ -436,6 +436,9 @@
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/Main/Component/btn_head.xml b/wb_new_ui/assets/Lobby/Main/Component/btn_head.xml
deleted file mode 100644
index 1ab8710f..00000000
--- a/wb_new_ui/assets/Lobby/Main/Component/btn_head.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/Record/Component/btn_lastPage.xml b/wb_new_ui/assets/Lobby/Record/Component/btn_lastPage.xml
new file mode 100644
index 00000000..4c4a3b3f
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/Record/Component/btn_lastPage.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/Record/Component/btn_nextPage.xml b/wb_new_ui/assets/Lobby/Record/Component/btn_nextPage.xml
new file mode 100644
index 00000000..248fdbf6
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/Record/Component/btn_nextPage.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background1.png b/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background1.png
new file mode 100644
index 00000000..b182a41e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background1.png differ
diff --git a/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background2.png b/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background2.png
new file mode 100644
index 00000000..9c3b897a
Binary files /dev/null and b/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background2.png differ
diff --git a/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background3.png b/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background3.png
new file mode 100644
index 00000000..68130b78
Binary files /dev/null and b/wb_new_ui/assets/Lobby/Record/Image/table_btn_green_background3.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml
index 61ebdbde..155bae9f 100644
--- a/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml
+++ b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml
@@ -1,19 +1,139 @@
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/btn_close.xml b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/btn_close.xml
new file mode 100644
index 00000000..251633e2
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/btn_close.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/btn_tag.xml b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/btn_tag.xml
new file mode 100644
index 00000000..32afcc62
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/btn_tag.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/listChild_one.xml b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/listChild_one.xml
new file mode 100644
index 00000000..bd9a8dd7
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/listChild_one.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Frame 44.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Frame 44.png
new file mode 100644
index 00000000..632076bc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Frame 44.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Group 363.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Group 363.png
new file mode 100644
index 00000000..d3b211a3
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Group 363.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Group 561.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Group 561.png
new file mode 100644
index 00000000..f46be7e1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Group 561.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Rectangle 262.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Rectangle 262.png
new file mode 100644
index 00000000..9540ff65
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Rectangle 262.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Subtract.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Subtract.png
new file mode 100644
index 00000000..72870f49
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Subtract.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Vector.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Vector.png
new file mode 100644
index 00000000..f91e1707
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/Vector.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.png
index 6d0fb7c7..a2ef42a2 100644
Binary files a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.png and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main1.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main1.png
new file mode 100644
index 00000000..ff40ae68
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main1.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main2.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main2.png
new file mode 100644
index 00000000..2f36dae9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main2.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main4.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main4.png
new file mode 100644
index 00000000..f0faf440
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg_main4.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bt_top.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bt_top.png
new file mode 100644
index 00000000..751eb112
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bt_top.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_close.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_close.png
new file mode 100644
index 00000000..9a705866
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_close.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_familyName_off.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_familyName_off.png
new file mode 100644
index 00000000..87f730cb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_familyName_off.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_familyName_on.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_familyName_on.png
new file mode 100644
index 00000000..fa4d39d4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/btn_familyName_on.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_btntext_queding.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_btntext_queding.png
deleted file mode 100644
index facf6c40..00000000
Binary files a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_btntext_queding.png and /dev/null differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_tittle_icon1.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_tittle_icon1.png
new file mode 100644
index 00000000..190d0bdb
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_tittle_icon1.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/input.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/input.png
deleted file mode 100644
index 6ad1e60e..00000000
Binary files a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/input.png and /dev/null differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/loginBg.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/loginBg.png
new file mode 100644
index 00000000..d8579a0c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/loginBg.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title.png
new file mode 100644
index 00000000..b1519c1d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title.png differ
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title_top.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title_top.png
deleted file mode 100644
index 54d0e30d..00000000
Binary files a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title_top.png and /dev/null differ
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index 1ded7fb7..5e966781 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -526,7 +526,6 @@
-
@@ -693,16 +692,37 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0.png b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0.png
index 9b6f52a0..d1d47673 100644
Binary files a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0.png and b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_1.png b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_1.png
index 19918350..cf5d053b 100644
Binary files a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_2.png b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_2.png
index b630e319..ce776d7b 100644
Binary files a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_5.png.meta b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_5.png.meta
index e0b0bc57..9d266035 100644
--- a/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_5.png.meta
+++ b/wb_unity_pro/Assets/ART/base/Family/ui/Family_atlas0_5.png.meta
@@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: base/family/b23cba4d4e164d6d5cb3cff916b9e0a4
assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/Family/ui/Family_fui.bytes b/wb_unity_pro/Assets/ART/base/Family/ui/Family_fui.bytes
index a7f1b7b9..661efe96 100644
Binary files a/wb_unity_pro/Assets/ART/base/Family/ui/Family_fui.bytes and b/wb_unity_pro/Assets/ART/base/Family/ui/Family_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png
index b626467f..42ca30b6 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png
index 655c593f..56483d78 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png
index b79071a1..a4e3ed79 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png
index 7cbeb941..5a54b039 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png
index 1f7b0a59..c8f05ee8 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png
index 66b8477c..0c7c26b4 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png
index 0e20be69..641fa36c 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png
index 007d140c..07f2a4ee 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png
index 6b374f88..281ae821 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png
index e4e73bdd..8d9c6d02 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png
index 921fce35..935525d0 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png
index cf8958d4..5c2653bc 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png
index 2f0eadd9..fdfb2cb1 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png
index e721859f..b7b5e7cf 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgc.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgc.png
new file mode 100644
index 00000000..97aed3e1
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgc.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgc.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgc.png.meta
new file mode 100644
index 00000000..9bed9e2c
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgc.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: d1d715dbc37ccc24f8cae1f8f27cbbcd
+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:
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgd.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgd.png
new file mode 100644
index 00000000..8d4fade0
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgd.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgd.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgd.png.meta
new file mode 100644
index 00000000..bafe3c93
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgd.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 0c044f4a7b1b16b4bb791f50d74e266e
+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:
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgh.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgh.png
new file mode 100644
index 00000000..11ba0b7a
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgh.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgh.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgh.png.meta
new file mode 100644
index 00000000..a54b343d
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgh.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 5ea764b7d9ea33042ae459fc6a7969d8
+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:
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgi.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgi.png
new file mode 100644
index 00000000..308b9f09
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgi.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgi.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgi.png.meta
new file mode 100644
index 00000000..3d92db05
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_100mb7jgi.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 2cbf716e50941c948a5d1f7e60caf292
+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:
+ 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 e6aa6437..26bd19b0 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/StreamingAssets/init1_1.json b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
index 1c12dfd2..0aa5aa33 100644
--- a/wb_unity_pro/Assets/StreamingAssets/init1_1.json
+++ b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
@@ -1,41 +1,41 @@
[
{
- "ver": "1.0.43",
+ "ver": "1.0.44",
"name": "跑得快",
"check": true,
- "version": "1.0.43",
+ "version": "1.0.44",
"game_id": "66",
"bundle": "extend/poker/runfast"
},
{
- "ver": "1.0.61",
+ "ver": "1.0.62",
"name": "南城麻将",
"check": true,
- "version": "1.0.61",
+ "version": "1.0.62",
"game_id": "86",
"bundle": "extend/majiang/nancheng"
},
{
- "ver": "1.0.64",
+ "ver": "1.0.65",
"name": "黎川麻将",
"check": true,
- "version": "1.0.64",
+ "version": "1.0.65",
"game_id": "87",
"bundle": "extend/majiang/lichuan"
},
{
- "ver": "1.0.48",
+ "ver": "1.0.49",
"name": "金溪麻将",
"check": true,
- "version": "1.0.48",
+ "version": "1.0.49",
"game_id": "88",
"bundle": "extend/majiang/jinxi"
},
{
- "ver": "1.0.47",
+ "ver": "1.0.48",
"name": "抚州麻将",
"check": true,
- "version": "1.0.47",
+ "version": "1.0.48",
"game_id": "89",
"bundle": "extend/majiang/fuzhou"
}
diff --git a/wb_unity_pro/Assets/StreamingAssets/init2_1.json b/wb_unity_pro/Assets/StreamingAssets/init2_1.json
index 5e1193b5..9bd44449 100644
--- a/wb_unity_pro/Assets/StreamingAssets/init2_1.json
+++ b/wb_unity_pro/Assets/StreamingAssets/init2_1.json
@@ -1,109 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "common",
"check": true,
"bundle": "base/common",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "login",
"check": true,
"bundle": "base/login",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "Family",
"check": true,
"bundle": "base/Family",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "chat",
"check": true,
"bundle": "base/chat",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "rank",
"check": true,
- "version": "1.0.11",
+ "version": "1.0.12",
"bundle": "base/rank"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "main_majiang",
"check": true,
- "version": "1.0.11",
+ "version": "1.0.12",
"bundle": "base/main_majiang"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "main_poker",
"check": true,
- "version": "1.0.11",
+ "version": "1.0.12",
"bundle": "base/main_poker"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "main_zipai",
"check": true,
- "version": "1.0.11",
+ "version": "1.0.12",
"bundle": "base/main_zipai"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "static",
"check": true,
"bundle": "base/static",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
- "version": "1.0.11"
+ "version": "1.0.12"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "main_pokemajiang",
"check": true,
- "version": "1.0.11",
+ "version": "1.0.12",
"bundle": "base/main_pokemajiang"
},
{
- "ver": "1.0.11",
+ "ver": "1.0.12",
"name": "main_zipaimajiang",
"check": true,
- "version": "1.0.11",
+ "version": "1.0.12",
"bundle": "base/main_zipaimajiang"
}
]
diff --git a/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..5e1efa6e
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.12.bytes 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
new file mode 100644
index 00000000..a5dd4fbd
Binary files /dev/null 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.12.bytes b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..2261b2e9
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..3590d80b
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..9243e3a3
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.11.bytes b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.12.bytes
similarity index 100%
rename from wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.11.bytes
rename to wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.12.bytes
diff --git a/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..99cffec1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..bdd1a15f
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..91dd3958
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..14d2fc05
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..20e6d905
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..23c0ef0f
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..ad4011df
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..79eef24e
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.12.bytes b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.12.bytes
new file mode 100644
index 00000000..b1c41db1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.12.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/fuzhou/asset_pack1.0.48.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/fuzhou/asset_pack1.0.48.bytes
new file mode 100644
index 00000000..05bcf660
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/fuzhou/asset_pack1.0.48.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/jinxi/asset_pack1.0.49.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/jinxi/asset_pack1.0.49.bytes
new file mode 100644
index 00000000..ff225870
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/jinxi/asset_pack1.0.49.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/lichuan/asset_pack1.0.65.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/lichuan/asset_pack1.0.65.bytes
new file mode 100644
index 00000000..df65e429
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/lichuan/asset_pack1.0.65.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/nancheng/asset_pack1.0.62.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/nancheng/asset_pack1.0.62.bytes
new file mode 100644
index 00000000..07e11da2
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/nancheng/asset_pack1.0.62.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.44.bytes b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.44.bytes
new file mode 100644
index 00000000..a548c850
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.44.bytes differ