diff --git a/lua_probject/base_project/Game/Controller/GameController.lua b/lua_probject/base_project/Game/Controller/GameController.lua index b6399ee6..243f6f4b 100644 --- a/lua_probject/base_project/Game/Controller/GameController.lua +++ b/lua_probject/base_project/Game/Controller/GameController.lua @@ -261,9 +261,12 @@ end -- 玩家进 function M:OnEventPlayerEnter(evt_data) - --print("进入房间++++++++++++++++++++++++++++++++++++++") + print("进入房间++++++++++++++++++++++++++++++++++++++") + + self._cacheEvent:Enqueue( function() + printlog("PlayerEnter:2222") local p = self._room:NewPlayer() local _user _user = User.new() @@ -285,10 +288,12 @@ function M:OnEventPlayerEnter(evt_data) p.self_user = _user p.line_state = 1 DataManager.CurrenRoom:AddPlayer(p) + printlog("PlayerEnter:") DispatchEvent(self._dispatcher, GameEvent.PlayerEnter, p) end ) + self:ReturnToRoom() end -- 玩家离开 diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMemberFagLogView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMemberFagLogView.lua index 9985c8ce..06290451 100644 --- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMemberFagLogView.lua +++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMemberFagLogView.lua @@ -115,7 +115,7 @@ local function __getReason(data) if data.reason == 6 then return data.info elseif data.reason == 7 then - return string.format("系统衰减(%s)", data.roomid) + return string.format("房卡(%s)", data.roomid) elseif data.reason == 8 then return string.format("[color=#FF6600]%s[/color](%s) %s", s_nick, data.mgr_id, "操作增加") elseif data.reason == 9 then diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua index 990f08cb..34c68f49 100644 --- a/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua +++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_GameController.lua @@ -274,7 +274,6 @@ function M:OnDaNiaoShow(evt_data) end function M:OnPassSucc(evt_data) - print("lingmeng OnPassSucc", os.time()) local seat = evt_data["seat"] self._cacheEvent:Enqueue( function() @@ -283,7 +282,7 @@ function M:OnPassSucc(evt_data) DispatchEvent(self._dispatcher, RunFast_GameEvent.OnPassSucc, p) end ) - print("lingmeng OnPassSucc2", os.time()) + end function M:OnPutError(evt_data) diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/EXMainView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/EXMainView.lua index d0c3752a..fdd001da 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/EXMainView.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/EXMainView.lua @@ -200,7 +200,7 @@ function M:EventInit() if tex_round ~= nil then tex_round.text = '第 ' .. _room.curren_round .. ' 局' end - self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. ' 局 百息结算 ' + self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. ' 局 ' self._state.selectedIndex = 1 self:closeTipOnTuoguan() @@ -244,7 +244,7 @@ function M:EventInit() if tex_round ~= nil then tex_round.text = '第 ' .. _room.curren_round .. ' 局' end - self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. ' 局 百息结算' + self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. ' 局 ' self._state.selectedIndex = 1 self:closeTipOnTuoguan() @@ -961,7 +961,7 @@ function M:OnFangziAction(...) if fz.type == RB_FZType.Wei or fz.type == RB_FZType.ChouWei then coroutine.start( function() - coroutine.wait(1.4) + coroutine.wait(1.2) info:UpdateFzList(player.fz_list, true, player.seat) end) else @@ -992,7 +992,7 @@ function M:OnFangziAction(...) --显示wei 的牌 coroutine.start( function() - coroutine.wait(1.4) + coroutine.wait(1.2) for i = 1, #fz.opcard do info:DeleteHandCard(fz.opcard[i]) end @@ -1004,7 +1004,7 @@ function M:OnFangziAction(...) coroutine.start( function() - coroutine.wait(1.4) + coroutine.wait(1.2) for i = 1, #fz.opcard do info:DeleteHandCard(fz.opcard[i]) end @@ -1056,7 +1056,7 @@ function M:OnFangziAction(...) coroutine.start( function() - coroutine.wait(0.8) + coroutine.wait(1.0) info:PlayingOutCardAnima() self:PlaySound(player.self_user.sex, 'F_GuoSao') effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'wei') @@ -1068,7 +1068,7 @@ function M:OnFangziAction(...) coroutine.start( function() - coroutine.wait(1.8) + coroutine.wait(2) effect:Dispose() end ) @@ -1268,7 +1268,7 @@ function M:ReloadRoom() if tex_round ~= nil then tex_round.text = '第 ' .. room.curren_round .. ' 局' end - self._view:GetChild('tex_round').text = '第 ' .. room.curren_round .. ' 局 百息结算' + self._view:GetChild('tex_round').text = '第 ' .. room.curren_round .. ' 局 ' end function M:PlayChatSound(sex, chat_index) diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua index fcf1a3fe..003a5695 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua @@ -58,7 +58,7 @@ function M:GetDes(sp) end function M:GetGameName() - return self.maxPlayers .. "人娄底放炮罚" + return "娄底放炮罚" end function M:GetGameJS() diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua index 3a5b4592..d9f1f755 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua @@ -223,7 +223,7 @@ function M:FillLiuJuItemData(room, data,item) qipai_list:RemoveChildrenToPool() - if data.throw_card ~= nil and #data.throw_card > 0 then + --[[ if data.throw_card ~= nil and #data.throw_card > 0 then _dipaiC.selectedIndex = 1 local hand_card = PendulumRule.GetHandCard(data.throw_card, 3) for k = 1, #hand_card do @@ -234,7 +234,7 @@ function M:FillLiuJuItemData(room, data,item) end else _dipaiC.selectedIndex = 0 - end + end]] for i = 1, #data.info_list do if data.info_list[i].seat == room.banker_seat then @@ -244,8 +244,10 @@ function M:FillLiuJuItemData(room, data,item) local btn_head = self._view:GetChild('btn_head') ImageLoad.Load(p.self_user.head_url, btn_head._iconObject) end - - if data.info_list[i].seat == room.banker_seat and #data.info_list[i].hand_card > 0 then + printlog("ddddd==========") + printlog(room.banker_seat) + printlog(data.info_list[i].seat) + if data.info_list[i].seat == room.banker_seat then local card_list --[[if #data.info_list == 2 then card_list = self._view:GetChild('card_list_2') @@ -257,6 +259,7 @@ function M:FillLiuJuItemData(room, data,item) end end]] card_list = self._view:GetChild('card_list_2') + card_list.visible =true card_list:RemoveChildrenToPool() @@ -265,15 +268,25 @@ function M:FillLiuJuItemData(room, data,item) local fztype = data.info_list[i].opCardList[k].type if fztype == RB_FZType.Kan then local cards = card_list:AddItemFromPool() - cards:GetController('c1').selectedIndex = 2 + cards:GetController('c1').selectedIndex = 1 cards:GetChild('card_type').text = '坎' cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi for j = 1, 3 do cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card1) end - elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then + + elseif fztype == RB_FZType.Peng then local cards = card_list:AddItemFromPool() cards:GetController('c1').selectedIndex = 2 + cards:GetChild('card_type').text = '碰' + cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi + for j = 1, 3 do + cards:GetChild('card_' .. j).icon = + self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card1) + end + elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then + local cards = card_list:AddItemFromPool() + cards:GetController('c1').selectedIndex = 1 cards:GetChild('card_type').text = '畏' cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi for j = 1, 3 do @@ -313,8 +326,8 @@ function M:FillLiuJuItemData(room, data,item) else local cards = card_list:AddItemFromPool() - cards:GetController('c1').selectedIndex = 0 - cards:GetChild('card_type').text = '将' + cards:GetController('c1').selectedIndex = 1 + cards:GetChild('card_type').text = '将' cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi cards:GetChild('card_1').icon = self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card1) @@ -324,7 +337,7 @@ function M:FillLiuJuItemData(room, data,item) end local hand_card = {} - if #data.info_list[i].hand_card>2 then + if #data.info_list[i].hand_card>=2 then hand_card = PendulumRule.GetHandCard(data.info_list[i].hand_card, 3) for k = 1, #hand_card do local cards = card_list:AddItemFromPool() @@ -339,7 +352,7 @@ function M:FillLiuJuItemData(room, data,item) hand_card = data.info_list[i].hand_card local item = card_list:AddItemFromPool() - item:GetController('c1').selectedIndex = 2 + item:GetController('c1').selectedIndex = 1 for j = 1, #hand_card do item:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/202_', hand_card[j]) end @@ -444,7 +457,7 @@ function M:FillLiuJuItemData(room, data,item) end else local cards = card_list:AddItemFromPool() - cards:GetController('c1').selectedIndex = 0 + cards:GetController('c1').selectedIndex = 1 cards:GetChild('card_type').text = '将' cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi cards:GetChild('card_1').icon = diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerCardInfoView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerCardInfoView.lua index d0c0e6ce..aa0ec7b0 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerCardInfoView.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerCardInfoView.lua @@ -15,8 +15,8 @@ end function M:UpdateFzList( fz_list ,ispaly,seat) - print("lingmeng UpdateFzList") - pt(fz_list) + -- print("lingmeng UpdateFzList") + -- pt(fz_list) self._area_fz_list:RemoveChildren(0,-1,true) for i = 1,#fz_list do local fzitem = nil diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerSelfCardInfoView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerSelfCardInfoView.lua index d23c6cd3..a7e80fba 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerSelfCardInfoView.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/PlayerSelfCardInfoView.lua @@ -145,9 +145,9 @@ function M:__OnDragEnd(context) end local MoveCardindex = 0 -- local MoveCardY = 0 - print("lingmeng end", button.y, MoveCard, button.y > -380, - button.x + button.width / 2 > card.old_postion.x and - button.x + button.width / 2 < (card.old_postion.x + button.width) and button.y > -380) + -- print("lingmeng end", button.y, MoveCard, button.y > -380, + -- button.x + button.width / 2 > card.old_postion.x and + -- button.x + button.width / 2 < (card.old_postion.x + button.width) and button.y > -380) if button.x + button.width / 2 > card.old_postion.x and button.x + button.width / 2 < (card.old_postion.x + button.width) and button.y > -380 then if #CountCards[card.index_X] > 1 then for i = 1, #CountCards[card.index_X] do @@ -186,7 +186,7 @@ function M:__OnDragEnd(context) end end end - print("lingmeng end", MoveCard, MoveCardindex) + -- print("lingmeng end", MoveCard, MoveCardindex) if MoveCard == true and MoveCardindex == 0 then local num = 0 for i = 1, #self.card_list do @@ -407,7 +407,8 @@ function M:playAnim(fzitem, fzcards, size, i, ispaly) else fzitem:AddChild(fzcards) end - self._area_fz_list:AddChild(fzitem) + self._area_fz_list:AddChildAt(fzitem,0) + end --出牌提示动画 diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPMainView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPMainView.lua index 641f8413..dc6411eb 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPMainView.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPMainView.lua @@ -27,7 +27,7 @@ function M:InitView(url, isdisplay, open_social, change_card_size, qihu) end if self._room.score_times ~= nil and self._room.score_times > 0 then self._view:GetChild('di_text').text = - self._room.room_config:GetGameName() .. ' ' .. qihu .. '胡息起 ' .. self._room.score_times .. '倍' + self._room.room_config:GetGameName() .. self._room.score_times .. '倍' else self._view:GetChild('di_text').text = self._room.room_config:GetGameName() .. ' ' .. qihu .. '胡息1起' end @@ -301,7 +301,7 @@ end -- 设置 更新 手牌大小 function M:UpdateCardSize(index) - print("lingmeng UpdateCardSize") + -- print("lingmeng UpdateCardSize") if index == 0 then self._room.change_card_size = 1.3 elseif index == 1 then diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPPlayerSelfCardInfoView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPPlayerSelfCardInfoView.lua index 0295d853..0163361e 100644 --- a/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPPlayerSelfCardInfoView.lua +++ b/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPPlayerSelfCardInfoView.lua @@ -211,7 +211,7 @@ function M:InitHandCard(isPlayAni, index) for j = 1, #pokerList[i] do local card_code = pokerList[i][j] local btn_card = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Btn_Card') - print("lingmeng", self._room.change_card_display, card_code) + -- print("lingmeng", self._room.change_card_display, card_code) btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/201_', card_code) btn_card:GetChild('icon'):SetScale(self:getCardSize(), self:getCardSize()) btn_card:GetChild('n6'):SetScale(self:getCardSize(), self:getCardSize()) @@ -260,7 +260,7 @@ function M:InitHandCard(isPlayAni, index) for j = 1, #pokerList[i] do local card_code = pokerList[i][j] local btn_card = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Btn_Card') - print("lingmeng", self._room.change_card_display, card_code) + -- print("lingmeng", self._room.change_card_display, card_code) btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/201_', card_code) btn_card:GetChild('icon'):SetScale(self:getCardSize(), self:getCardSize()) @@ -382,7 +382,7 @@ function M:onTouchMove(context) local card = button.data local xy = self._area_handcard_list:GlobalToLocal(Vector2.New(context.inputEvent.x, context.inputEvent.y)) button.xy = xy - card.touch_pos - print("lingmeng", xy.x, xy.y) + -- print("lingmeng", xy.x, xy.y) end --出牌提示动画 @@ -490,7 +490,7 @@ end --更新手牌大小 function M:UpdateCardSize() - print("lingmeng UpdateCardSize") + -- print("lingmeng UpdateCardSize") local CountCards = {} for i = 1, #self.card_list do CountCards[self.card_list[i].index_X] = @@ -517,7 +517,7 @@ end -- 结束 拖拽事件 -- 根据牌结束点的位置 判断是出牌还是调整位置 button.xy 和 牌的xy比较 function M:__OnDragEnd(context) - print("lingmeng buyaojina __OnDragEnd") + -- print("lingmeng buyaojina __OnDragEnd") if DataManager.CurrenRoom == nil or DataManager.CurrenRoom.self_player == nil then return end @@ -792,6 +792,7 @@ end function M:UpdateFzList(fz_list) --printlog("UpdateFzList area_fz_list1") self._area_fz_list:RemoveChildren(0, -1, true) + for i = 1, #fz_list do local fzitem = nil if fz_list[i].type ~= RB_FZType.Kan then diff --git a/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_atlas0.png b/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_atlas0.png index e078dbbb..85f03107 100644 Binary files a/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_atlas0.png and b/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_atlas0.png differ diff --git a/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_fui.bytes b/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_fui.bytes index f8239774..8d46756e 100644 Binary files a/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_fui.bytes and b/qyq_new_unity/Assets/ART/base/main_majiang/ui/MajiangCard3d_fui.bytes differ diff --git a/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_atlas0.png b/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_atlas0.png index ab4b6654..78256ea4 100644 Binary files a/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_atlas0.png and b/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_atlas0.png differ diff --git a/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_fui.bytes b/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_fui.bytes index 56e7d1a4..b821e7f0 100644 Binary files a/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_fui.bytes and b/qyq_new_unity/Assets/ART/extend/zipai/weimaque/ui/Extend_Poker_WeiMaQue_fui.bytes differ diff --git a/wb_new_ui/.objs/metas/9n9stu2e/prgzf0.info b/wb_new_ui/.objs/metas/9n9stu2e/prgzf0.info index d38f1ada..1ccc76b4 100644 --- a/wb_new_ui/.objs/metas/9n9stu2e/prgzf0.info +++ b/wb_new_ui/.objs/metas/9n9stu2e/prgzf0.info @@ -1,8 +1,5 @@ { "objectStatus": { - "n13": { - "collapsed": true - }, "n112_rnez": { "collapsed": true }, diff --git a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info new file mode 100644 index 00000000..e5fef7f5 --- /dev/null +++ b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i80.info @@ -0,0 +1,34 @@ +{ + "objectStatus": { + "n112_l7wn": { + "hidden": true + }, + "n115_l7wn": { + "hidden": true + }, + "n114_l7wn": { + "hidden": true + }, + "n113_l7wn": { + "hidden": true + }, + "n116_l7wn": { + "hidden": true + }, + "n119_l7wn": { + "hidden": true + }, + "n118_l7wn": { + "hidden": true + }, + "n117_l7wn": { + "hidden": true + }, + "n111_l7wn": { + "hidden": true + }, + "n110_l7wn": { + "hidden": true + } + } +} \ No newline at end of file diff --git a/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info new file mode 100644 index 00000000..92a13c08 --- /dev/null +++ b/wb_new_ui/.objs/metas/m7iejg46/l7wn7i82.info @@ -0,0 +1,7 @@ +{ + "objectStatus": { + "n92_omkm": { + "collapsed": true + } + } +} \ No newline at end of file diff --git a/wb_new_ui/.objs/metas/v6yvqp7w/f55qwa.info b/wb_new_ui/.objs/metas/v6yvqp7w/f55qwa.info index 1cefcc55..3d00a0c3 100644 --- a/wb_new_ui/.objs/metas/v6yvqp7w/f55qwa.info +++ b/wb_new_ui/.objs/metas/v6yvqp7w/f55qwa.info @@ -10,9 +10,6 @@ "hidden": true, "collapsed": true }, - "n154_r1mo": { - "collapsed": true - }, "n152_8th3": { "hidden": true }, diff --git a/wb_new_ui/assets/Common/font/images/btn_keyboard/bg_05.png b/wb_new_ui/assets/Common/font/images/btn_keyboard/bg_05.png index a5a70f00..77ef4b00 100644 Binary files a/wb_new_ui/assets/Common/font/images/btn_keyboard/bg_05.png and b/wb_new_ui/assets/Common/font/images/btn_keyboard/bg_05.png differ diff --git a/wb_new_ui/assets/Common/font/images/head/Head0.png b/wb_new_ui/assets/Common/font/images/head/Head0.png index 07e87b29..1eb091b8 100644 Binary files a/wb_new_ui/assets/Common/font/images/head/Head0.png and b/wb_new_ui/assets/Common/font/images/head/Head0.png differ diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml index 5f84694d..24ca5f7c 100644 --- a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml +++ b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml @@ -149,7 +149,7 @@ - + diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RightPanel.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RightPanel.xml index d2f8afa5..5a31d98d 100644 --- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RightPanel.xml +++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RightPanel.xml @@ -6,19 +6,22 @@ - + - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml index 78e9c2c2..8eb23e53 100644 --- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml +++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml @@ -1,8 +1,8 @@ - + - + @@ -33,11 +33,11 @@ - + - + @@ -46,7 +46,7 @@ - + @@ -91,20 +91,25 @@ - + - - + - + + + + + + + - - - + + + @@ -137,7 +142,7 @@ - + @@ -147,29 +152,19 @@