diff --git a/lua_probject/base_project/Game/Controller/LoddyController.lua b/lua_probject/base_project/Game/Controller/LoddyController.lua
index 2c6730c8..bc284997 100644
--- a/lua_probject/base_project/Game/Controller/LoddyController.lua
+++ b/lua_probject/base_project/Game/Controller/LoddyController.lua
@@ -434,3 +434,17 @@ function M:SetInvited(on, callback)
callback(res)
end)
end
+
+--赠送房卡
+function M:GiftDiamond(data, callback)
+ --不走登录逻辑
+ local _client = ControllerManager.WebClient
+ local _data = {}
+ _data.tagId = data.tagId or 0
+ _data.diamo = data.diamo or 0
+ _client:send(Protocol.WEB_RECHARGE_DIAMO, _data, function(res)
+ if (callback ~= nil) then
+ callback(res)
+ end
+ end)
+end
diff --git a/lua_probject/base_project/Game/Controller/LoginController.lua b/lua_probject/base_project/Game/Controller/LoginController.lua
index e22d6862..c225a192 100644
--- a/lua_probject/base_project/Game/Controller/LoginController.lua
+++ b/lua_probject/base_project/Game/Controller/LoginController.lua
@@ -48,7 +48,7 @@ local function __Login(cmd, _data, callBack)
user.head_url = account["portrait"]
user.room_id = account["roomid"]
user.group_id = account["groupId"]
- user.type = account["type"]
+ user.type = account["type"] --为1的时候是代理,为0的时候是普通玩家
user.agent = account["mng"]
user.real_info = account.real_info
diff --git a/lua_probject/base_project/Game/Protocol.lua b/lua_probject/base_project/Game/Protocol.lua
index 1abfaa02..c3b5dbe1 100644
--- a/lua_probject/base_project/Game/Protocol.lua
+++ b/lua_probject/base_project/Game/Protocol.lua
@@ -39,6 +39,8 @@ Protocol = {
WEB_GET_AGENT_SECRET = "acc/agent_secret",
-- 设置被邀请开关
WEB_SET_GROUP_INVITATED = "acc/set_group_invitation",
+ ---赠送房卡
+ WEB_RECHARGE_DIAMO = "acc/recharge_diamo",
----index----
-- 获取公告
WEB_UPDATE_NOTICE = "index/get_notice",
diff --git a/lua_probject/base_project/Game/View/Lobby/CreateRoomView.lua b/lua_probject/base_project/Game/View/Lobby/CreateRoomView.lua
index 1943472b..e629e3a6 100644
--- a/lua_probject/base_project/Game/View/Lobby/CreateRoomView.lua
+++ b/lua_probject/base_project/Game/View/Lobby/CreateRoomView.lua
@@ -9,7 +9,8 @@ function CreateRoomView.new(index)
local self = setmetatable({}, { __index = M })
self.class = "CreateRoomView"
self._animation = false
- self._full = true
+ --self._full = true
+ self._scale = true
self._full_offset = false
self._modeMap = {}
self.selectedIndex = index
diff --git a/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua b/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua
new file mode 100644
index 00000000..00143b05
--- /dev/null
+++ b/lua_probject/base_project/Game/View/Lobby/LobbyGiftDiamond.lua
@@ -0,0 +1,33 @@
+local LobbyGiftDiamond = {}
+
+local M = LobbyGiftDiamond
+
+function M.new()
+ setmetatable(M, { __index = BaseWindow })
+ local self = setmetatable({}, { __index = M })
+ self.class = "LobbyGiftDiamond"
+ self._close_destroy = true
+ self:init("ui://Lobby/GiftDiamond")
+ return self
+end
+
+function M:init(url)
+ BaseWindow.init(self, url)
+
+ self._view:GetChild('btn_center').onClick:Set(function()
+ local text_id = self._view:GetChild('input_id').text
+ local text_num = self._view:GetChild('input_num').text
+
+ local lobbyCtr = ControllerManager.GetController(LoddyController)
+ lobbyCtr:GiftDiamond({ tagId = tonumber(text_id), diamo = tonumber(text_num) }, function(res)
+ if res.ReturnCode == 0 then
+ self:Destroy()
+ ViewUtil.ErrorTip(-1, "赠送房卡成功")
+ else
+ ViewUtil.ErrorTip(res.ReturnCode, "赠送房卡失败")
+ end
+ end)
+ end)
+end
+
+return M
diff --git a/lua_probject/base_project/Game/View/LobbyView.lua b/lua_probject/base_project/Game/View/LobbyView.lua
index 2eba4231..d5485cc4 100644
--- a/lua_probject/base_project/Game/View/LobbyView.lua
+++ b/lua_probject/base_project/Game/View/LobbyView.lua
@@ -19,6 +19,7 @@ local HeadView = import(".Lobby.LobbyHeadView")
local PhoneBindView = import(".Lobby.PhoneBindView")
local RealAddressView = import(".Lobby.RealAddressView")
local LobbyHeadView = import(".Lobby.LobbyHeadView")
+local LobbyGiftDiamond = import(".Lobby.LobbyGiftDiamond")
LobbyView = {}
@@ -150,9 +151,12 @@ function M:InitView(url)
end)
local btn_diamo = self._view:GetChild("btn_diamo")
- -- btn_diamo.onClick:Add(function()
- -- ViewUtil.ErrorTip(self._view, string.format("当前房卡一共%s张", DataManager.SelfUser.diamo))
- -- end)
+ btn_diamo.onClick:Add(function()
+ if DataManager.SelfUser.type == 1 then
+ local lobbyGiftDiamond = LobbyGiftDiamond.new()
+ lobbyGiftDiamond:Show()
+ end
+ end)
local btn_customerService = self._view:GetChild("btn_customerService")
btn_customerService.onClick:Add(function()
@@ -204,7 +208,7 @@ function M:InitView(url)
view:GetChild("tex_name").emojies = EmojiDitc.EmojiesDitc
view:GetChild("tex_name").text = Utils.TextOmit(DataManager.SelfUser.nick_name, 6, "...")
- view:GetChild("tex_id").text = tostring(DataManager.SelfUser.account_id)
+ view:GetChild("tex_id").text = string.format("ID:%s", tostring(DataManager.SelfUser.account_id))
view:GetChild("btn_diamo").text = tostring(DataManager.SelfUser.diamo)
diff --git a/lua_probject/base_project/Game/View/PlayerInfoView2.lua b/lua_probject/base_project/Game/View/PlayerInfoView2.lua
index a773d3d2..dbd0b58a 100644
--- a/lua_probject/base_project/Game/View/PlayerInfoView2.lua
+++ b/lua_probject/base_project/Game/View/PlayerInfoView2.lua
@@ -169,7 +169,7 @@ function M:FillData(player)
self._tex_player_id.text = ""
end
else
- self._tex_player_name.text = player.self_user.nick_name
+ self._tex_player_name.text = Utils.TextOmit(player.self_user.nick_name, 6, "...")
if self._tex_player_id then
self._tex_player_id.text = "ID:" .. player.self_user.account_id
end
diff --git a/lua_probject/extend_project/extend/poker/runfast/ExtendConfig.lua b/lua_probject/extend_project/extend/poker/runfast/ExtendConfig.lua
index 4f0331aa..311ec39b 100644
--- a/lua_probject/extend_project/extend/poker/runfast/ExtendConfig.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/ExtendConfig.lua
@@ -92,7 +92,8 @@ function M:FillRoomData(s2croom)
if room.curren_round == 0 and reload then
room.curren_round = 1
end
-
+ room.witness_player_list = _tableInfo["playerSpectatorData"]
+ room._flag_updateWitness = true
local playerList = _tableInfo["playerData"]
for i = 1, #playerList do
local _jp = playerList[i]
@@ -271,6 +272,7 @@ function M:FillWitnessData(pd_data)
room.curren_round = _tableInfo["round"]
+ room.witness_player_list = _tableInfo["playerSpectatorData"]
local playerList = _tableInfo["playerData"]
for i = 1, #playerList do
local _jp = playerList[i]
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/Main_New/PlayerHead_1.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/Main_New/PlayerHead_1.xml
index 1f86ed65..3007e3e4 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/Main_New/PlayerHead_1.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/Main_New/PlayerHead_1.xml
@@ -38,7 +38,7 @@
-
+
diff --git a/wb_new_ui/assets/FGAssist/invite/component/invite/item_invite.xml b/wb_new_ui/assets/FGAssist/invite/component/invite/item_invite.xml
index 29373bf3..09f14288 100644
--- a/wb_new_ui/assets/FGAssist/invite/component/invite/item_invite.xml
+++ b/wb_new_ui/assets/FGAssist/invite/component/invite/item_invite.xml
@@ -5,7 +5,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/wb_new_ui/assets/Family/NumberRecord/Component/comp_numberRecordDetailResultChild.xml b/wb_new_ui/assets/Family/NumberRecord/Component/comp_numberRecordDetailResultChild.xml
index 6ea1765d..e15e64b3 100644
--- a/wb_new_ui/assets/Family/NumberRecord/Component/comp_numberRecordDetailResultChild.xml
+++ b/wb_new_ui/assets/Family/NumberRecord/Component/comp_numberRecordDetailResultChild.xml
@@ -4,7 +4,7 @@
-
+
diff --git a/wb_new_ui/assets/Lobby/CreatePlay.xml b/wb_new_ui/assets/Lobby/CreatePlay.xml
index b5d302e8..737534d1 100644
--- a/wb_new_ui/assets/Lobby/CreatePlay.xml
+++ b/wb_new_ui/assets/Lobby/CreatePlay.xml
@@ -3,6 +3,9 @@
+
+
+
@@ -20,6 +23,7 @@
+
diff --git a/wb_new_ui/assets/Lobby/Main_New.xml b/wb_new_ui/assets/Lobby/Main_New.xml
index 710545d6..e26a0657 100644
--- a/wb_new_ui/assets/Lobby/Main_New.xml
+++ b/wb_new_ui/assets/Lobby/Main_New.xml
@@ -7,19 +7,19 @@
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml
new file mode 100644
index 00000000..61ebdbde
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/component/GiftDiamond/Component/GiftDiamond.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.png b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.png
new file mode 100644
index 00000000..6d0fb7c7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/bg.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
new file mode 100644
index 00000000..facf6c40
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/hall_club_common_btntext_queding.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
new file mode 100644
index 00000000..6ad1e60e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/input.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
new file mode 100644
index 00000000..54d0e30d
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/GiftDiamond/Image/title_top.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Main/Component/top/btn_diamo.xml b/wb_new_ui/assets/Lobby/component/Main/Component/top/btn_diamo.xml
index bdd443c4..9fab6e2c 100644
--- a/wb_new_ui/assets/Lobby/component/Main/Component/top/btn_diamo.xml
+++ b/wb_new_ui/assets/Lobby/component/Main/Component/top/btn_diamo.xml
@@ -5,7 +5,7 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordListChild.xml b/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordListChild.xml
index eb8f0af5..12407c4f 100644
--- a/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordListChild.xml
+++ b/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordListChild.xml
@@ -1,15 +1,15 @@
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordMain.xml b/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordMain.xml
index 50fa17e4..7d3f32b7 100644
--- a/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordMain.xml
+++ b/wb_new_ui/assets/Lobby/component/Record/Component/listChild_recordMain.xml
@@ -1,7 +1,7 @@
-
+
@@ -14,7 +14,7 @@
-
+
@@ -24,16 +24,22 @@
-
+
-
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index 8ec31543..c4e70133 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -692,6 +692,11 @@
+
+
+
+
+
diff --git a/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_1.xml b/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_1.xml
index 2795018c..19e1b4d0 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_1.xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_1.xml
@@ -1,10 +1,10 @@
-
+
-
+
@@ -34,20 +34,20 @@
-
-
+
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_2.xml b/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_2.xml
index 2f53ae6b..9c891b4e 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_2.xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_new/Main/PlayerHead_2.xml
@@ -4,7 +4,7 @@
-
+
@@ -36,18 +36,18 @@
-
+
-
-
+
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml
index 7e6d093f..a2b480c6 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupGameSetting.xml
@@ -8,7 +8,9 @@
-
+
+
+
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 c1fae84e..86aa1a18 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 76e468c0..5317077c 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 7c14c37f..1543dbac 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 7cbeb941..b79071a1 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 f008d18a..83f919b7 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 138a3bf0..a85521c9 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 1f161bd5..55c39d3e 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_14.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png
deleted file mode 100644
index 2308fe09..00000000
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png and /dev/null 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
deleted file mode 100644
index b71fcc9b..00000000
--- a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: e27c2dfc8e90f8640838a112056bc8b9
-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 25f903a9..3363b62f 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 b3889df3..d3ca789c 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 21b4d767..1ef1f5ab 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 a1488fad..3e204296 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 c7e40584..921fce35 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 e3f8c2a1..6db4f818 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 0bc7ffe2..9aa52025 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 b79071a1..9ecf8183 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_fui.bytes b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes
index b16bd798..87cbab71 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/main_majiang/ui/Main_Majiang_fui.bytes b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes
index 506691e4..993c823e 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/base/newgroup/ui/FGAssist_fui.bytes b/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes
index a9529a30..fabd6506 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes and b/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes
index 217a1bd0..6885a0ed 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes
index 337624a6..e949226c 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes differ
diff --git a/wb_unity_pro/Assets/StreamingAssets/init1_1.json b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
index 948d2ed3..18414519 100644
--- a/wb_unity_pro/Assets/StreamingAssets/init1_1.json
+++ b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
@@ -1,9 +1,9 @@
[
{
- "ver": "1.0.40",
+ "ver": "1.0.41",
"name": "跑得快",
"check": true,
- "version": "1.0.40",
+ "version": "1.0.41",
"game_id": "66",
"bundle": "extend/poker/runfast"
},
diff --git a/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..f6bc0354
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/Family/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..40d7b26b
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..2261b2e9
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/chat/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..3590d80b
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/common/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..9243e3a3
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/embed/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..92f2056a
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/lobby/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..99cffec1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..c6cf1586
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_pokemajiang/asset_pack1.0.8.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.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..7f2cd3d3
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_poker/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..20e6d905
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_zipai/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..23c0ef0f
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_zipaimajiang/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..dfc0c953
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/newgroup/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..79eef24e
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/rank/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.8.bytes b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.8.bytes
new file mode 100644
index 00000000..b1c41db1
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/static/asset_pack1.0.8.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.40.bytes b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.41.bytes
similarity index 98%
rename from wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.40.bytes
rename to wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.41.bytes
index 3862f328..330edc1a 100644
Binary files a/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.40.bytes and b/wb_unity_pro/Pack/Android32/extend/poker/runfast/asset_pack1.0.41.bytes differ