diff --git a/lua_probject/base_project/Game/View/FamilyView.lua b/lua_probject/base_project/Game/View/FamilyView.lua
index cf316512..e6883925 100644
--- a/lua_probject/base_project/Game/View/FamilyView.lua
+++ b/lua_probject/base_project/Game/View/FamilyView.lua
@@ -1152,6 +1152,7 @@ function M:ReflashChatRoomRedPoint()
end
function M:Show()
+ ViewUtil.PlaySoundBg()
Broadcast.AddListener(BroadcastEvent.OnJoinsChange, ReflashJoinsRedPoint, self)
Broadcast.AddListener(BroadcastEvent.OnMemberChange, self.ReflashMember, self)
Broadcast.AddListener(BroadcastEvent.OnOutFamily, self.Reflash, self)
diff --git a/lua_probject/base_project/Game/View/Lobby/GamePlayDetail.lua b/lua_probject/base_project/Game/View/Lobby/GamePlayDetail.lua
index b86269fe..5da993d4 100644
--- a/lua_probject/base_project/Game/View/Lobby/GamePlayDetail.lua
+++ b/lua_probject/base_project/Game/View/Lobby/GamePlayDetail.lua
@@ -14,17 +14,17 @@ local gamePlayDetail = {
{
icon0 = "jinxi0",
icon1 = "jinxi1",
- detail = "金溪麻将"
+ detail = "jinxiDetail"
},
{
icon0 = "fuzhou0",
icon1 = "fuzhou1",
- detail = "抚州麻将"
+ detail = "fuzhouDetail"
},
{
icon0 = "nancheng0",
icon1 = "nancheng1",
- detail = "南城麻将"
+ detail = "nanchengDetail"
},
},
--扑克
@@ -32,7 +32,7 @@ local gamePlayDetail = {
{
icon0 = "paodekuai0",
icon1 = "paodekuai1",
- detail = "跑得快"
+ detail = "paodekuaiDetail"
},
},
--字牌
diff --git a/lua_probject/base_project/Game/View/WitnessView.lua b/lua_probject/base_project/Game/View/WitnessView.lua
index cf478d8a..7df4147e 100644
--- a/lua_probject/base_project/Game/View/WitnessView.lua
+++ b/lua_probject/base_project/Game/View/WitnessView.lua
@@ -196,6 +196,8 @@ function M:EventInit()
end
end
end)
+
+ _gamectr:AddEventListener(GameEvent.AddScore, handler(self, self.OnAddScoreAnimation))
end
-- 标记自己托管
@@ -335,6 +337,41 @@ function M:DoNoticeAnimation()
self._room.card_type = 1
end
+function M:OnAddScoreAnimation(...)
+ print("OnAddScoreAnimation")
+ local arg = { ... }
+ local totalScoreList = arg[2].totalScoreList
+ local playerList = arg[2].playerList
+ local addScoreList = arg[2].addScoreList
+ pt(arg)
+
+ local scoreData = {}
+ for i = 1, #totalScoreList do
+ local p = {}
+
+ p.totalScore = totalScoreList[i]
+ p.player = playerList[i]
+ p.addScore = addScoreList[i]
+
+ scoreData[#scoreData + 1] = p
+ end
+
+ for _, p in pairs(scoreData) do
+ local infoView = self:GetPlayerInfo(p.player)
+ local player = GetPlayer(self, p.player)
+ player.cur_hp = p.totalScore
+
+ if p.addScore ~= 0 then
+ infoView:ScoreAnimation(p.addScore)
+ if player.cur_hp >= 0 then
+ infoView._view:GetChild("text_jifen").text = "+" .. player.cur_hp
+ else
+ infoView._view:GetChild("text_jifen").text = player.cur_hp
+ end
+ end
+ end
+end
+
function M:OnUpdate()
local deltaTime = Time.deltaTime
if (self._popEvent) then
diff --git a/lua_probject/base_project/table/Table_Error_code.lua b/lua_probject/base_project/table/Table_Error_code.lua
index 8bf4b150..2139302b 100644
--- a/lua_probject/base_project/table/Table_Error_code.lua
+++ b/lua_probject/base_project/table/Table_Error_code.lua
@@ -7,95 +7,95 @@
---
-- 网络错误码常量 数据集合
-- @type Table_Error_code_Map
--- @map <#number, #Error_code>
+-- @map <#number, #Error_code>
---
-- 网络错误码常量 数据集合
-- @field[parent = #global] TableData#Table_Error_code_Map Table_Error_code_Map
Table_Error_code_Map = {
- [2]={id=2,note="登陆限制超时,请重新登陆"},
- [3]={id=3,note=""},
- [4]={id=4,note=""},
- [5]={id=5,note="玩法不可用"},
- [6]={id=6,note="游戏已停用"},
- [7]={id=7,note="房卡不足"},
- [8]={id=8,note="已经在亲友圈中"},
- [9]={id=9,note="邀请码无效"},
- [10]={id=10,note="房间已满"},
- [11]={id=11,note="房间号不存在"},
- [12]={id=12,note="此邮件不存在"},
- [13]={id=13,note="邮件已经领取"},
- [14]={id=14,note="此任务不存在"},
- [15]={id=15,note="没有亲友圈"},
- [16]={id=16,note="任务奖励已领取"},
- [18]={id=18,note="牛牛有玩家未重连成功"},
- [20]={id=20,note="排行&战绩数据获取失败"},
- [21]={id=21,note="排行数据获取失败"},
- [22]={id=22,note="战绩数据获取失败"},
- [26]={id=26,note="创建房间数达到上限"},
- [27]={id=27,note="正在游戏中,删除房间失败"},
- [28]={id=28,note="多次登录失败,禁止登录,请过段时间再次尝试"},
- [101]={id=101,note="请检查您的网络设置"},
- [102]={id=102,note="网络连接超时"},
- [500]={id=500,note=""},
- [999]={id=999,note="未知错误"},
- [17]={id=17,note="奖券不足"},
- [53]={id=53,note="与桌上玩家IP相同,进入房间失败"},
- [54]={id=54,note="与桌上玩家距离过近,进入房间失败"},
- [55]={id=55,note="GPS服务未开启,请开启GPS服务!"},
- [56]={id=56,note="不是亲友圈"},
- [57]={id=57,note="亲友圈不能退出"},
- [59]={id=59,note="无效的验证码"},
- [61]={id=61,note="手机号码已绑定玩家"},
- [80]={id=80,note="房间已删除"},
- [81]={id=81,note="是亲友圈房间"},
- [83]={id=83,note="分数已被限制,请联系管理员"},
- [1000]={id=1000,note="已申请加入"},
- [1001]={id=1001,note="成员已存在"},
- [1002]={id=1002,note="成员不存在"},
- [1003]={id=1003,note="成员存在上级合伙人"},
- [1004]={id=1004,note="玩法已满"},
- [1005]={id=1005,note="房间被删除"},
- [1007]={id=1007,note="玩法不存在"},
- [1008]={id=1008,note="不是管理员"},
- [1009]={id=1009,note="合伙人有成员"},
- [1010]={id=1010,note="目标是管理员"},
- [1011]={id=1011,note="目标是合伙人"},
- [1012]={id=1012,note="目标积分不足"},
- [1013]={id=1013,note="房卡不足"},
- [1014]={id=1014,note="没有权限"},
- [1015]={id=1015,note="积分不为0"},
- [1016]={id=1016,note="成员在房间内"},
- [1017]={id=1017,note="成员积分事件正在执行"},
- [1018]={id=1018,note="亲友圈不存在"},
- [1019]={id=1019,note="亲友圈已满"},
- [1020]={id=1020,note="亲友圈还有房间"},
- [1021]={id=1021,note="亲友圈禁止娱乐"},
- [1022]={id=1022,note="不是群主"},
- [1023]={id=1023,note="目標玩家是合伙人"},
- [1024]={id=1024,note="目標玩家不是合伙人"},
- [1025]={id=1025,note="已被管理员禁止娱乐"},
- [1026]={id=1026,note="房卡不足,无法进入房间"},
- [1027]={id=1027,note="只能创建一个亲友圈"},
- [1028]={id=1028,note="亲友圈玩法必须开启积分"},
- [1029]={id=1029,note="还存在该玩法的房间,操作失败"},
- [1030]={id=1030,note="不在此亲友圈的房间中"},
- [1031]={id=1031,note="玩家关闭被邀请"},
- [1032]={id=1032,note="创建亲友圈数达到上限"},
- [1033]={id=1033,note="亲友圈人数已满"},
- [1034]={id=1034,note="玩家在游戏中,不能下分"},
- [1035]={id=1035,note="奖励池积分不足"},
- [1036]={id=1036,note=" 奖励池没提取"},
- [1037]={id=1037,note="禁止同桌"},
- [1038]={id=1038,note="玩法禁止娱乐"},
- [1039]={id=1039,note="亲友圈已关闭申请"},
- [1040]={id=1040,note="亲友圈已停止服务"},
- [1041]={id=1041,note="不能退出亲友圈"},
- [1047]={id=1047,note="携带值超越上线, 请保存到保险箱里"},
- [1048]={id=1048,note="玩家携带值值超越上线, 请提醒保险箱里"},
- [1049]={id=1049,note="本房间禁止扔表情"},
- [10000]={id=10000,note="微信登录失败,请重新登录"},
- [10001]={id=10001,note="Error: capacity is full."},
- [10002]={id=10002,note="Error: The Queue is empty."}
-}
\ No newline at end of file
+ [2] = { id = 2, note = "登陆限制超时,请重新登陆" },
+ [3] = { id = 3, note = "" },
+ [4] = { id = 4, note = "" },
+ [5] = { id = 5, note = "玩法不可用" },
+ [6] = { id = 6, note = "游戏已停用" },
+ [7] = { id = 7, note = "房卡不足" },
+ [8] = { id = 8, note = "已经在亲友圈中" },
+ [9] = { id = 9, note = "邀请码无效" },
+ [10] = { id = 10, note = "房间已满" },
+ [11] = { id = 11, note = "房间号不存在" },
+ [12] = { id = 12, note = "此邮件不存在" },
+ [13] = { id = 13, note = "邮件已经领取" },
+ [14] = { id = 14, note = "此任务不存在" },
+ [15] = { id = 15, note = "没有亲友圈" },
+ [16] = { id = 16, note = "任务奖励已领取" },
+ [18] = { id = 18, note = "牛牛有玩家未重连成功" },
+ [20] = { id = 20, note = "排行&战绩数据获取失败" },
+ [21] = { id = 21, note = "排行数据获取失败" },
+ [22] = { id = 22, note = "战绩数据获取失败" },
+ [26] = { id = 26, note = "创建房间数达到上限" },
+ [27] = { id = 27, note = "正在游戏中,删除房间失败" },
+ [28] = { id = 28, note = "多次登录失败,禁止登录,请过段时间再次尝试" },
+ [101] = { id = 101, note = "请检查您的网络设置" },
+ [102] = { id = 102, note = "网络连接超时" },
+ [500] = { id = 500, note = "" },
+ [999] = { id = 999, note = "未知错误" },
+ [17] = { id = 17, note = "奖券不足" },
+ [53] = { id = 53, note = "与桌上玩家IP相同,进入房间失败" },
+ [54] = { id = 54, note = "与桌上玩家距离过近,进入房间失败" },
+ [55] = { id = 55, note = "GPS服务未开启,请开启GPS服务!" },
+ [56] = { id = 56, note = "不是亲友圈" },
+ [57] = { id = 57, note = "亲友圈不能退出" },
+ [59] = { id = 59, note = "无效的验证码" },
+ [61] = { id = 61, note = "手机号码已绑定玩家" },
+ [80] = { id = 80, note = "房间已删除" },
+ [81] = { id = 81, note = "是亲友圈房间" },
+ [83] = { id = 83, note = "分数已被限制,请联系管理员" },
+ [1000] = { id = 1000, note = "已申请加入" },
+ [1001] = { id = 1001, note = "成员已存在" },
+ [1002] = { id = 1002, note = "成员不存在" },
+ [1003] = { id = 1003, note = "成员存在上级合伙人" },
+ [1004] = { id = 1004, note = "玩法已满" },
+ [1005] = { id = 1005, note = "房间被删除" },
+ [1007] = { id = 1007, note = "玩法不存在" },
+ [1008] = { id = 1008, note = "不是管理员" },
+ [1009] = { id = 1009, note = "合伙人有成员" },
+ [1010] = { id = 1010, note = "目标是管理员" },
+ [1011] = { id = 1011, note = "目标是合伙人" },
+ [1012] = { id = 1012, note = "目标积分不足" },
+ [1013] = { id = 1013, note = "房卡不足" },
+ [1014] = { id = 1014, note = "没有权限" },
+ [1015] = { id = 1015, note = "积分不为0" },
+ [1016] = { id = 1016, note = "成员在房间内" },
+ [1017] = { id = 1017, note = "成员积分事件正在执行" },
+ [1018] = { id = 1018, note = "亲友圈不存在" },
+ [1019] = { id = 1019, note = "亲友圈已满" },
+ [1020] = { id = 1020, note = "亲友圈还有房间" },
+ [1021] = { id = 1021, note = "亲友圈禁止娱乐" },
+ [1022] = { id = 1022, note = "不是群主" },
+ [1023] = { id = 1023, note = "目標玩家是合伙人" },
+ [1024] = { id = 1024, note = "目標玩家不是合伙人" },
+ [1025] = { id = 1025, note = "已被管理员禁止娱乐" },
+ [1026] = { id = 1026, note = "分数已被限制,请联系管理员" },
+ [1027] = { id = 1027, note = "只能创建一个亲友圈" },
+ [1028] = { id = 1028, note = "亲友圈玩法必须开启积分" },
+ [1029] = { id = 1029, note = "还存在该玩法的房间,操作失败" },
+ [1030] = { id = 1030, note = "不在此亲友圈的房间中" },
+ [1031] = { id = 1031, note = "玩家关闭被邀请" },
+ [1032] = { id = 1032, note = "创建亲友圈数达到上限" },
+ [1033] = { id = 1033, note = "亲友圈人数已满" },
+ [1034] = { id = 1034, note = "玩家在游戏中,不能下分" },
+ [1035] = { id = 1035, note = "奖励池积分不足" },
+ [1036] = { id = 1036, note = " 奖励池没提取" },
+ [1037] = { id = 1037, note = "禁止同桌" },
+ [1038] = { id = 1038, note = "玩法禁止娱乐" },
+ [1039] = { id = 1039, note = "亲友圈已关闭申请" },
+ [1040] = { id = 1040, note = "亲友圈已停止服务" },
+ [1041] = { id = 1041, note = "不能退出亲友圈" },
+ [1047] = { id = 1047, note = "携带值超越上线, 请保存到保险箱里" },
+ [1048] = { id = 1048, note = "玩家携带值值超越上线, 请提醒保险箱里" },
+ [1049] = { id = 1049, note = "本房间禁止扔表情" },
+ [10000] = { id = 10000, note = "微信登录失败,请重新登录" },
+ [10001] = { id = 10001, note = "Error: capacity is full." },
+ [10002] = { id = 10002, note = "Error: The Queue is empty." }
+}
diff --git a/lua_probject/extend_project/extend/majiang/fuzhou/EXClearingView.lua b/lua_probject/extend_project/extend/majiang/fuzhou/EXClearingView.lua
index 314bfd59..005574c5 100644
--- a/lua_probject/extend_project/extend/majiang/fuzhou/EXClearingView.lua
+++ b/lua_probject/extend_project/extend/majiang/fuzhou/EXClearingView.lua
@@ -5,7 +5,7 @@ local EXClearingView = {}
local M = EXClearingView
-function EXClearingView.new(blur_view, data)
+function EXClearingView.new(root, data)
setmetatable(M, { __index = ResultView })
local self = setmetatable({}, { __index = M })
self._full = true
@@ -14,7 +14,7 @@ function EXClearingView.new(blur_view, data)
self._root_view:GetChild("win_mode").visible = false
self._currenIndex = 0
- self._blur_view = blur_view
+ self._root = root
self._close_zone = false
if data then
self.flag_back = data.flag_back
diff --git a/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua b/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua
index d121f4d2..cf64d730 100644
--- a/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua
@@ -24,7 +24,7 @@ function M.new()
self.HuCardImg_path = "ui://Extend_MJ_FuZhou/"
self.Sound_path = "extend/majiang/fuzhou/sound/"
self:init()
- ViewUtil.PlayMuisc(self.asset_group, "extend/majiang/fuzhou/sound/bg.mp3")
+ --ViewUtil.PlayMuisc(self.asset_group, "extend/majiang/fuzhou/sound/bg.mp3")
return self
end
@@ -563,10 +563,15 @@ function M:OutCard(card)
printlog("当前出牌为===>>>" .. card)
local _gamectr = ControllerManager.GetController(GameController)
self._room.curren_outcard_seat = -1
- _gamectr:SendOutCard({ card = card, isTip = self._player_card_info[1]._ctr_tip.selectedIndex == 1 }, function()
- local info = self._player_card_info[1]
- self:RemoveCursor()
- info:UpdateHandCard()
+ _gamectr:SendOutCard(
+ {
+ card = card,
+ isTip = self._player_card_info[1]._ctr_tip.selectedIndex == 1 or
+ self._player_card_info[1]._ctr_showGuoHu.selectedIndex == 1
+ }, function()
+ local info = self._player_card_info[1]
+ self:RemoveCursor()
+ info:UpdateHandCard()
info:UpdateOutCardList(nil, card, self._cursor)
info._ctr_tip.selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/fuzhou/EXWitnessView.lua b/lua_probject/extend_project/extend/majiang/fuzhou/EXWitnessView.lua
index ea49b32a..c1948322 100644
--- a/lua_probject/extend_project/extend/majiang/fuzhou/EXWitnessView.lua
+++ b/lua_probject/extend_project/extend/majiang/fuzhou/EXWitnessView.lua
@@ -321,8 +321,7 @@ function M:EventInit()
-- end
-- self:RemoveCursor()
if self._clearingView == nil then
- self._clearingView = EXClearingView.new(self._root_view)
- self._clearingView._view:GetChild('btn_setting').onClick:Set(handler(self,self.ClickSetting))
+ self._clearingView = EXClearingView.new(self)
coroutine.start(function()
coroutine.wait(0.5)
self._clearingView:Show()
diff --git a/lua_probject/extend_project/extend/majiang/jinxi/EXClearingView.lua b/lua_probject/extend_project/extend/majiang/jinxi/EXClearingView.lua
index ed3bc704..79977615 100644
--- a/lua_probject/extend_project/extend/majiang/jinxi/EXClearingView.lua
+++ b/lua_probject/extend_project/extend/majiang/jinxi/EXClearingView.lua
@@ -5,7 +5,7 @@ local EXClearingView = {}
local M = EXClearingView
-function EXClearingView.new(blur_view, data)
+function EXClearingView.new(root, data)
setmetatable(M, { __index = ResultView })
local self = setmetatable({}, { __index = M })
self._full = true
@@ -14,7 +14,7 @@ function EXClearingView.new(blur_view, data)
self._root_view:GetChild("win_mode").visible = false
self._currenIndex = 0
- self._blur_view = blur_view
+ self._root = root
self._close_zone = false
if data then
self.flag_back = data.flag_back
diff --git a/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua b/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua
index 2fb1a8f4..c341edee 100644
--- a/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua
@@ -404,7 +404,6 @@ self:PlaySound("JinXi_MJ", p.self_user.sex, tostring(card))
end)
_gamectr:AddEventListener(TX_GameEvent.ZPResult1, function(...)
- self:PlayMJSound("end_music.mp3")
MJMainView.OnResult1(self, ...)
--[[
self._popEvent = false
@@ -565,10 +564,15 @@ function M:OutCard(card)
printlog("当前出牌为===>>>" .. card)
local _gamectr = ControllerManager.GetController(GameController)
self._room.curren_outcard_seat = -1
- _gamectr:SendOutCard({ card = card, isTip = self._player_card_info[1]._ctr_tip.selectedIndex == 1 }, function()
- local info = self._player_card_info[1]
- self:RemoveCursor()
- info:UpdateHandCard()
+ _gamectr:SendOutCard(
+ {
+ card = card,
+ isTip = self._player_card_info[1]._ctr_tip.selectedIndex == 1 or
+ self._player_card_info[1]._ctr_showGuoHu.selectedIndex == 1
+ }, function()
+ local info = self._player_card_info[1]
+ self:RemoveCursor()
+ info:UpdateHandCard()
info:UpdateOutCardList(nil, card, self._cursor)
info._ctr_tip.selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/jinxi/EXWitnessView.lua b/lua_probject/extend_project/extend/majiang/jinxi/EXWitnessView.lua
index 1424b397..d7d7b5de 100644
--- a/lua_probject/extend_project/extend/majiang/jinxi/EXWitnessView.lua
+++ b/lua_probject/extend_project/extend/majiang/jinxi/EXWitnessView.lua
@@ -321,8 +321,7 @@ function M:EventInit()
-- end
-- self:RemoveCursor()
if self._clearingView == nil then
- self._clearingView = EXClearingView.new(self._root_view)
- self._clearingView._view:GetChild('btn_setting').onClick:Set(handler(self,self.ClickSetting))
+ self._clearingView = EXClearingView.new(self)
coroutine.start(function()
coroutine.wait(0.5)
self._clearingView:Show()
diff --git a/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua b/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua
index ed9f6334..324f4574 100644
--- a/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua
@@ -24,7 +24,7 @@ function M.new()
self.HuCardImg_path = "ui://Extend_MJ_LiChuan/"
self.Sound_path = "extend/majiang/lichuan/sound/"
self:init()
- ViewUtil.PlayMuisc(self.asset_group, "extend/majiang/lichuan/sound/bg.mp3")
+ -- ViewUtil.PlayMuisc(self.asset_group, "extend/majiang/lichuan/sound/bg.mp3")
return self
end
diff --git a/lua_probject/extend_project/extend/majiang/lichuan/EXWitnessView.lua b/lua_probject/extend_project/extend/majiang/lichuan/EXWitnessView.lua
index ac49d519..36422360 100644
--- a/lua_probject/extend_project/extend/majiang/lichuan/EXWitnessView.lua
+++ b/lua_probject/extend_project/extend/majiang/lichuan/EXWitnessView.lua
@@ -323,8 +323,7 @@ function M:EventInit()
-- end
-- self:RemoveCursor()
if self._clearingView == nil then
- self._clearingView = EXClearingView.new(self._root_view)
- self._clearingView._view:GetChild('btn_setting').onClick:Set(handler(self, self.ClickSetting))
+ self._clearingView = EXClearingView.new(self)
coroutine.start(function()
coroutine.wait(0.5)
self._clearingView:Show()
diff --git a/lua_probject/extend_project/extend/majiang/nancheng/EXClearingView.lua b/lua_probject/extend_project/extend/majiang/nancheng/EXClearingView.lua
index 4d54df13..d0162685 100644
--- a/lua_probject/extend_project/extend/majiang/nancheng/EXClearingView.lua
+++ b/lua_probject/extend_project/extend/majiang/nancheng/EXClearingView.lua
@@ -5,7 +5,7 @@ local EXClearingView = {}
local M = EXClearingView
-function EXClearingView.new(blur_view, data)
+function EXClearingView.new(root, data)
setmetatable(M, { __index = ResultView })
local self = setmetatable({}, { __index = M })
self._full = true
@@ -14,7 +14,7 @@ function EXClearingView.new(blur_view, data)
self._root_view:GetChild("win_mode").visible = false
self._currenIndex = 0
- self._blur_view = blur_view
+ self._root = root
self._close_zone = false
if data then
self.flag_back = data.flag_back
diff --git a/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua b/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua
index f6d42619..57dff025 100644
--- a/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua
@@ -563,10 +563,15 @@ function M:OutCard(card)
printlog("当前出牌为===>>>" .. card)
local _gamectr = ControllerManager.GetController(GameController)
self._room.curren_outcard_seat = -1
- _gamectr:SendOutCard({ card = card, isTip = self._player_card_info[1]._ctr_tip.selectedIndex == 1 }, function()
- local info = self._player_card_info[1]
- self:RemoveCursor()
- info:UpdateHandCard()
+ _gamectr:SendOutCard(
+ {
+ card = card,
+ isTip = self._player_card_info[1]._ctr_tip.selectedIndex == 1 or
+ self._player_card_info[1]._ctr_showGuoHu.selectedIndex == 1
+ }, function()
+ local info = self._player_card_info[1]
+ self:RemoveCursor()
+ info:UpdateHandCard()
info:UpdateOutCardList(nil, card, self._cursor)
info._ctr_tip.selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/nancheng/EXWitnessView.lua b/lua_probject/extend_project/extend/majiang/nancheng/EXWitnessView.lua
index f502c835..fa64eaed 100644
--- a/lua_probject/extend_project/extend/majiang/nancheng/EXWitnessView.lua
+++ b/lua_probject/extend_project/extend/majiang/nancheng/EXWitnessView.lua
@@ -321,8 +321,7 @@ function M:EventInit()
-- end
-- self:RemoveCursor()
if self._clearingView == nil then
- self._clearingView = EXClearingView.new(self._root_view)
- self._clearingView._view:GetChild('btn_setting').onClick:Set(handler(self,self.ClickSetting))
+ self._clearingView = EXClearingView.new(self)
coroutine.start(function()
coroutine.wait(0.5)
self._clearingView:Show()
diff --git a/lua_probject/main_project/main/majiang/MJMainView.lua b/lua_probject/main_project/main/majiang/MJMainView.lua
index f01ab863..1811605e 100644
--- a/lua_probject/main_project/main/majiang/MJMainView.lua
+++ b/lua_probject/main_project/main/majiang/MJMainView.lua
@@ -970,6 +970,7 @@ function M:Show()
local win = GameInfoWindow.New()
win:Show(self._room)
end
+ self:PlayMJSound("game_backmusic.mp3")
self:DoNoticeAnimation()
end
diff --git a/lua_probject/main_project/main/majiang/MJPlayerSelfCardInfoView.lua b/lua_probject/main_project/main/majiang/MJPlayerSelfCardInfoView.lua
index 13e885cc..38fd2c1b 100644
--- a/lua_probject/main_project/main/majiang/MJPlayerSelfCardInfoView.lua
+++ b/lua_probject/main_project/main/majiang/MJPlayerSelfCardInfoView.lua
@@ -32,9 +32,7 @@ function M:init()
self._ctr_showGuoHu = self._view:GetController('showGuoHu')
self._area_allDown.onClick:Set(function()
- self._view_handCardList.selectedIndex = -1
- self._click_index = self._view_handCardList.selectedIndex
- self._ctr_seletedGet.selectedIndex = 1
+ self:ClearChoose()
end)
self._viewBtn_buGuoHu.onClick:Set(function()
@@ -257,8 +255,8 @@ function M:ChangeMarkOutCards(card)
elseif self._flag_seletedGet ~= 0 then
lastCard = self._view_getCard:GetChildAt(0).data.card_item
end
- self._mainView:markOutCards(false, lastCard)
- self._mainView:markOutCards(true, card)
+ self._mainView:markOutCards(false, lastCard)
+ self._mainView:markOutCards(true, card)
end
function M:__OnClickHandCard(context)
diff --git a/lua_probject/main_project/main/majiang/MJWitnessView.lua b/lua_probject/main_project/main/majiang/MJWitnessView.lua
index 6153b7f8..5b576573 100644
--- a/lua_probject/main_project/main/majiang/MJWitnessView.lua
+++ b/lua_probject/main_project/main/majiang/MJWitnessView.lua
@@ -51,6 +51,7 @@ function M:InitView()
self.btn_setting = self._view:GetChild("btn_setting")
self.btn_setting.onClick:Set(handler(self, self.ClickSetting))
+ self._view_clearingFather = self._view:GetChild('clearing_show')
end
function M:ClickSetting()
@@ -58,6 +59,11 @@ function M:ClickSetting()
view:Show()
end
+function M:Show()
+ getmetatable(M).__index.Show(self)
+ self:PlayMJSound("game_backmusic.mp3")
+end
+
local majiang_asset_path = "base/main_majiang/sound/"
function M:PlayMJSound(path)
ViewUtil.PlaySound(self.asset_group, majiang_asset_path .. path)
diff --git a/wb_new_ui/assets/Common/bg/loggin_bg.png b/wb_new_ui/assets/Common/bg/loggin_bg.png
index c500e78c..9177d3cb 100644
Binary files a/wb_new_ui/assets/Common/bg/loggin_bg.png and b/wb_new_ui/assets/Common/bg/loggin_bg.png differ
diff --git a/wb_new_ui/assets/Hotupdate/Version.xml b/wb_new_ui/assets/Hotupdate/Version.xml
index d7335c59..b1837a58 100644
--- a/wb_new_ui/assets/Hotupdate/Version.xml
+++ b/wb_new_ui/assets/Hotupdate/Version.xml
@@ -2,12 +2,15 @@
-
-
-
-
+
+
+
+
+
+
+
-
+
@@ -20,6 +23,8 @@
-
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Hotupdate/commpoent/Slider1.xml b/wb_new_ui/assets/Hotupdate/commpoent/Slider1.xml
index bc9ddfc4..cf1fe37c 100644
--- a/wb_new_ui/assets/Hotupdate/commpoent/Slider1.xml
+++ b/wb_new_ui/assets/Hotupdate/commpoent/Slider1.xml
@@ -1,10 +1,12 @@
-
+
-
+
+
+
+
-
\ No newline at end of file
diff --git a/wb_new_ui/assets/Hotupdate/hall_girl_bg@2x.png b/wb_new_ui/assets/Hotupdate/hall_girl_bg@2x.png
index a07214d3..b163dab6 100644
Binary files a/wb_new_ui/assets/Hotupdate/hall_girl_bg@2x.png and b/wb_new_ui/assets/Hotupdate/hall_girl_bg@2x.png differ
diff --git a/wb_new_ui/assets/Hotupdate/images/denglu_icon_01.png b/wb_new_ui/assets/Hotupdate/images/denglu_icon_01.png
index a7b912cc..51af172e 100644
Binary files a/wb_new_ui/assets/Hotupdate/images/denglu_icon_01.png and b/wb_new_ui/assets/Hotupdate/images/denglu_icon_01.png differ
diff --git a/wb_new_ui/assets/Hotupdate/images/denglu_icon_03.png b/wb_new_ui/assets/Hotupdate/images/denglu_icon_03.png
index 740d9c62..fa6e92c7 100644
Binary files a/wb_new_ui/assets/Hotupdate/images/denglu_icon_03.png and b/wb_new_ui/assets/Hotupdate/images/denglu_icon_03.png differ
diff --git a/wb_new_ui/assets/Hotupdate/loggin_bg.png b/wb_new_ui/assets/Hotupdate/loggin_bg.png
index c500e78c..9177d3cb 100644
Binary files a/wb_new_ui/assets/Hotupdate/loggin_bg.png and b/wb_new_ui/assets/Hotupdate/loggin_bg.png differ
diff --git a/wb_new_ui/assets/Hotupdate/package.xml b/wb_new_ui/assets/Hotupdate/package.xml
index 8a86c5d3..26d5f17e 100644
--- a/wb_new_ui/assets/Hotupdate/package.xml
+++ b/wb_new_ui/assets/Hotupdate/package.xml
@@ -12,11 +12,11 @@
-
+
-
+
diff --git a/wb_new_ui/assets/Lobby/2b25837b-0405-4fab-80d1-c15388ad67c8.png b/wb_new_ui/assets/Lobby/2b25837b-0405-4fab-80d1-c15388ad67c8.png
deleted file mode 100644
index f75c41b5..00000000
Binary files a/wb_new_ui/assets/Lobby/2b25837b-0405-4fab-80d1-c15388ad67c8.png and /dev/null differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/component/fuzhouDetail.xml b/wb_new_ui/assets/Lobby/GamePlay/component/fuzhouDetail.xml
new file mode 100644
index 00000000..b3cb0703
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/GamePlay/component/fuzhouDetail.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/GamePlay/component/jinxiDetail.xml b/wb_new_ui/assets/Lobby/GamePlay/component/jinxiDetail.xml
new file mode 100644
index 00000000..2256c81e
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/GamePlay/component/jinxiDetail.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/GamePlay/component/lichuanDetail.xml b/wb_new_ui/assets/Lobby/GamePlay/component/lichuanDetail.xml
index 98a19de8..671c8c5c 100644
--- a/wb_new_ui/assets/Lobby/GamePlay/component/lichuanDetail.xml
+++ b/wb_new_ui/assets/Lobby/GamePlay/component/lichuanDetail.xml
@@ -2,8 +2,8 @@
-
-
-
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/GamePlay/component/nanchengDetail.xml b/wb_new_ui/assets/Lobby/GamePlay/component/nanchengDetail.xml
new file mode 100644
index 00000000..ffd5f090
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/GamePlay/component/nanchengDetail.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/GamePlay/component/paodekuaiDetail.xml b/wb_new_ui/assets/Lobby/GamePlay/component/paodekuaiDetail.xml
new file mode 100644
index 00000000..c33eadbb
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/GamePlay/component/paodekuaiDetail.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail1.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail1.png
new file mode 100644
index 00000000..27c86776
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail1.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail2.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail2.png
new file mode 100644
index 00000000..e5a0a511
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail2.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail3.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail3.png
new file mode 100644
index 00000000..4714c1a5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail3.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail4.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail4.png
new file mode 100644
index 00000000..87c52c0b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail4.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail5.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail5.png
new file mode 100644
index 00000000..a6052de9
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail5.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail6.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail6.png
new file mode 100644
index 00000000..14484736
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail6.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail7.png b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail7.png
new file mode 100644
index 00000000..2ac74f1c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/fuzhouDetail7.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill1.png b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill1.png
new file mode 100644
index 00000000..04b2517c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill1.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill2.png b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill2.png
new file mode 100644
index 00000000..8ecad98c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill2.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill3.png b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill3.png
new file mode 100644
index 00000000..a8236bb1
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill3.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill4.png b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill4.png
new file mode 100644
index 00000000..ac5f7f41
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/jinxiDetaill4.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail1.png b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail1.png
new file mode 100644
index 00000000..6c4a70d4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail1.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail2.png b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail2.png
new file mode 100644
index 00000000..e729ffea
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail2.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail3.png b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail3.png
new file mode 100644
index 00000000..ad692d8b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail3.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail4.png b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail4.png
new file mode 100644
index 00000000..dd7c88fa
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/nanchengDetail4.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail1.png b/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail1.png
new file mode 100644
index 00000000..2dba4a2e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail1.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail2.png b/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail2.png
new file mode 100644
index 00000000..c3c2bc80
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail2.png differ
diff --git a/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail3.png b/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail3.png
new file mode 100644
index 00000000..cdede2c4
Binary files /dev/null and b/wb_new_ui/assets/Lobby/GamePlay/image/paodekuaiDetail3.png differ
diff --git a/wb_new_ui/assets/Lobby/Main_New.xml b/wb_new_ui/assets/Lobby/Main_New.xml
index c9fa2d97..710545d6 100644
--- a/wb_new_ui/assets/Lobby/Main_New.xml
+++ b/wb_new_ui/assets/Lobby/Main_New.xml
@@ -7,25 +7,19 @@
-
+
-
+
-
-
-
-
-
-
-
+
-
+
@@ -72,16 +66,22 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -98,10 +98,7 @@
-
-
-
-
+
diff --git a/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_createRoom.xml b/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_createRoom.xml
index ddd47de9..b7303a17 100644
--- a/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_createRoom.xml
+++ b/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_createRoom.xml
@@ -2,7 +2,9 @@
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_family.xml b/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_family.xml
index a4bf0853..936825cd 100644
--- a/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_family.xml
+++ b/wb_new_ui/assets/Lobby/component/Main/Component/center/btn_family.xml
@@ -1,8 +1,10 @@
-
+
-
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/Main/Component/notice/com_notice.xml b/wb_new_ui/assets/Lobby/component/Main/Component/notice/com_notice.xml
index d2864ab1..ee71993f 100644
--- a/wb_new_ui/assets/Lobby/component/Main/Component/notice/com_notice.xml
+++ b/wb_new_ui/assets/Lobby/component/Main/Component/notice/com_notice.xml
@@ -4,9 +4,11 @@
-
+
-
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/Main/Component/notice/notice_old/result_tips_bg.png b/wb_new_ui/assets/Lobby/component/Main/Component/notice/notice_old/result_tips_bg.png
index b3840e6f..3065ee91 100644
Binary files a/wb_new_ui/assets/Lobby/component/Main/Component/notice/notice_old/result_tips_bg.png and b/wb_new_ui/assets/Lobby/component/Main/Component/notice/notice_old/result_tips_bg.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Main/Component/player_info/head.xml b/wb_new_ui/assets/Lobby/component/Main/Component/player_info/head.xml
index 40fa161e..fa9e5584 100644
--- a/wb_new_ui/assets/Lobby/component/Main/Component/player_info/head.xml
+++ b/wb_new_ui/assets/Lobby/component/Main/Component/player_info/head.xml
@@ -2,10 +2,10 @@
-
+
-
-
+
+
diff --git a/wb_new_ui/assets/Lobby/component/Main/Image/1.png b/wb_new_ui/assets/Lobby/component/Main/Image/1.png
index 15ba453f..edf42249 100644
Binary files a/wb_new_ui/assets/Lobby/component/Main/Image/1.png and b/wb_new_ui/assets/Lobby/component/Main/Image/1.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Main/Image/2.png b/wb_new_ui/assets/Lobby/component/Main/Image/2.png
index ed30f427..916f3d7f 100644
Binary files a/wb_new_ui/assets/Lobby/component/Main/Image/2.png and b/wb_new_ui/assets/Lobby/component/Main/Image/2.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Main/Image/bg.png b/wb_new_ui/assets/Lobby/component/Main/Image/bg.png
index 86052d06..f63f6f79 100644
Binary files a/wb_new_ui/assets/Lobby/component/Main/Image/bg.png and b/wb_new_ui/assets/Lobby/component/Main/Image/bg.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Main/Image/gonggao.png b/wb_new_ui/assets/Lobby/component/Main/Image/gonggao.png
index a5cb2dac..bfe51eab 100644
Binary files a/wb_new_ui/assets/Lobby/component/Main/Image/gonggao.png and b/wb_new_ui/assets/Lobby/component/Main/Image/gonggao.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Main/Image/top.png b/wb_new_ui/assets/Lobby/component/Main/Image/top.png
index afa30033..6ec626b2 100644
Binary files a/wb_new_ui/assets/Lobby/component/Main/Image/top.png and b/wb_new_ui/assets/Lobby/component/Main/Image/top.png differ
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index fe706950..15a78f87 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -641,7 +641,6 @@
-
@@ -669,6 +668,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/Login/Main.xml b/wb_new_ui/assets/Login/Main.xml
index c4292374..bec330c2 100644
--- a/wb_new_ui/assets/Login/Main.xml
+++ b/wb_new_ui/assets/Login/Main.xml
@@ -3,11 +3,11 @@
-
+
-
-
+
+
@@ -16,11 +16,11 @@
-
+
-
-
+
+
diff --git a/wb_new_ui/assets/Login/PhnoeLogin.xml b/wb_new_ui/assets/Login/PhnoeLogin.xml
index dc5544ca..10f9a2d3 100644
--- a/wb_new_ui/assets/Login/PhnoeLogin.xml
+++ b/wb_new_ui/assets/Login/PhnoeLogin.xml
@@ -1,23 +1,23 @@
-
+
-
+
-
+
-
+
@@ -27,7 +27,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Login/component/main/component/btn_showText.xml b/wb_new_ui/assets/Login/component/main/component/btn_showText.xml
index b8030fb5..3a228625 100644
--- a/wb_new_ui/assets/Login/component/main/component/btn_showText.xml
+++ b/wb_new_ui/assets/Login/component/main/component/btn_showText.xml
@@ -2,7 +2,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Login/component/phone_login/component/btn_send.xml b/wb_new_ui/assets/Login/component/phone_login/component/btn_send.xml
index d9289842..26181a19 100644
--- a/wb_new_ui/assets/Login/component/phone_login/component/btn_send.xml
+++ b/wb_new_ui/assets/Login/component/phone_login/component/btn_send.xml
@@ -2,7 +2,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_3_jiangxi.xml b/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_3_jiangxi.xml
index 4fb04472..5e508cc1 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_3_jiangxi.xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_3_jiangxi.xml
@@ -1,6 +1,6 @@
-
+
@@ -40,14 +40,14 @@
-
+
-
+
-
+
@@ -141,7 +141,7 @@
-
+
@@ -149,7 +149,7 @@
-
+
@@ -169,6 +169,9 @@
+
+
+
@@ -193,6 +196,9 @@
+
+
+
@@ -260,9 +266,6 @@
-
-
-
diff --git a/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4_jiangxi.xml b/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4_jiangxi.xml
index 03c1fb89..7994bfe6 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4_jiangxi.xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4_jiangxi.xml
@@ -1,6 +1,6 @@
-
+
@@ -306,5 +306,8 @@
+
+
+
\ No newline at end of file
diff --git a/wb_unity_pro/Assets/ART/base/common/sound/bgmusic1.mp3 b/wb_unity_pro/Assets/ART/base/common/sound/bgmusic1.mp3
index ee0bb029..668cde3c 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/sound/bgmusic1.mp3 and b/wb_unity_pro/Assets/ART/base/common/sound/bgmusic1.mp3 differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_z7hi7cjl.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_z7hi7cjl.png
index d0f7b59d..5c8c7864 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_z7hi7cjl.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas_z7hi7cjl.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes b/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes
index f3265903..33f0aa28 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes and b/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png
index 0a9fc4fb..30d04796 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 413d62bb..be326a59 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
new file mode 100644
index 00000000..23b46afc
Binary files /dev/null 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_10.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png.meta
new file mode 100644
index 00000000..7b0fe12e
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 7466bae5ba950004281fd86235235ba2
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
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
new file mode 100644
index 00000000..b79071a1
Binary files /dev/null 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_11.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png.meta
new file mode 100644
index 00000000..094c32e4
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 4f6d50b5b47c5b747b602efb9ce6cab5
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
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
new file mode 100644
index 00000000..8c7f645d
Binary files /dev/null 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_12.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png.meta
new file mode 100644
index 00000000..c29d1ddc
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 0c8853a085ec74e4095f89248ff81b15
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
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
new file mode 100644
index 00000000..1f7b0a59
Binary files /dev/null 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_13.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png.meta
new file mode 100644
index 00000000..e414d20a
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 52d9f107b0fca2746b9aed69530fc471
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png
new file mode 100644
index 00000000..9693fbc8
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta
new file mode 100644
index 00000000..19e085e2
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 8adbc7c19a2a16849944471527497794
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_15.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_15.png
new file mode 100644
index 00000000..03d04d93
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_15.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_15.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_15.png.meta
new file mode 100644
index 00000000..444b8bce
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_15.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 8a71b2d845e5a5a4ab9165c3f6d80211
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
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 e893f711..25f903a9 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 eda71b96..b3889df3 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 246253b4..181369f6 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 dce688f2..e9e9f758 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 b79071a1..4983cb45 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 95f17f25..4e4d3051 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 66d32510..f72cf4a9 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_8.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png.meta
index cbed1648..8d51522e 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.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_9.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png
new file mode 100644
index 00000000..7172b76f
Binary files /dev/null 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_atlas0_9.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png.meta
new file mode 100644
index 00000000..27e09236
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: ececabb9f4e0dcd4891372414917b5a9
+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/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_jrro7cya.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_jrro7cya.png
index 7469e89e..ad1c37e2 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_jrro7cya.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_jrro7cya.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7h.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7h.png.meta
index a03330ee..2fb0f75c 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7h.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7h.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_xx1c7d7i.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7i.png.meta
index a663d35d..dbb559e9 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7i.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7i.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_xx1c7d7m.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7m.png.meta
index f4b557f8..5b01f826 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7m.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7m.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_xx1c7d7n.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7n.png.meta
index a1ee3737..0284690b 100644
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7n.png.meta
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas_xx1c7d7n.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 dad7628b..c6c26f87 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_fui.bytes b/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes
index 022e3292..711ce5b1 100644
Binary files a/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes and b/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/sound/game_backmusic.mp3 b/wb_unity_pro/Assets/ART/base/main_majiang/sound/game_backmusic.mp3
new file mode 100644
index 00000000..bc6af6d6
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/main_majiang/sound/game_backmusic.mp3 differ
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/sound/game_backmusic.mp3.meta b/wb_unity_pro/Assets/ART/base/main_majiang/sound/game_backmusic.mp3.meta
new file mode 100644
index 00000000..66c34418
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/main_majiang/sound/game_backmusic.mp3.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 48939196749dcc54a9f27abd0af09bd4
+AudioImporter:
+ externalObjects: {}
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ ambisonic: 0
+ 3D: 1
+ userData:
+ assetBundleName: base/main_majiang/d75e2071763b7b84d807130f24b69922
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes
index 89941550..693fc097 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes and b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/sound/bgm1.mp3 b/wb_unity_pro/Assets/ART/extend/poker/runfast/sound/bgm1.mp3
index ee475732..bc6af6d6 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/sound/bgm1.mp3 and b/wb_unity_pro/Assets/ART/extend/poker/runfast/sound/bgm1.mp3 differ
diff --git a/wb_unity_pro/Assets/Icon/icon1024.png b/wb_unity_pro/Assets/Icon/icon1024.png
index a83a953b..fe69fa43 100644
Binary files a/wb_unity_pro/Assets/Icon/icon1024.png and b/wb_unity_pro/Assets/Icon/icon1024.png differ
diff --git a/wb_unity_pro/Assets/Icon/icon96.png b/wb_unity_pro/Assets/Icon/icon96.png
index c448fe3f..fe69fa43 100644
Binary files a/wb_unity_pro/Assets/Icon/icon96.png and b/wb_unity_pro/Assets/Icon/icon96.png differ
diff --git a/wb_unity_pro/Assets/Icon/loading.png b/wb_unity_pro/Assets/Icon/loading.png
new file mode 100644
index 00000000..2e347017
Binary files /dev/null and b/wb_unity_pro/Assets/Icon/loading.png differ
diff --git a/wb_unity_pro/Assets/Icon/loading.png.meta b/wb_unity_pro/Assets/Icon/loading.png.meta
new file mode 100644
index 00000000..506f5a6c
--- /dev/null
+++ b/wb_unity_pro/Assets/Icon/loading.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: a1be71f9a25621242879a60a153f0196
+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/Resources/base/embed/ui/Hotupdate_atlas0.png b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas0.png
index af3992bc..60bc100e 100644
Binary files a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas0.png and b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas0.png differ
diff --git a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_op0e7i4w.png b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_op0e7i4w.png
index d0f7b59d..5c8c7864 100644
Binary files a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_op0e7i4w.png and b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_atlas_op0e7i4w.png differ
diff --git a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_fui.bytes b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_fui.bytes
index 37aba57b..538d6ba2 100644
Binary files a/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_fui.bytes and b/wb_unity_pro/Assets/Resources/base/embed/ui/Hotupdate_fui.bytes differ
diff --git a/wb_unity_pro/Assets/StreamingAssets/init1_1.json b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
index 404dabbc..531eaa46 100644
--- a/wb_unity_pro/Assets/StreamingAssets/init1_1.json
+++ b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
@@ -8,34 +8,34 @@
"bundle": "extend/poker/runfast"
},
{
- "ver": "1.0.44",
+ "ver": "1.0.46",
"name": "南城麻将",
"check": true,
- "version": "1.0.44",
+ "version": "1.0.46",
"game_id": "86",
"bundle": "extend/majiang/nancheng"
},
{
- "ver": "1.0.47",
+ "ver": "1.0.49",
"name": "黎川麻将",
"check": true,
- "version": "1.0.47",
+ "version": "1.0.49",
"game_id": "87",
"bundle": "extend/majiang/lichuan"
},
{
- "ver": "1.0.31",
+ "ver": "1.0.33",
"name": "金溪麻将",
"check": true,
- "version": "1.0.31",
+ "version": "1.0.33",
"game_id": "88",
"bundle": "extend/majiang/jinxi"
},
{
- "ver": "1.0.30",
+ "ver": "1.0.32",
"name": "抚州麻将",
"check": true,
- "version": "1.0.30",
+ "version": "1.0.32",
"game_id": "89",
"bundle": "extend/majiang/fuzhou"
}
diff --git a/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..a7b01c9e
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.6.bytes
index 4e1a4c50..12cb4d5c 100644
Binary files a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.6.bytes and b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..2261b2e9
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..d5681472
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..c9c1ca9e
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..970703a6
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..99cffec1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..93c972eb
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..91dd3958
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..11215723
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..20e6d905
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..23c0ef0f
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..dfc0c953
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..79eef24e
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..b1c41db1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/fuzhou/asset_pack1.0.32.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/fuzhou/asset_pack1.0.32.bytes
new file mode 100644
index 00000000..91679af8
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/fuzhou/asset_pack1.0.32.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/jinxi/asset_pack1.0.33.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/jinxi/asset_pack1.0.33.bytes
new file mode 100644
index 00000000..9111a83b
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/jinxi/asset_pack1.0.33.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/lichuan/asset_pack1.0.49.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/lichuan/asset_pack1.0.49.bytes
new file mode 100644
index 00000000..cd0483b1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/lichuan/asset_pack1.0.49.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/majiang/nancheng/asset_pack1.0.46.bytes b/wb_unity_pro/Pack/Android32/extend/majiang/nancheng/asset_pack1.0.46.bytes
new file mode 100644
index 00000000..58b217d5
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/extend/majiang/nancheng/asset_pack1.0.46.bytes differ
diff --git a/wb_unity_pro/ProjectSettings/ProjectSettings.asset b/wb_unity_pro/ProjectSettings/ProjectSettings.asset
index 869557a3..bc93f816 100644
--- a/wb_unity_pro/ProjectSettings/ProjectSettings.asset
+++ b/wb_unity_pro/ProjectSettings/ProjectSettings.asset
@@ -253,7 +253,7 @@ PlayerSettings:
templateDefaultScene:
AndroidTargetArchitectures: 1
AndroidSplashScreenScale: 2
- androidSplashScreen: {fileID: 0}
+ androidSplashScreen: {fileID: 2800000, guid: a1be71f9a25621242879a60a153f0196, type: 3}
AndroidKeystoreName: '{inproject}: smn.keystore'
AndroidKeyaliasName: smn
AndroidBuildApkPerCpuArchitecture: 0
@@ -348,7 +348,7 @@ PlayerSettings:
m_Kind: 2
m_SubKind:
- m_Textures:
- - {fileID: 0}
+ - {fileID: 2800000, guid: 0c96432335c56464db3c605e4582334f, type: 3}
m_Width: 192
m_Height: 192
m_Kind: 0
@@ -360,7 +360,7 @@ PlayerSettings:
m_Kind: 0
m_SubKind:
- m_Textures:
- - {fileID: 0}
+ - {fileID: 2800000, guid: 9e08f3d714fe6e244b88abeaa628a75c, type: 3}
m_Width: 96
m_Height: 96
m_Kind: 0