Merge branch 'master' into lps/fonts.2025.7.4

# Conflicts:
#	wb_unity_pro/Assets/ART/base/Family/ui/Family_fui.bytes
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_8.png
#	wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes
master
DESKTOP-7R8JEQQ\k 2025-07-04 02:12:45 +08:00
commit 7e73151fd8
50 changed files with 236 additions and 213 deletions

View File

@ -99,15 +99,6 @@ function M:CreatePlay()
end
function M:initePlayInfo()
--------测试
PlayInfo[1].playListInfo[10] = {
playeId = 10,
playName = "长沙麻将"
}
PlayInfo[1].playListInfo[86] = {
playeId = 86,
playName = "南城麻将"
}
local games = DataManager.SelfUser.games
for i = 1, #games do
if PlayInfo[1].playListInfo[games[i].game_id] then

View File

@ -5,6 +5,7 @@ function PlayEditView.New()
setmetatable(PlayEditView, { __index = BaseWindow })
local inst = setmetatable({}, { __index = PlayEditView })
inst._animation = false
inst._full = true
inst._full_offset = false
inst._anim_pop = 0
BaseWindow.init(inst, "ui://Family/com_playEdit")
@ -25,7 +26,6 @@ function PlayEditView:Refalsh(groupId)
end
function PlayEditView:Init()
self.btn_quit = self._view:GetChild("btn_close")
self.list_gamePlay = self._view:GetChild('list_gamePlay')
@ -70,22 +70,23 @@ function PlayEditView:Init()
ViewUtil.ShowBannerOnScreenCenter(msg)
return
end
--self:UpdateFamilyRoom(fgCtr, self.groupId)
self:Refalsh(self.groupId)
end)
end)
end)
obj:GetChild("btn_edit").onClick:Set(function()
local tem = GroupGameSettingView.new(self.blur_view, self.groupId, pId, nil, function(play)
local group = DataManager.groups:get(self.groupId)
group:addPlay(play)
-- self:FillView()
--self:UpdateFamilyRoom(fgCtr, self.groupId)
self:Refalsh(self.groupId)
printlog("刷新玩法===>>>>")
group.update_play = true
end)
local tem = GroupGameSettingView.new(self.blur_view, self.groupId, pId, playList[index],
function(play)
local group = DataManager.groups:get(self.groupId)
group:addPlay(play)
-- self:FillView()
--self:UpdateFamilyRoom(fgCtr, self.groupId)
self:Refalsh(self.groupId)
printlog("刷新玩法===>>>>")
group.update_play = true
end)
tem:Show()
end)
end

View File

@ -4,14 +4,14 @@ local GameListView = {}
local M = GameListView
local liantiaoBool = false
function GameListView.new(view, index, room_config, callback, isHall)
function GameListView.new(view, index, page, room_config, callback, isHall)
local self = {}
pt("lingmeng GameListView", view, index, page, room_config, callback, isHall)
setmetatable(self, { __index = M })
self._view = view
self._modeMap = {}
self.selectedIndex = index
self.selectedPage = page
self.room_config = room_config
self.IsHallGame = isHall or false
self._callback = callback
@ -30,15 +30,24 @@ function M:init()
end
end)
if liantiaoBool then
self.create_panel = self._view:GetChild("create_panel")
self.lst_play = self._view:GetChild("lst_play")
self:__sysinit()
else
self.create_panel = self._view:GetChild("list_playPanel")
self.lst_play = self._view:GetChild("list_playName")
self:__sysinit()
self.tempGame = { {}, {}, {} }
local games = DataManager.SelfUser.games
for k, v in ipairs(games) do
if v.game_id == 201 and self.IsHallGame == true then
else
table.insert(self.tempGame[v.gameType], v)
end
end
self.create_panel = self._view:GetChild("list_playPanel")
self.lst_play = self._view:GetChild("list_playName")
self._view:GetChild('list_gameName').selectedIndex = self.selectedPage - 1
self._view:GetChild('list_gameName').onClickItem:Set(function(context)
self.selectedIndex = #self.tempGame[context.sender.selectedIndex + 1]
self:__sysinit(context.sender.selectedIndex + 1)
end)
self:__sysinit(self.selectedPage)
end
function M:__fill_panel()
@ -51,8 +60,8 @@ function M:__fill_panel()
local mode = mode_data.data
if mode and not mode._config then
mode:FillData()
if self.room_config and self.room_config.game_id == mode.game_data.game_id then
mode:LoadConfigData(self.room_config)
if self.room_config and self.room_config.gameId == mode.game_data.game_id then
mode:LoadConfigData(json.decode(self.room_config.config))
end
end
--local ctr_play_list = mode._config:GetController("play_list")
@ -71,36 +80,26 @@ function M:__fill_panel()
--mode._config:AddRelation(create_panel, RelationType.Size)
end
function M:__sysinit()
local games = DataManager.SelfUser.games
local tempGame = {}
for k, v in ipairs(games) do
if v.game_id == 201 and self.IsHallGame == true then
else
table.insert(tempGame, v)
end
end
function M:__sysinit(typeNum)
local create_panel = self.create_panel
local lst_game = self.lst_play
for i = 1, #tempGame do
local tem = tempGame[i]
local item = lst_game:AddItemFromPool()
item.text = tem.name
local config = ExtendManager.GetExtendConfig(tem.game_id)
config.game_data = tem
local mode = config:GetGameInfo()
item.icon = mode:GetIconUrl()
lst_game:RemoveChildren()
create_panel:RemoveChildren()
for i = 1, #self.tempGame[typeNum] do
local tem = self.tempGame[typeNum][i]
local item = lst_game:AddItemFromPool()
item.text = tem.name
local config = ExtendManager.GetExtendConfig(tem.game_id)
config.game_data = tem
local mode = config:GetGameInfo()
item:GetChild('icon1').url, item:GetChild('icon2').url = mode:GetIconUrl()
local mode_data = {}
mode_data.type = 0
mode_data.data = mode
mode.game_data = tem
self._modeMap[i] = mode_data
local mode_data = {}
mode_data.type = 0
mode_data.data = mode
mode.game_data = tem
self._modeMap[i] = mode_data
end
lst_game.selectedIndex = self.selectedIndex - 1
@ -147,8 +146,12 @@ end
function M:GetModeData()
local index = self.selectedIndex
local mode_data = self._modeMap[index]
return mode_data
if index == 0 then
return "没选选择游戏"
else
local mode_data = self._modeMap[index]
return mode_data
end
end
function M:__dispose_mode()

View File

@ -26,7 +26,8 @@ function GroupGameSettingView.new(blur_view, gid, pid, room_config, callback)
self.play = DataManager.groups:get(gid):getPlay(pid)
self.table_color = self.play and self.play.deskId or 0
if room_config then
self.room_config = json.decode(room_config)
self.room_config = room_config
self.room_config_config = json.decode(room_config.config)
end
@ -51,7 +52,12 @@ function M:init(url)
-- return
end
local game_data = self.gl_view:GetModeData().data.game_data
local mod_data = self.gl_view:GetModeData()
if type(mod_data) == "string" then
ViewUtil.ErrorTip(nil, mod_data)
return
end
local game_data = mod_data.data.game_data
if not game_data then
ViewUtil.ErrorTip(nil, "请先下载游戏")
return
@ -72,6 +78,7 @@ end
-- 显示游戏列表
function M:FillGameData()
local index = 1
local page = 1
-- 显示所有游戏
local games = DataManager.SelfUser.games
local lst_game = self._view:GetChild("lst_game")
@ -79,13 +86,19 @@ function M:FillGameData()
printlog("jefe all games")
pt(games)
-- n65.visible = false
for i = 1, #games do
local game = games[i]
if (self.room_config and self.room_config.game_id == game.game_id) or i == 1 then
index = i
if self.room_config then
page = self.room_config.gameType
for k, v in ipairs(games) do
if self.room_config.gameType == v.gameType then
if self.room_config.gameId == v.game_id then
break
else
index = index + 1
end
end
end
end
self.gl_view = GameListView.new(lst_game, index, self.room_config)
self.gl_view = GameListView.new(lst_game, index, page, self.room_config)
local btn_close = lst_game:GetChild("btn_close")
btn_close.onClick:Set(function()
self:Destroy()

View File

@ -90,7 +90,7 @@ end
local _icon_url = "ui://Info_MJ_FuZhou/icon"
function M:GetIconUrl()
return _icon_url
return "ui://Lobby/fuzhoumajiang2", "ui://Lobby/fuzhoumajiang1"
end
local _icon_url1 = "ui://Info_MJ_FuZhou/icon1"

View File

@ -90,7 +90,7 @@ end
local _icon_url = "ui://Info_MJ_JinXi/icon"
function M:GetIconUrl()
return _icon_url
return "ui://Lobby/jinximajiang2", "ui://Lobby/jinximajiang1"
end
local _icon_url1 = "ui://Info_MJ_JinXi/icon1"

View File

@ -85,7 +85,7 @@ end
local _icon_url = "ui://Info_MJ_LiChuan/icon"
function M:GetIconUrl()
return _icon_url
return "ui://Lobby/liquanmajiang2", "ui://Lobby/liquanmajiang1"
end
local _icon_url1 = "ui://Info_MJ_LiChuan/icon1"
@ -141,35 +141,14 @@ function M:SelectedConfigData()
end
function M:LoadConfigData(data)
--printlog("加载房间配置=========>>>")
--pt(data)
printlog("加载房间配置=========>>>")
pt(data)
local _config = self._config
_config:GetController("round").selectedIndex = data.opt - 1
_config:GetController("play_list").selectedIndex = data.maxPlayers - 2
_config:GetController("peopleNum").selectedIndex = data.maxPlayers - 2
_config:GetController("fengding").selectedIndex = data.fengding
_config:GetController("wanfa").selectedIndex = data.wanfa
_config:GetChild("btn_qidui").selected = data.qiduijiafan
_config:GetChild("btn_shoudailong").selected = data.shoudailongjiafan
_config:GetChild("btn_loudilong").selected = data.loudilongjiafan
_config:GetChild("btn_bunengchi").selected = data.bunengchi
_config:GetChild("btn_doudizhu").selected = data.doudizhu
_config:GetChild("btn_doudizhufanbei").selected = data.doudizhufanbei
if _config:GetChild("xipai") then
_config:GetChild("xipai").selected = data.xi_pai
end
if oldGameVersion == 2 then
self.xipaiValueText.text = data.xi_pai_score / 1000
self.xipaiValue = data.xi_pai_score / 1000
self.anchouValueText.text = data.an_chou_score / 1000
self.anchouValue = data.an_chou_score / 1000
end
_config:GetController("ZiMo").selectedIndex = data.zimo
_config:GetController("jingbibo").selectedIndex = 1 - data.jingbibo
end
function M:LoadConfigToDetail(data)

View File

@ -355,7 +355,7 @@ function M:EventInit()
local index = self:GetPos(win_seat)
local info = self._player_card_info[index]
self:RemoveCursor()
info:UpdateHandCard(false, true)
info:UpdateHandCard(false, false)
local obj_win_card = UIPackage.CreateObjectFromURL("ui://Main_Majiang/Btn_Card_jiangxi")
obj_win_card.icon = "ui://Main_Majiang/202_" .. win_card

View File

@ -89,7 +89,7 @@ end
local _icon_url = "ui://Info_MJ_NanCheng/icon"
function M:GetIconUrl()
return _icon_url
return "ui://Lobby/nanchengmajiang2", "ui://Lobby/nanchengmajiang1"
end
local _icon_url1 = "ui://Info_MJ_NanCheng/icon1"

View File

@ -53,7 +53,7 @@ end
local _icon_url = "ui://Info_Poker_RunFastNew/icon"
function M:GetIconUrl()
return _icon_url
return "ui://Lobby/paodekuai2", "ui://Lobby/paodekuai1"
end
local _icon_url1 = "ui://Info_Poker_RunFastNew/icon1"
@ -68,7 +68,7 @@ end
function M:LoadConfigData(data)
local _config = self._config
_config:GetController("round").selectedIndex = data.opt - 1
_config:GetController("rule").selectedIndex = data.rule == 2 and 0 or 1
_config:GetController("play_list").selectedIndex = data.leaf - 1
_config:GetController("willBeOut").selectedIndex = data.willBeOut - 1
@ -81,6 +81,17 @@ function M:LoadConfigData(data)
_config:GetController("demolition").selectedIndex = data.demolition
_config:GetController("fangzuobi").selectedIndex = data.fangzuobi
_config:GetController("round").selectedIndex = data.opt - 1
_config:GetController("handcard").selectedIndex = 2 - data.leaf
_config:GetController("peopleNum").selectedIndex = 3 - data.maxPlayers
local showCardNum = _config:GetController("showCardNum").selectedIndex
local wanfa1_1 = _config:GetController("wanfa1_1").selectedIndex
local wanfa1_2 = _config:GetController("wanfa1_2").selectedIndex
local wanfa1_3 = _config:GetController("wanfa1_3").selectedIndex
local wanfa1_4 = _config:GetController("wanfa1_4").selectedIndex
local wanfa1_5 = _config:GetController("wanfa1_5").selectedIndex
local wanfa2_1 = _config:GetController("wanfa2_1").selectedIndex
local sandaidan = data.sandaidan
if sandaidan ~= nil and sandaidan == 1 then
_config:GetChild("sandaidan").selected = true

View File

@ -64,8 +64,7 @@ function M:GetGameRule()
end
function M:GetIconUrl()
return "ui://Extend_Poker_RunFastNew/icon"
--
return "ui://Lobby/paodekuai2", "ui://Lobby/paodekuai1"
end
function M:FillRoomConfig(room, _config)

View File

@ -36,26 +36,33 @@
<graph id="n51_slrk" name="n51" xy="876,303" size="6,79" group="n57_slrk" type="rect" lineColor="#ffffffff"/>
<graph id="n52_slrk" name="n52" xy="1968,303" size="6,79" group="n57_slrk" type="rect" lineColor="#ffffffff"/>
<graph id="n53_slrk" name="n53" xy="2252,303" size="6,79" group="n57_slrk" type="rect" lineColor="#ffffffff"/>
<text id="n47_slrk" name="n47" xy="204,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="游戏">
<text id="n47_slrk" name="n47" xy="206,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="游戏">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<text id="n48_slrk" name="n48" xy="440,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="时间">
<text id="n48_slrk" name="n48" xy="442,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="时间">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<text id="n49_slrk" name="n49" xy="651,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="房号">
<text id="n49_slrk" name="n49" xy="653,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="房号">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<text id="n54_slrk" name="n54" xy="2076,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="备注">
<text id="n54_slrk" name="n54" xy="2078,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="备注">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<text id="n55_slrk" name="n55" xy="2288,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="回放">
<text id="n55_slrk" name="n55" xy="2288,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="回放">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<text id="n56_slrk" name="n56" xy="1410,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="结算">
<text id="n56_slrk" name="n56" xy="1412,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="结算">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<text id="n58_slrk" name="n58" xy="782,311" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="房卡">
<text id="n58_slrk" name="n58" xy="786,314" size="88,56" group="n57_slrk" font="ui://27vd145bg2mo7ij0" fontSize="42" color="#ffffff" text="房卡">
<relation target="" sidePair="center-center"/>
<relation target="n20_slrk" sidePair="middle-middle"/>
</text>
<component id="n63_ghku" name="combBox_time" src="ghku7d4d" fileName="Record/Component/combBox_time.xml" xy="1915,222" group="n57_slrk">
<ComboBox visibleItemCount="10"/>

View File

@ -18,10 +18,10 @@
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局房卡*2">
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,10" group="n48_pzuc">
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,10" group="n48_pzuc">
<Button controller="round" page="1"/>
</component>
<text id="n46_pzuc" name="n46" xy="1278,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n48_pzuc" visible="false"/>
@ -35,14 +35,14 @@
<text id="n51_pzuc" name="n51" xy="474,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局房卡*6">
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,103" group="n55_pzuc">
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n55_pzuc">
<Button controller="round" page="3"/>
</component>
<text id="n53_pzuc" name="n53" xy="1278,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n55_pzuc"/>
<group id="n55_pzuc" name="roundNum" xy="195,93" size="1515,93" advanced="true"/>
<group id="n55_pzuc" name="roundNum" xy="195,93" size="1519,93" advanced="true"/>
<text id="n56_pzuc" name="title" xy="220,186" size="134,86" group="n64_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
<relation target="" sidePair="right-right"/>
</text>
@ -75,10 +75,10 @@
<text id="n67_pzuc" name="n67" xy="475,286" size="376,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="可点炮,可自摸">
<gearColor controller="ZiMo" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1189,289" group="n71_pzuc">
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,289" group="n71_pzuc">
<Button controller="ZiMo" page="1"/>
</component>
<text id="n69_pzuc" name="n69" xy="1279,286" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<text id="n69_pzuc" name="n69" xy="1329,286" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<gearColor controller="ZiMo" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n70_pzuc" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="196,369" group="n71_pzuc"/>
@ -113,10 +113,10 @@
<text id="n176_id5t" name="n176" xy="474,472" size="226,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="封顶20跑">
<gearColor controller="FengDing" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,475" group="n180_id5t">
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,475" group="n180_id5t">
<Button controller="FengDing" page="1"/>
</component>
<text id="n178_id5t" name="n178" xy="1278,472" size="163,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不封顶">
<text id="n178_id5t" name="n178" xy="1328,472" size="163,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不封顶">
<gearColor controller="FengDing" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n179_id5t" name="n179" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,555" group="n180_id5t"/>
@ -130,10 +130,10 @@
<text id="n116_tr59" name="n116" xy="474,565" size="270,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="天地胡玩法">
<gearColor controller="TianDiHu" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n117_tr59" name="n117" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,568" group="n120_tr59">
<component id="n117_tr59" name="n117" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,568" group="n120_tr59">
<Button controller="TianDiHu" page="1"/>
</component>
<text id="n118_tr59" name="n118" xy="1278,565" size="270,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="没有天地胡">
<text id="n118_tr59" name="n118" xy="1328,565" size="270,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="没有天地胡">
<gearColor controller="TianDiHu" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n119_tr59" name="n119" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,648" group="n120_tr59"/>
@ -157,10 +157,10 @@
<gearDisplay controller="ZiKeChengShun" pages=""/>
<gearColor controller="ZiKeChengShun" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n124_tr59" name="n124" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,755" group="n127_tr59">
<component id="n124_tr59" name="n124" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,755" group="n127_tr59">
<Button controller="ZiKeChengShun" page="1"/>
</component>
<text id="n125_tr59" name="n125" xy="1278,752" size="270,72" group="n127_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="字不可成顺">
<text id="n125_tr59" name="n125" xy="1328,752" size="270,72" group="n127_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="字不可成顺">
<gearColor controller="ZiKeChengShun" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n126_tr59" name="n126" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,835" group="n127_tr59"/>
@ -174,10 +174,10 @@
<text id="n183_ckvb" name="n183" xy="474,845" size="217,72" group="n187_ckvb" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="庄家翻倍">
<gearColor controller="ZhuangFenFanBei" pages="1" values="#450f05,#000000" default="#51933c,#000000"/>
</text>
<component id="n184_ckvb" name="n184" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,848" group="n187_ckvb">
<component id="n184_ckvb" name="n184" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,848" group="n187_ckvb">
<Button controller="ZhuangFenFanBei" page="1"/>
</component>
<text id="n185_ckvb" name="n185" xy="1278,845" size="270,72" group="n187_ckvb" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="庄家不翻倍">
<text id="n185_ckvb" name="n185" xy="1328,845" size="270,72" group="n187_ckvb" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="庄家不翻倍">
<gearColor controller="ZhuangFenFanBei" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n186_ckvb" name="n186" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,928" group="n187_ckvb"/>

View File

@ -17,13 +17,13 @@
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局房卡*2">
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,10" group="n48_pzuc">
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,10" group="n48_pzuc">
<Button controller="round" page="1"/>
</component>
<text id="n46_pzuc" name="n46" xy="1278,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<group id="n48_pzuc" name="roundNum" xy="220,0" size="1413,86" advanced="true"/>
<group id="n48_pzuc" name="roundNum" xy="220,0" size="1463,86" advanced="true"/>
<text id="n49_pzuc" name="title" xy="354,86" size="0,0" group="n55_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="">
<relation target="" sidePair="right-right"/>
</text>
@ -33,14 +33,14 @@
<text id="n51_pzuc" name="n51" xy="474,93" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局房卡*6">
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,96" group="n55_pzuc">
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,96" group="n55_pzuc">
<Button controller="round" page="3"/>
</component>
<text id="n53_pzuc" name="n53" xy="1278,93" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<text id="n53_pzuc" name="n53" xy="1328,93" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,176" group="n55_pzuc"/>
<group id="n55_pzuc" name="roundNum" xy="195,86" size="1515,93" advanced="true"/>
<group id="n55_pzuc" name="roundNum" xy="195,86" size="1519,93" advanced="true"/>
<text id="n56_pzuc" name="title" xy="220,179" size="134,86" group="n64_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
<relation target="" sidePair="right-right"/>
</text>
@ -73,13 +73,13 @@
<text id="n176_id5t" name="n176" xy="474,279" size="226,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="封顶20跑">
<gearColor controller="FengDing" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,282" group="n180_id5t">
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,282" group="n180_id5t">
<Button controller="FengDing" page="1"/>
</component>
<text id="n178_id5t" name="n178" xy="1278,279" size="217,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="封顶十炮">
<text id="n178_id5t" name="n178" xy="1328,279" size="217,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="封顶十炮">
<gearColor controller="FengDing" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<group id="n180_id5t" name="FendDing" xy="220,272" size="1275,86" advanced="true"/>
<group id="n180_id5t" name="FendDing" xy="220,272" size="1325,86" advanced="true"/>
<component id="n182_nee3" name="n182" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,375" group="n187_nee3">
<Button controller="FengDing" page="2"/>
</component>
@ -133,10 +133,10 @@
<text id="n116_tr59" name="n116" xy="474,652" size="270,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="三精算奖马">
<gearColor controller="SanJingChengMa" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n117_tr59" name="n117" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,655" group="n120_tr59">
<component id="n117_tr59" name="n117" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,655" group="n120_tr59">
<Button controller="SanJingChengMa" page="1"/>
</component>
<text id="n118_tr59" name="n118" xy="1278,652" size="323,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三精不算奖马">
<text id="n118_tr59" name="n118" xy="1328,652" size="323,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三精不算奖马">
<gearColor controller="SanJingChengMa" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n119_tr59" name="n119" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,735" group="n120_tr59"/>
@ -151,10 +151,10 @@
<gearDisplay controller="ZiKeChengShun" pages=""/>
<gearColor controller="ZiKeChengShun" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n124_tr59" name="n124" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,748" group="n127_tr59">
<component id="n124_tr59" name="n124" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,748" group="n127_tr59">
<Button controller="ZiKeChengShun" page="1"/>
</component>
<text id="n125_tr59" name="n125" xy="1278,745" size="270,72" group="n127_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="字不可成顺">
<text id="n125_tr59" name="n125" xy="1328,745" size="270,72" group="n127_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="字不可成顺">
<gearColor controller="ZiKeChengShun" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n126_tr59" name="n126" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,828" group="n127_tr59"/>
@ -168,10 +168,10 @@
<text id="n67_pzuc" name="n67" xy="475,838" size="376,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="可点炮,可自摸">
<gearColor controller="ZiMo" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1189,841" group="n71_pzuc">
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,841" group="n71_pzuc">
<Button controller="ZiMo" page="1"/>
</component>
<text id="n69_pzuc" name="n69" xy="1279,838" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<text id="n69_pzuc" name="n69" xy="1329,838" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<gearColor controller="ZiMo" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n70_pzuc" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="196,921" group="n71_pzuc"/>

View File

@ -8,19 +8,19 @@
<text id="n42_pzuc" name="title" xy="220,0" size="134,86" group="n48_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="局数">
<relation target="" sidePair="right-right"/>
</text>
<component id="n43_pzuc" name="n43" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n48_pzuc">
<component id="n43_pzuc" name="n43" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" size="66,66" group="n48_pzuc">
<Button checked="true" controller="round" page="0"/>
</component>
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局房卡*2">
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,10" group="n48_pzuc">
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,10" size="66,66" group="n48_pzuc">
<Button controller="round" page="1"/>
</component>
<text id="n46_pzuc" name="n46" xy="1278,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n48_pzuc" visible="false"/>
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" size="1515,3" group="n48_pzuc" visible="false"/>
<group id="n48_pzuc" name="roundNum" xy="195,0" size="1515,93" advanced="true"/>
<text id="n49_pzuc" name="title" xy="354,93" size="0,0" group="n55_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="">
<relation target="" sidePair="right-right"/>
@ -31,15 +31,15 @@
<text id="n51_pzuc" name="n51" xy="474,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局房卡*6">
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,103" group="n55_pzuc">
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n55_pzuc">
<Button controller="round" page="3"/>
</component>
<text id="n53_pzuc" name="n53" xy="1278,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n55_pzuc"/>
<group id="n55_pzuc" name="roundNum" xy="195,93" size="1515,93" advanced="true"/>
<text id="n56_pzuc" name="title" xy="220,186" size="134,86" group="n64_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
<group id="n55_pzuc" name="roundNum" xy="195,93" size="1519,93" advanced="true"/>
<text id="n56_pzuc" name="title" xy="220,186" size="134,86" group="n64_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" align="right" text="人数">
<relation target="" sidePair="right-right"/>
</text>
<component id="n57_pzuc" name="n57" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,196" group="n64_pzuc">
@ -62,7 +62,7 @@
</text>
<image id="n63_pzuc" name="n63" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,276" group="n64_pzuc"/>
<group id="n64_pzuc" name="peopleNum" xy="195,186" size="1515,93" advanced="true"/>
<text id="n65_pzuc" name="title" xy="92,280" size="264,86" group="n71_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="自摸设置">
<text id="n65_pzuc" name="title" xy="92,280" size="264,86" group="n71_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" align="right" text="自摸设置">
<relation target="" sidePair="right-right"/>
</text>
<component id="n66_pzuc" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="386,290" group="n71_pzuc">
@ -71,15 +71,15 @@
<text id="n67_pzuc" name="n67" xy="476,287" size="376,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="可点炮,可自摸">
<gearColor controller="ZiMo" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1190,290" group="n71_pzuc">
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1240,290" group="n71_pzuc">
<Button controller="ZiMo" page="1"/>
</component>
<text id="n69_pzuc" name="n69" xy="1280,287" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<text id="n69_pzuc" name="n69" xy="1330,287" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<gearColor controller="ZiMo" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n70_pzuc" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="197,370" group="n71_pzuc"/>
<group id="n71_pzuc" name="ZiMo" xy="92,280" size="1620,93" advanced="true"/>
<text id="n174_id5t" name="title" xy="155,372" size="199,86" group="n180_id5t" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="精必博">
<text id="n174_id5t" name="title" xy="155,372" size="199,86" group="n180_id5t" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" align="right" text="精必博">
<relation target="" sidePair="right-right"/>
</text>
<component id="n175_id5t" name="n175" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,382" group="n180_id5t">
@ -88,10 +88,10 @@
<text id="n176_id5t" name="n176" xy="474,379" size="217,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="有精必博">
<gearColor controller="jingbibo" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,382" group="n180_id5t">
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,382" group="n180_id5t">
<Button controller="jingbibo" page="1"/>
</component>
<text id="n178_id5t" name="n178" xy="1278,379" size="217,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="有精可胡">
<text id="n178_id5t" name="n178" xy="1328,379" size="217,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="有精可胡">
<gearColor controller="jingbibo" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n179_id5t" name="n179" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,462" group="n180_id5t"/>

View File

@ -18,10 +18,10 @@
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局房卡*2">
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,10" group="n48_pzuc">
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,10" group="n48_pzuc">
<Button controller="round" page="1"/>
</component>
<text id="n46_pzuc" name="n46" xy="1278,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<text id="n46_pzuc" name="n46" xy="1329,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局房卡*3">
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n48_pzuc" visible="false"/>
@ -35,14 +35,14 @@
<text id="n51_pzuc" name="n51" xy="474,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局房卡*6">
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,103" group="n55_pzuc">
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n55_pzuc">
<Button controller="round" page="3"/>
</component>
<text id="n53_pzuc" name="n53" xy="1278,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局房卡*9">
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n55_pzuc"/>
<group id="n55_pzuc" name="roundNum" xy="195,93" size="1515,93" advanced="true"/>
<group id="n55_pzuc" name="roundNum" xy="195,93" size="1519,93" advanced="true"/>
<text id="n56_pzuc" name="title" xy="220,186" size="134,86" group="n64_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
<relation target="" sidePair="right-right"/>
</text>
@ -66,23 +66,23 @@
</text>
<image id="n63_pzuc" name="n63" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,276" group="n64_pzuc"/>
<group id="n64_pzuc" name="peopleNum" xy="195,186" size="1515,93" advanced="true"/>
<text id="n65_pzuc" name="title" xy="195,279" size="264,86" group="n71_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="自摸设置">
<text id="n65_pzuc" name="title" xy="95,279" size="264,86" group="n71_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="自摸设置">
<relation target="" sidePair="right-right"/>
</text>
<component id="n66_pzuc" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="489,289" group="n71_pzuc">
<component id="n66_pzuc" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="389,289" group="n71_pzuc">
<Button checked="true" controller="ZiMo" page="0"/>
</component>
<text id="n67_pzuc" name="n67" xy="579,286" size="376,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="可点炮,可自摸">
<text id="n67_pzuc" name="n67" xy="479,286" size="376,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="可点炮,可自摸">
<gearColor controller="ZiMo" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1293,289" group="n71_pzuc">
<component id="n68_pzuc" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1243,289" group="n71_pzuc">
<Button controller="ZiMo" page="1"/>
</component>
<text id="n69_pzuc" name="n69" xy="1383,286" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<text id="n69_pzuc" name="n69" xy="1333,286" size="217,72" group="n71_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="必须自摸">
<gearColor controller="ZiMo" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n70_pzuc" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="300,369" group="n71_pzuc"/>
<group id="n71_pzuc" name="ZiMo" xy="195,279" size="1620,93" advanced="true"/>
<group id="n71_pzuc" name="ZiMo" xy="95,279" size="1720,93" advanced="true"/>
<text id="n72_pzuc" name="title" xy="220,372" size="134,86" group="n80_pzuc" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="烧庄">
<relation target="" sidePair="right-right"/>
</text>
@ -113,10 +113,10 @@
<text id="n176_id5t" name="n176" xy="474,472" size="226,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="封顶20跑">
<gearColor controller="FengDing" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,475" group="n180_id5t">
<component id="n177_id5t" name="n177" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,475" group="n180_id5t">
<Button controller="FengDing" page="1"/>
</component>
<text id="n178_id5t" name="n178" xy="1278,472" size="163,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不封顶">
<text id="n178_id5t" name="n178" xy="1328,472" size="163,72" group="n180_id5t" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不封顶">
<gearColor controller="FengDing" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n179_id5t" name="n179" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,555" group="n180_id5t"/>
@ -139,10 +139,10 @@
<text id="n116_tr59" name="n116" xy="474,659" size="217,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="庄家坐马">
<gearColor controller="ZuoMa" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n117_tr59" name="n117" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,662" group="n120_tr59">
<component id="n117_tr59" name="n117" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,662" group="n120_tr59">
<Button controller="ZuoMa" page="1"/>
</component>
<text id="n118_tr59" name="n118" xy="1278,659" size="270,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="庄家不坐马">
<text id="n118_tr59" name="n118" xy="1328,659" size="270,72" group="n120_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="庄家不坐马">
<gearColor controller="ZuoMa" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n119_tr59" name="n119" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,742" group="n120_tr59"/>
@ -157,10 +157,10 @@
<gearDisplay controller="ZhuanWan" pages=""/>
<gearColor controller="ZhuanWan" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n124_tr59" name="n124" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,755" group="n127_tr59">
<component id="n124_tr59" name="n124" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,755" group="n127_tr59">
<Button controller="ZhuanWan" page="1"/>
</component>
<text id="n125_tr59" name="n125" xy="1278,752" size="163,72" group="n127_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="小转弯">
<text id="n125_tr59" name="n125" xy="1328,752" size="163,72" group="n127_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="小转弯">
<gearColor controller="ZhuanWan" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n126_tr59" name="n126" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,835" group="n127_tr59"/>
@ -174,10 +174,10 @@
<text id="n130_tr59" name="n130" xy="474,845" size="163,72" group="n134_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="算假胡">
<gearColor controller="JiaHu" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n131_tr59" name="n131" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,848" group="n134_tr59">
<component id="n131_tr59" name="n131" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,848" group="n134_tr59">
<Button controller="JiaHu" page="1"/>
</component>
<text id="n132_tr59" name="n132" xy="1278,845" size="217,72" group="n134_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不算假胡">
<text id="n132_tr59" name="n132" xy="1328,845" size="217,72" group="n134_tr59" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不算假胡">
<gearDisplay controller="JiaHu" pages=""/>
<gearColor controller="JiaHu" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>

View File

@ -9,13 +9,13 @@
<controller name="wanfa1_3" pages="0,,1," selected="0"/>
<controller name="wanfa1_4" pages="0,,1," selected="0"/>
<controller name="wanfa1_5" pages="0,,1," selected="0"/>
<controller name="wanfa2_1" pages="0,,1," selected="1"/>
<controller name="wanfa2_1" pages="0,,1," selected="0"/>
<displayList>
<text id="n49_kxhm" name="title" xy="220,0" size="134,86" group="n57_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="局数">
<relation target="" sidePair="right-right"/>
</text>
<component id="n50_kxhm" name="n50" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n57_kxhm">
<Button controller="round" page="0"/>
<Button checked="true" controller="round" page="0"/>
</component>
<text id="n51_kxhm" name="n51" xy="474,7" size="319,72" group="n57_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="10局(房卡*2)">
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
@ -38,36 +38,36 @@
<relation target="" sidePair="right-right"/>
</text>
<component id="n59_kxhm" name="n59" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n64_kxhm">
<Button controller="handcard" page="0"/>
<Button checked="true" controller="handcard" page="0"/>
</component>
<text id="n60_kxhm" name="n60" xy="474,100" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="16张手牌">
<gearColor controller="handcard" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n61_kxhm" name="n61" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,103" group="n64_kxhm">
<component id="n61_kxhm" name="n61" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n64_kxhm">
<Button controller="handcard" page="1"/>
</component>
<text id="n62_kxhm" name="n62" xy="1278,100" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="15张手牌">
<text id="n62_kxhm" name="n62" xy="1328,100" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="15张手牌">
<gearColor controller="handcard" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n63_kxhm" name="n63" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n64_kxhm"/>
<group id="n64_kxhm" name="handCardNum" xy="195,93" size="1515,93" advanced="true"/>
<text id="n65_kxhm" name="title" xy="220,186" size="134,86" group="n71_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
<text id="n65_kxhm" name="title" xy="220,185" size="134,86" group="n71_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
<relation target="" sidePair="right-right"/>
</text>
<component id="n66_kxhm" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,196" group="n71_kxhm">
<Button controller="peopleNum" page="0"/>
<component id="n66_kxhm" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,195" group="n71_kxhm">
<Button checked="true" controller="peopleNum" page="0"/>
</component>
<text id="n67_kxhm" name="n67" xy="474,193" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="3人">
<text id="n67_kxhm" name="n67" xy="474,192" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="3人">
<gearColor controller="peopleNum" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n68_kxhm" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,196" group="n71_kxhm">
<component id="n68_kxhm" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,195" group="n71_kxhm">
<Button controller="peopleNum" page="1"/>
</component>
<text id="n69_kxhm" name="n69" xy="1278,193" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="2人">
<text id="n69_kxhm" name="n69" xy="1328,192" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="2人">
<gearColor controller="peopleNum" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n70_kxhm" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,276" group="n71_kxhm"/>
<group id="n71_kxhm" name="peopleNum" xy="195,186" size="1515,93" advanced="true"/>
<image id="n70_kxhm" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,275" group="n71_kxhm"/>
<group id="n71_kxhm" name="peopleNum" xy="195,185" size="1515,93" advanced="true"/>
<text id="n72_kxhm" name="title" xy="220,279" size="134,86" group="n78_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="功能">
<relation target="" sidePair="right-right"/>
</text>
@ -77,10 +77,10 @@
<text id="n74_kxhm" name="n74" xy="474,286" size="217,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="显示牌数">
<gearColor controller="showCardNum" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n75_kxhm" name="n75" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1188,289" group="n78_kxhm">
<component id="n75_kxhm" name="n75" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,289" group="n78_kxhm">
<Button controller="showCardNum" page="1"/>
</component>
<text id="n76_kxhm" name="n76" xy="1278,286" size="270,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不显示牌数">
<text id="n76_kxhm" name="n76" xy="1328,286" size="270,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不显示牌数">
<gearColor controller="showCardNum" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<image id="n77_kxhm" name="n77" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,369" group="n78_kxhm"/>
@ -94,26 +94,26 @@
<text id="n81_kxhm" name="n81" xy="474,379" size="429,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可不带">
<gearColor controller="wanfa1_1" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n82_kxhm" name="n82" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,382" group="n85_kxhm">
<component id="n82_kxhm" name="n82" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1238,382" group="n85_kxhm">
<Button controller="wanfa1_2" page="1"/>
</component>
<text id="n83_kxhm" name="n83" xy="1278,379" size="535,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可少带接完">
<text id="n83_kxhm" name="n83" xy="1328,379" size="535,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可少带接完">
<gearColor controller="wanfa1_2" pages="0,1" values="#450f05,#000000|#51933c,#000000"/>
</text>
<group id="n85_kxhm" name="specialPlay1" xy="220,372" size="1593,86" advanced="true"/>
<group id="n85_kxhm" name="specialPlay1" xy="220,372" size="1643,86" advanced="true"/>
<component id="n87_kxhm" name="n87" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,475" group="n92_kxhm">
<Button controller="wanfa1_3" page="1"/>
</component>
<text id="n88_kxhm" name="n88" xy="474,472" size="163,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="四带三">
<gearColor controller="wanfa1_3" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n89_kxhm" name="n89" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,475" group="n92_kxhm">
<component id="n89_kxhm" name="n89" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1238,475" group="n92_kxhm">
<Button controller="wanfa1_4" page="1"/>
</component>
<text id="n90_kxhm" name="n90" xy="1278,472" size="217,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="红桃扎鸟">
<text id="n90_kxhm" name="n90" xy="1328,472" size="217,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="红桃扎鸟">
<gearColor controller="wanfa1_4" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<group id="n92_kxhm" name="specialPlay1" xy="384,472" size="1111,72" advanced="true"/>
<group id="n92_kxhm" name="specialPlay1" xy="384,472" size="1161,72" advanced="true"/>
<component id="n94_kxhm" name="n94" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,568" group="n99_kxhm">
<Button controller="wanfa1_5" page="1"/>
</component>
@ -128,9 +128,9 @@
<relation target="" sidePair="right-right"/>
</text>
<component id="n101_kxhm" name="n101" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,661" group="n106_kxhm">
<Button checked="true" controller="wanfa2_1" page="1"/>
<Button controller="wanfa2_1" page="1"/>
</component>
<text id="n102_kxhm" name="n102" xy="474,658" size="874,72" group="n106_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="只出一张加扣10分出2-3张加扣5分">
<text id="n102_kxhm" name="n102" xy="474,658" size="874,72" group="n106_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="只出一张加扣10分出2-3张加扣5分">
<gearColor controller="wanfa2_1" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text>
<component id="n103_kxhm" name="n103" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,661" group="n106_kxhm" visible="false"/>

View File

@ -9,17 +9,18 @@
<image id="n0_pzuc" name="n0" src="86ct7cww" fileName="component/CreatePlay/Image/Rectangle 93.png" xy="60,146">
<relation target="" sidePair="left-left%,top-top%"/>
</image>
<list id="n5_pzuc" name="list_gameName" xy="644,57" size="1206,99" layout="row" overflow="scroll" colGap="36" defaultItem="ui://2d9xdj6zpzuc7cx4" selectionController="gameName">
<relation target="" sidePair="top-top%"/>
<list id="n5_pzuc" name="list_gameName" xy="644,60" size="1206,99" layout="row" overflow="scroll" colGap="36" defaultItem="ui://2d9xdj6zpzuc7cx4" selectionController="gameName">
<relation target="n16_id5t" sidePair="bottom-top"/>
<item/>
<item url="ui://2d9xdj6zp8hp7cz4"/>
<item url="ui://2d9xdj6zp8hp7cz8"/>
</list>
<image id="n3_pzuc" name="n3" src="86ct7cwu" fileName="component/CreatePlay/Image/Rectangle 91.png" xy="564,157" size="1914,975"/>
<image id="n18_p8hp" name="n18" src="p8hp7cz5" fileName="component/CreatePlay/Image/Rectangle 292.png" xy="563,945"/>
<component id="n2_pzuc" name="btn_close" src="pzuc7cx3" fileName="component/CreatePlay/Component/btn_close.xml" xy="2373,0" size="159,159">
<relation target="" sidePair="right-right,top-top"/>
</component>
<list id="n6_pzuc" name="list_playName" xy="60,156" size="472,976" overflow="scroll" lineGap="24" defaultItem="ui://2d9xdj6z86ct7cwy" selectionController="playName" autoClearItems="true">
<list id="n6_pzuc" name="list_playName" xy="60,156" size="472,976" overflow="scroll" lineGap="24" defaultItem="ui://2d9xdj6z86ct7cwy" align="center" selectionController="playName" autoClearItems="true">
<item/>
</list>
<text id="n13_pzuc" name="input_multiple" xy="1539,996" size="120,71" visible="false" font="ui://27vd145bh35o7ill" fontSize="42" color="#ffffff" align="center" vAlign="middle" autoSize="none" singleLine="true" text="1" input="true"/>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="354,99" extention="Button">
<controller name="button" pages="0,up,1,down" selected="0"/>
<displayList>
<image id="n6_p8hp" name="n6" src="p8hp7cza" fileName="component/CreatePlay/Image/CreateRoom12b.png" xy="0,0">
<gearDisplay controller="button" pages="1"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n7_p8hp" name="n7" src="p8hp7cz9" fileName="component/CreatePlay/Image/CreateRoom12a.png" xy="0,0">
<gearDisplay controller="button" pages="0"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
</displayList>
<Button mode="Radio"/>
</component>

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -565,8 +565,11 @@
<image id="p8hp7cz3" name="paodekuai2.png" path="/component/CreatePlay/Image/" exported="true"/>
<component id="p8hp7cz4" name="Single_gameName2.xml" path="/component/CreatePlay/Component/" exported="true"/>
<image id="p8hp7cz5" name="Rectangle 292.png" path="/component/CreatePlay/Image/"/>
<image id="p8hp7cz6" name="btn_create.png" path="/component/CreatePlay/Image/"/>
<image id="p8hp7cz6" name="btn_create.png" path="/component/CreatePlay/Image/" exported="true"/>
<image id="p8hp7cz7" name="Rectangle 255.png" path="/component/CreatePlay/Image/"/>
<component id="p8hp7cz8" name="Single_gameName3.xml" path="/component/CreatePlay/Component/" exported="true"/>
<image id="p8hp7cz9" name="CreateRoom12a.png" path="/component/CreatePlay/Image/"/>
<image id="p8hp7cza" name="CreateRoom12b.png" path="/component/CreatePlay/Image/"/>
</resources>
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2">
<atlas name="默认" index="0"/>

View File

@ -4,22 +4,21 @@
<controller name="page" pages="0,,1," selected="0"/>
<controller name="update" pages="0,,1,,2," selected="0"/>
<displayList>
<component id="n177_id5t" name="lst_game" src="pzuc7cx2" fileName="CreatePlay.xml" pkg="2d9xdj6z" xy="24,24" group="n163_10xl7"/>
<component id="n157_10xl7" name="btn_next" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1986,993" size="426,144" group="n162_10xl7">
<relation target="" sidePair="right-right%,bottom-bottom%"/>
<component id="n177_id5t" name="lst_game" src="pzuc7cx2" fileName="CreatePlay.xml" pkg="2d9xdj6z" xy="1,12" group="n163_10xl7"/>
<component id="n157_10xl7" name="btn_next" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1986,991" size="426,144" group="n162_10xl7">
<Button title=" " titleColor="#167547" titleFontSize="24" icon="ui://2d9xdj6zp8hp7cz6"/>
</component>
<component id="n158_10xl7" name="n158" src="kwi0hjx" fileName="mgr/component/comm/mng_label.xml" xy="706,1041" size="416,60" group="n162_10xl7" controller="type,2"/>
<image id="n173_vyn3" name="n173" src="s98c7i5u" fileName="font/images/win/shurukuang5.png" pkg="27vd145b" xy="924,1026" size="390,78" group="n162_10xl7"/>
<component id="n160_10xl7" name="btn_color" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1404,1017" size="135,82" group="n162_10xl7" visible="false">
<component id="n158_10xl7" name="n158" src="kwi0hjx" fileName="mgr/component/comm/mng_label.xml" xy="706,1039" size="416,60" group="n162_10xl7" controller="type,2"/>
<image id="n173_vyn3" name="n173" src="l2997iht" fileName="font/images/win/shurukuang5.png" pkg="27vd145b" xy="924,1024" size="390,78" group="n162_10xl7"/>
<component id="n160_10xl7" name="btn_color" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1404,1015" size="135,82" group="n162_10xl7" visible="false">
<Button title=" " icon="ui://m7iejg46vyn37i5c"/>
</component>
<text id="n161_10xl7" name="tex_name" xy="924,1029" size="388,76" group="n162_10xl7" font="ui://27vd145bh35o7ilb" fontSize="48" color="#222222" vAlign="middle" autoSize="shrink" autoClearText="true" text="" input="true" prompt="请输入房间名称"/>
<text id="n174_vyn3" name="n174" xy="633,1024" size="299,86" group="n162_10xl7" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" vAlign="middle" autoSize="none" text="房间名称:"/>
<group id="n162_10xl7" name="n162" xy="633,993" size="1779,144" group="n163_10xl7" advanced="true">
<text id="n161_10xl7" name="tex_name" xy="924,1027" size="388,76" group="n162_10xl7" font="ui://27vd145bh35o7ilb" fontSize="48" color="#222222" vAlign="middle" autoSize="shrink" autoClearText="true" text="" input="true" prompt="请输入房间名称"/>
<text id="n174_vyn3" name="n174" xy="633,1022" size="299,86" group="n162_10xl7" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" vAlign="middle" autoSize="none" text="房间名称:"/>
<group id="n162_10xl7" name="n162" xy="633,991" size="1779,144" group="n163_10xl7" advanced="true">
<relation target="" sidePair="center-center%"/>
</group>
<group id="n163_10xl7" name="page0" xy="24,24" size="2532,1170" advanced="true">
<group id="n163_10xl7" name="page0" xy="1,12" size="2532,1170" advanced="true">
<gearDisplay controller="page" pages="0"/>
</group>
<component id="n73_kwi0" name="panel_play_set" src="mpllhv2" fileName="mgr/component/play_set/panel_play_set.xml" xy="599,210" size="1334,750" group="n107_kwi0"/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 MiB

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 667 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 MiB

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 846 KiB

After

Width:  |  Height:  |  Size: 831 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 MiB

After

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 KiB

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 994 KiB

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 267 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 267 KiB

After

Width:  |  Height:  |  Size: 529 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 697 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 561 KiB

After

Width:  |  Height:  |  Size: 74 KiB

View File

@ -87,8 +87,8 @@ public class VerCheck : MonoBehaviour
//string init_url = "http://8.138.94.89:9898/NewFK/config/init2_1.json";
//江西
//string init_url = "http://8.138.255.70:9898/NewFK/config/init2_1.json";
string init_url = "http://110.40.188.229:6789/NewFK/config/init2_1.json";
string init_url = "http://8.138.255.70:9898/NewFK/config/init2_1.json";
//string init_url = "http://110.40.188.229:6789/NewFK/config/init2_1.json";
//公用
//string init_url = "http://124.222.76.196:6789/NewFK/config/init2_1.json";

View File

@ -38,6 +38,7 @@ GraphicsSettings:
- {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0}
m_PreloadedShaders: []
m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
type: 0}

View File

@ -179,7 +179,7 @@ PlayerSettings:
buildNumber:
iPhone: 1
AndroidBundleVersionCode: 12
AndroidMinSdkVersion: 29
AndroidMinSdkVersion: 19
AndroidTargetSdkVersion: 30
AndroidPreferredInstallLocation: 1
aotOptions: