跑得快同步
|
|
@ -6,7 +6,6 @@ local EXGameInfo = {}
|
||||||
|
|
||||||
local M = EXGameInfo
|
local M = EXGameInfo
|
||||||
|
|
||||||
local roundTable = { 10, 15, 20 }
|
|
||||||
function EXGameInfo.new(blur_view)
|
function EXGameInfo.new(blur_view)
|
||||||
setmetatable(M, { __index = IGameInfo })
|
setmetatable(M, { __index = IGameInfo })
|
||||||
local self = setmetatable({}, { __index = M })
|
local self = setmetatable({}, { __index = M })
|
||||||
|
|
@ -19,49 +18,94 @@ function M:FillData(view, index)
|
||||||
self._maxPlayer = 2 -- 默认玩家人数
|
self._maxPlayer = 2 -- 默认玩家人数
|
||||||
self._roundChoice = 5 -- 回合选项数
|
self._roundChoice = 5 -- 回合选项数
|
||||||
|
|
||||||
-- if oldGameVersion == 1 then
|
if oldGameVersion == 1 then
|
||||||
self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Label_Detail_Play")
|
self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast")
|
||||||
|
|
||||||
local com_editSetting = self._config:GetChild("com_editSetting")
|
|
||||||
|
|
||||||
com_editSetting:GetController("cGps").selectedIndex = 2
|
|
||||||
|
|
||||||
local ctr_round = self._config:GetController("round")
|
|
||||||
if ctr_round.selectedIndex == 0 then
|
|
||||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
|
||||||
else
|
else
|
||||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast_yueyang")
|
||||||
end
|
end
|
||||||
self._config:GetController("round").onChanged:Set(function()
|
|
||||||
if ctr_round.selectedIndex == 0 then
|
|
||||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
if oldGameVersion == 2 then
|
||||||
else
|
self._config:GetController("xipai").selectedIndex = 0
|
||||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
|
||||||
|
self.xipaiValueText = self._config:GetChild('xipaifen')
|
||||||
|
self.xipaiValueText.text = 1
|
||||||
|
self.xipaiValue = 1
|
||||||
|
|
||||||
|
self.anchouValueText = self._config:GetChild('anchoufen')
|
||||||
|
self.anchouValueText.text = 1
|
||||||
|
self.anchouValue = 1
|
||||||
|
|
||||||
|
local btn_cr = self._config:GetChild('sdsrbtn')
|
||||||
|
btn_cr.onClick:Set(
|
||||||
|
function()
|
||||||
|
local gniv = GroupNumberInputView_Game.new(nil, function(num)
|
||||||
|
local value = limit
|
||||||
|
if otype == 1 then
|
||||||
|
value = value + ad2d(num)
|
||||||
|
elseif otype == -1 then
|
||||||
|
value = value - ad2d(num)
|
||||||
|
else
|
||||||
|
value = ad2d(num)
|
||||||
|
end
|
||||||
|
|
||||||
|
if value < 0 then
|
||||||
|
ViewUtil.ErrorTip(1, "输入数据异常!")
|
||||||
|
end
|
||||||
|
|
||||||
|
self.xipaiValueText.text = value / 100
|
||||||
|
self.xipaiValue = value / 100
|
||||||
|
end, 3, nil)
|
||||||
|
gniv:Show()
|
||||||
|
end
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
local btn_cr2 = self._config:GetChild('anchoubtn')
|
||||||
|
btn_cr2.onClick:Set(
|
||||||
|
function()
|
||||||
|
local gniv = GroupNumberInputView_Game.new(nil, function(num)
|
||||||
|
local value = limit
|
||||||
|
if otype == 1 then
|
||||||
|
value = value + ad2d(num)
|
||||||
|
elseif otype == -1 then
|
||||||
|
value = value - ad2d(num)
|
||||||
|
else
|
||||||
|
value = ad2d(num)
|
||||||
|
end
|
||||||
|
|
||||||
|
if value < 0 then
|
||||||
|
ViewUtil.ErrorTip(1, "输入数据异常!")
|
||||||
|
end
|
||||||
|
|
||||||
|
self.anchouValueText.text = value / 100
|
||||||
|
self.anchouValue = value / 100
|
||||||
|
end, 3, nil)
|
||||||
|
gniv:Show()
|
||||||
|
end
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
self._config:GetChild("people_2").onClick:Set(function()
|
||||||
|
self._config:GetController("rule").selectedIndex = 0
|
||||||
|
end)
|
||||||
|
|
||||||
|
local piao = self._config:GetController("piao")
|
||||||
|
local daniao = self._config:GetController("daniao")
|
||||||
|
|
||||||
|
piao.onChanged:Add(function()
|
||||||
|
if piao.selectedIndex ~= 0 then
|
||||||
|
daniao.selectedIndex = 0
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
-- else
|
|
||||||
-- self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast_yueyang")
|
|
||||||
-- end
|
|
||||||
|
|
||||||
|
daniao.onChanged:Add(function()
|
||||||
-- self._config:GetChild("people_2").onClick:Set(function()
|
if daniao.selectedIndex ~= 0 then
|
||||||
-- self._config:GetController("rule").selectedIndex = 0
|
piao.selectedIndex = 0
|
||||||
-- end)
|
end
|
||||||
|
end)
|
||||||
-- local piao = self._config:GetController("piao")
|
|
||||||
-- local daniao = self._config:GetController("daniao")
|
|
||||||
|
|
||||||
-- piao.onChanged:Add(function()
|
|
||||||
-- if piao.selectedIndex ~= 0 then
|
|
||||||
-- daniao.selectedIndex = 0
|
|
||||||
-- end
|
|
||||||
-- end)
|
|
||||||
|
|
||||||
-- daniao.onChanged:Add(function()
|
|
||||||
-- if daniao.selectedIndex ~= 0 then
|
|
||||||
-- piao.selectedIndex = 0
|
|
||||||
-- end
|
|
||||||
-- end)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local _help_url = "ui://Info_Poker_RunFastNew/Com_help"
|
local _help_url = "ui://Info_Poker_RunFastNew/Com_help"
|
||||||
|
|
@ -71,7 +115,7 @@ end
|
||||||
|
|
||||||
local _icon_url = "ui://Info_Poker_RunFastNew/icon"
|
local _icon_url = "ui://Info_Poker_RunFastNew/icon"
|
||||||
function M:GetIconUrl()
|
function M:GetIconUrl()
|
||||||
return "ui://Lobby/paodekuai2", "ui://Lobby/paodekuai1"
|
return _icon_url
|
||||||
end
|
end
|
||||||
|
|
||||||
local _icon_url1 = "ui://Info_Poker_RunFastNew/icon1"
|
local _icon_url1 = "ui://Info_Poker_RunFastNew/icon1"
|
||||||
|
|
@ -86,109 +130,100 @@ end
|
||||||
|
|
||||||
function M:LoadConfigData(data)
|
function M:LoadConfigData(data)
|
||||||
local _config = self._config
|
local _config = self._config
|
||||||
pt(data)
|
|
||||||
_config:GetController("round").selectedIndex = data.opt - 1
|
_config:GetController("round").selectedIndex = data.opt - 1
|
||||||
_config:GetController("handcard").selectedIndex = 2 - data.leaf
|
_config:GetController("rule").selectedIndex = data.rule == 2 and 0 or 1
|
||||||
_config:GetController("peopleNum").selectedIndex = 3 - data.maxPlayers
|
_config:GetController("play_list").selectedIndex = data.leaf - 1
|
||||||
_config:GetController("showCardNum").selectedIndex = 1 - data.showlength
|
_config:GetController("willBeOut").selectedIndex = data.willBeOut - 1
|
||||||
_config:GetController("wanfa1_1").selectedIndex = data.planeNoBelt
|
_config:GetController("heart10").selectedIndex = data.heartten - 1
|
||||||
_config:GetController("wanfa1_2").selectedIndex = data.planelack
|
_config:GetController("bombSpring").selectedIndex = data.minboom - 1
|
||||||
_config:GetController("wanfa1_3").selectedIndex = data.fourDaiThree and 1 or 0
|
_config:GetController("player_num").selectedIndex = data.maxPlayers == 2 and 0 or 1
|
||||||
_config:GetController("wanfa1_4").selectedIndex = data.heartten - 1
|
_config:GetController("Cost").selectedIndex = data.AA == 0 and 0 or 1
|
||||||
_config:GetController("wanfa1_5").selectedIndex = 2 - data.rule
|
_config:GetController("showlength").selectedIndex = data.showlength
|
||||||
_config:GetController("wanfa2_1").selectedIndex = data.specilAdd
|
_config:GetController("fourBeltThree").selectedIndex = data.fourBeltThree
|
||||||
|
_config:GetController("demolition").selectedIndex = data.demolition
|
||||||
|
_config:GetController("fangzuobi").selectedIndex = data.fangzuobi
|
||||||
|
|
||||||
-- local sandaidan = data.sandaidan
|
local sandaidan = data.sandaidan
|
||||||
-- if sandaidan ~= nil and sandaidan == 1 then
|
if sandaidan ~= nil and sandaidan == 1 then
|
||||||
-- _config:GetChild("sandaidan").selected = true
|
_config:GetChild("sandaidan").selected = true
|
||||||
|
|
||||||
-- _config:GetChild("planelack").selected = false
|
_config:GetChild("planelack").selected = false
|
||||||
-- _config:GetChild("Threelack").selected = false
|
_config:GetChild("Threelack").selected = false
|
||||||
-- else
|
else
|
||||||
-- _config:GetChild("sandaidan").selected = false
|
_config:GetChild("sandaidan").selected = false
|
||||||
|
|
||||||
-- _config:GetChild("planelack").selected = data.planelack == 1 and true or false
|
_config:GetChild("planelack").selected = data.planelack == 1 and true or false
|
||||||
-- _config:GetChild("Threelack").selected = data.threelack == 1 and true or false
|
_config:GetChild("Threelack").selected = data.threelack == 1 and true or false
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- local fs = data.fs
|
local fs = data.fs
|
||||||
-- if fs ~= nil and fs == 1 then
|
if fs ~= nil and fs == 1 then
|
||||||
-- _config:GetChild("fan_sprint").selected = true
|
_config:GetChild("fan_sprint").selected = true
|
||||||
-- else
|
else
|
||||||
-- _config:GetChild("fan_sprint").selected = false
|
_config:GetChild("fan_sprint").selected = false
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- local ba = data.ba
|
local ba = data.ba
|
||||||
-- if ba ~= nil and ba == 1 then
|
if ba ~= nil and ba == 1 then
|
||||||
-- _config:GetChild("boom_add").selected = true
|
_config:GetChild("boom_add").selected = true
|
||||||
-- else
|
else
|
||||||
-- _config:GetChild("boom_add").selected = false
|
_config:GetChild("boom_add").selected = false
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- _config:GetChild("ThreeA").selected = data.threeA == 1 and true or false
|
_config:GetChild("ThreeA").selected = data.threeA == 1 and true or false
|
||||||
|
|
||||||
-- if data.piao ~= nil then
|
if data.piao ~= nil then
|
||||||
-- _config:GetController("piao").selectedIndex = data.piao
|
_config:GetController("piao").selectedIndex = data.piao
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- if data.daniao ~= nil then
|
if data.daniao ~= nil then
|
||||||
-- _config:GetController("daniao").selectedIndex = data.daniao
|
_config:GetController("daniao").selectedIndex = data.daniao
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- if _config:GetChild("fourBeltThree") then
|
if _config:GetChild("fourBeltThree") then
|
||||||
-- _config:GetChild("fourBeltThree").selected = data.fourDaiTwo
|
_config:GetChild("fourBeltThree").selected = data.fourDaiTwo
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- if _config:GetChild("fourBeltTwo") then
|
if _config:GetChild("fourBeltTwo") then
|
||||||
-- _config:GetChild("fourBeltTwo").selected = data.fourDaiThree
|
_config:GetChild("fourBeltTwo").selected = data.fourDaiThree
|
||||||
-- end
|
end
|
||||||
|
|
||||||
-- if _config:GetChild("xipai") then
|
if _config:GetChild("xipai") then
|
||||||
-- _config:GetChild("xipai").selected = data.xi_pai
|
_config:GetChild("xipai").selected = data.xi_pai
|
||||||
-- end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- if oldGameVersion == 2 then
|
if oldGameVersion == 2 then
|
||||||
-- self.xipaiValueText.text = data.xi_pai_score / 1000
|
self.xipaiValueText.text = data.xi_pai_score / 100
|
||||||
-- self.xipaiValue = data.xi_pai_score / 1000
|
self.xipaiValue = data.xi_pai_score / 100
|
||||||
|
|
||||||
-- self.anchouValueText.text = data.an_chou_score / 1000
|
self.anchouValueText.text = data.an_chou_score / 100
|
||||||
-- self.anchouValue = data.an_chou_score / 1000
|
self.anchouValue = data.an_chou_score / 100
|
||||||
-- end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:SelectedConfigData()
|
function M:SelectedConfigData()
|
||||||
local _config = self._config
|
local _config = self._config
|
||||||
local round = _config:GetController("round").selectedIndex
|
local round = _config:GetController("round").selectedIndex
|
||||||
local handcard = _config:GetController("handcard").selectedIndex
|
local rule = _config:GetController("rule").selectedIndex
|
||||||
local peopleNum = _config:GetController("peopleNum").selectedIndex
|
local leaf = _config:GetController("play_list").selectedIndex
|
||||||
local showCardNum = _config:GetController("showCardNum").selectedIndex
|
local willBeOut = _config:GetController("willBeOut").selectedIndex
|
||||||
local wanfa1_1 = _config:GetController("wanfa1_1").selectedIndex
|
local bombSpring = _config:GetController("bombSpring").selectedIndex
|
||||||
local wanfa1_2 = _config:GetController("wanfa1_2").selectedIndex
|
local heart10 = _config:GetController("heart10").selectedIndex
|
||||||
local wanfa1_3 = _config:GetController("wanfa1_3").selectedIndex
|
local player_num = _config:GetController("player_num").selectedIndex
|
||||||
local wanfa1_4 = _config:GetController("wanfa1_4").selectedIndex
|
local AA = _config:GetController("Cost").selectedIndex
|
||||||
local wanfa1_5 = _config:GetController("wanfa1_5").selectedIndex
|
local showlength = _config:GetController("showlength").selectedIndex
|
||||||
local wanfa2_1 = _config:GetController("wanfa2_1").selectedIndex
|
local fourBeltThree = _config:GetController("fourBeltThree").selectedIndex
|
||||||
|
local demolition = _config:GetController("demolition").selectedIndex
|
||||||
-- local rule = _config:GetController("rule").selectedIndex
|
local fangzuobi = _config:GetController("fangzuobi").selectedIndex
|
||||||
-- local leaf = _config:GetController("play_list").selectedIndex
|
local planelack = _config:GetChild("planelack").selected and 1 or 0
|
||||||
-- local willBeOut = _config:GetController("willBeOut").selectedIndex
|
local threelack = _config:GetChild("Threelack").selected and 1 or 0
|
||||||
-- local bombSpring = _config:GetController("bombSpring").selectedIndex
|
local ThreeA = _config:GetChild("ThreeA").selected and 1 or 0
|
||||||
-- local heart10 = _config:GetController("heart10").selectedIndex
|
local piao = _config:GetController("piao").selectedIndex
|
||||||
-- local player_num = _config:GetController("player_num").selectedIndex
|
local daniao = _config:GetController("daniao").selectedIndex
|
||||||
-- local AA = _config:GetController("Cost").selectedIndex
|
local sandaidan = _config:GetController("sandaidan").selectedIndex
|
||||||
-- local showlength = _config:GetController("showlength").selectedIndex
|
local ba = _config:GetChild("boom_add").selected and 1 or 0
|
||||||
-- local fourBeltThree = _config:GetController("fourBeltThree").selectedIndex
|
local fs = _config:GetChild("fan_sprint").selected and 1 or 0
|
||||||
-- local demolition = _config:GetController("demolition").selectedIndex
|
|
||||||
-- local fangzuobi = _config:GetController("fangzuobi").selectedIndex
|
|
||||||
-- local planelack = _config:GetChild("planelack").selected and 1 or 0
|
|
||||||
-- local threelack = _config:GetChild("Threelack").selected and 1 or 0
|
|
||||||
-- local ThreeA = _config:GetChild("ThreeA").selected and 1 or 0
|
|
||||||
-- local piao = _config:GetController("piao").selectedIndex
|
|
||||||
-- local daniao = _config:GetController("daniao").selectedIndex
|
|
||||||
-- local sandaidan = _config:GetController("sandaidan").selectedIndex
|
|
||||||
-- local ba = _config:GetChild("boom_add").selected and 1 or 0
|
|
||||||
-- local fs = _config:GetChild("fan_sprint").selected and 1 or 0
|
|
||||||
|
|
||||||
-----
|
-----
|
||||||
local fourDaiTwo = false
|
local fourDaiTwo = false
|
||||||
|
|
@ -209,183 +244,66 @@ function M:SelectedConfigData()
|
||||||
----
|
----
|
||||||
local _data = {}
|
local _data = {}
|
||||||
_data["account_id"] = DataManager.SelfUser.Id
|
_data["account_id"] = DataManager.SelfUser.Id
|
||||||
-- _data["AA"] = AA
|
_data["opt"] = round + 1
|
||||||
-- _data["willBeOut"] = willBeOut + 1
|
_data["rule"] = rule == 0 and 2 or 1
|
||||||
-- _data["minboom"] = (willBeOut == 0 and leaf == 1 and player_num == 1) and bombSpring + 1 or 2
|
_data["leaf"] = leaf + 1
|
||||||
-- _data["fourBeltThree"] = fourBeltThree
|
_data["AA"] = AA
|
||||||
-- _data["demolition"] = demolition
|
_data["willBeOut"] = willBeOut + 1
|
||||||
-- _data["fangzuobi"] = fangzuobi
|
_data["showlength"] = showlength
|
||||||
-- _data["threeA"] = ThreeA
|
_data["heartten"] = willBeOut == 0 and heart10 + 1 or 2
|
||||||
-- _data["piao"] = piao
|
_data["minboom"] = (willBeOut == 0 and leaf == 1 and player_num == 1) and bombSpring + 1 or 2
|
||||||
-- _data["daniao"] = daniao
|
_data["maxPlayers"] = player_num + 2
|
||||||
-- _data["sandaidan"] = sandaidan
|
_data["fourBeltThree"] = fourBeltThree
|
||||||
-- _data["ba"] = ba
|
_data["demolition"] = demolition
|
||||||
-- _data["fs"] = fs
|
_data["fangzuobi"] = fangzuobi
|
||||||
|
_data["threeA"] = ThreeA
|
||||||
|
_data["piao"] = piao
|
||||||
|
_data["daniao"] = daniao
|
||||||
|
_data["sandaidan"] = sandaidan
|
||||||
|
_data["ba"] = ba
|
||||||
|
_data["fs"] = fs
|
||||||
|
|
||||||
_data["fourDaiTwo"] = fourDaiTwo
|
_data["fourDaiTwo"] = fourDaiTwo
|
||||||
|
_data["fourDaiThree"] = fourDaiThree
|
||||||
-----------------------lingmeng----------------------------
|
|
||||||
|
|
||||||
_data["AA"] = 0
|
|
||||||
_data["willBeOut"] = 1
|
|
||||||
_data["minboom"] = 2
|
|
||||||
_data["fourBeltThree"] = 0
|
|
||||||
_data["demolition"] = 0
|
|
||||||
_data["fangzuobi"] = 0
|
|
||||||
_data["threeA"] = 0
|
|
||||||
_data["piao"] = 0
|
|
||||||
_data["daniao"] = 0
|
|
||||||
_data["sandaidan"] = 0
|
|
||||||
_data["ba"] = 0
|
|
||||||
_data["fs"] = 0
|
|
||||||
|
|
||||||
|
|
||||||
_data["leaf"] = handcard == 0 and 2 or handcard --手牌 1是15张,2是16张
|
if willBeOut == 1 then
|
||||||
_data["opt"] = round + 1 --局数 1是10局 2是15局 3是20局 ("未知")
|
-- body
|
||||||
_data["maxPlayers"] = peopleNum == 1 and 2 or 3 --人数 2是2人 3是三人
|
_data["planelack"] = 0
|
||||||
_data["rule"] = wanfa1_5 == 0 and 2 or 1 --黑桃3必出 2是选择了该玩法 1是没有该玩法
|
_data["threelack"] = 0
|
||||||
_data["showlength"] = (showCardNum + 1) % 2 --显示手牌数量 0是不显示 1是显示
|
else
|
||||||
_data["planeNoBelt"] = wanfa1_1 --飞机不带
|
if sandaidan == 1 then
|
||||||
_data["threeNoBelt"] = wanfa1_1 --三张不带
|
_data["planelack"] = 0
|
||||||
_data["planelack"] = wanfa1_2 --飞机可少带接完
|
_data["threelack"] = 0
|
||||||
_data["threelack"] = wanfa1_2 --三张可少带接完
|
else
|
||||||
_data["fourDaiThree"] = false --四带三 false没有该玩法 true有该玩法
|
_data["planelack"] = planelack
|
||||||
if wanfa1_3 == 1 then
|
_data["threelack"] = threelack
|
||||||
_data["fourDaiThree"] = true
|
end
|
||||||
end
|
end
|
||||||
_data["heartten"] = wanfa1_4 + 1 --红桃扎鸟 1没有该玩法 2有该玩法 似乎说的是红桃10分数翻倍,具体要问江西那边
|
|
||||||
_data["specilAdd"] = wanfa2_1 --特殊加分规则:只出一张加扣10分,出2-3张加扣5分 0没有该玩法 1有该玩法
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
-- if willBeOut == 1 then
|
|
||||||
-- -- body
|
|
||||||
-- _data["planelack"] = 0
|
|
||||||
-- _data["threelack"] = 0
|
|
||||||
-- else
|
|
||||||
-- if sandaidan == 1 then
|
|
||||||
-- _data["planelack"] = 0
|
|
||||||
-- _data["threelack"] = 0
|
|
||||||
-- else
|
|
||||||
-- _data["planelack"] = planelack
|
|
||||||
-- _data["threelack"] = threelack
|
|
||||||
-- end
|
|
||||||
-- end
|
|
||||||
|
|
||||||
_data['xi_pai'] = xi_pai
|
_data['xi_pai'] = xi_pai
|
||||||
|
|
||||||
local xi_pai_score = 1
|
local xi_pai_score = 0
|
||||||
local an_chou_score = 1
|
local an_chou_score = 0
|
||||||
|
|
||||||
-- if oldGameVersion == 2 then
|
if oldGameVersion == 2 then
|
||||||
-- xi_pai_score = self.xipaiValue
|
xi_pai_score = self.xipaiValue
|
||||||
-- an_chou_score = self.anchouValue
|
an_chou_score = self.anchouValue
|
||||||
-- end
|
end
|
||||||
|
|
||||||
_data['xi_pai_score'] = xi_pai_score * 1000
|
_data['xi_pai_score'] = xi_pai_score * 100
|
||||||
_data['an_chou_score'] = an_chou_score * 1000
|
_data['an_chou_score'] = an_chou_score * 100
|
||||||
|
|
||||||
return _data
|
return _data
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:OnChangeOption(ctype, pay_obj)
|
function M:OnChangeOption(ctype, pay_obj)
|
||||||
IGameInfo.OnChangeOption(self, ctype, pay_obj)
|
IGameInfo.OnChangeOption(self, ctype, pay_obj)
|
||||||
local peopleNum = self._config:GetController("peopleNum")
|
local people = self._config:GetController("player_num")
|
||||||
peopleNum.onChanged:Set(function()
|
people.onChanged:Set(function()
|
||||||
self._maxPlayer = peopleNum.selectedIndex == 1 and 2 or 3
|
self._maxPlayer = people.selectedIndex + 2
|
||||||
self:ShowVariablePrice(ctype, pay_obj)
|
self:ShowVariablePrice(ctype, pay_obj)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:LoadConfigToDetail(data, hpdata)
|
|
||||||
local configData = data
|
|
||||||
if type(data) == 'string' then
|
|
||||||
configData = json.decode(data)
|
|
||||||
end
|
|
||||||
|
|
||||||
local hpData = configData.hpData or hpdata
|
|
||||||
if type(hpData) == 'string' then
|
|
||||||
if hpData == "null" then
|
|
||||||
hpData = nil
|
|
||||||
else
|
|
||||||
hpData = json.decode(hpData)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
local returnString = ""
|
|
||||||
|
|
||||||
if hpData then
|
|
||||||
returnString = string.format("%s倍,", hpData.times / 1000)
|
|
||||||
end
|
|
||||||
|
|
||||||
returnString = string.format("%s人数%s人", returnString, configData.maxPlayers)
|
|
||||||
|
|
||||||
if hpData then
|
|
||||||
returnString = string.format("%s %s局", returnString, hpData.maxRound)
|
|
||||||
end
|
|
||||||
if configData.leaf then
|
|
||||||
returnString = string.format("%s,%s", returnString, configData.leaf == 1 and "15张手牌" or "16张手牌")
|
|
||||||
end
|
|
||||||
if configData.showlength then
|
|
||||||
returnString = string.format("%s,%s", returnString, configData.showlength == 0 and "不显示牌数" or "显示牌数")
|
|
||||||
end
|
|
||||||
if configData.planeNoBelt and configData.threeNoBelt then
|
|
||||||
if configData.planeNoBelt == 0 and configData.threeNoBelt == 0 then
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张、飞机必带")
|
|
||||||
elseif configData.planeNoBelt == 0 then
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张必带、飞机可不带")
|
|
||||||
elseif configData.threeNoBelt == 0 then
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张可不带、飞机必带")
|
|
||||||
else
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张、飞机可不带")
|
|
||||||
end
|
|
||||||
else
|
|
||||||
if configData.planeNoBelt then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.planeNoBelt == 0 and "" or ",飞机可不带")
|
|
||||||
end
|
|
||||||
if configData.threeNoBelt then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.threeNoBelt == 0 and "" or ",三张可不带")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if configData.planelack and configData.threelack then
|
|
||||||
if configData.planelack == 0 and configData.threelack == 0 then
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张、飞机不可少带接完")
|
|
||||||
elseif configData.planelack == 0 then
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张不可少带接完、飞机可少带接完")
|
|
||||||
elseif configData.threelack == 0 then
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张可少带接完、飞机不可少带接完")
|
|
||||||
else
|
|
||||||
returnString = string.format("%s,%s", returnString, "三张、飞机可少带接完")
|
|
||||||
end
|
|
||||||
else
|
|
||||||
if configData.planelack then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.planelack == 0 and "" or ",飞机可少带")
|
|
||||||
end
|
|
||||||
if configData.threelack then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.threelack == 0 and "" or ",三张可少带")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if configData.fourDaiThree then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.fourDaiThree and ",四带三" or "")
|
|
||||||
end
|
|
||||||
if configData.heartten then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.heartten == 1 and "" or ",红桃10扎鸟")
|
|
||||||
end
|
|
||||||
if configData.rule then
|
|
||||||
returnString = string.format("%s%s", returnString,
|
|
||||||
configData.rule == 1 and ",首局黑桃三必出" or "")
|
|
||||||
end
|
|
||||||
if configData.specilAdd then
|
|
||||||
returnString = string.format("%s%s", returnString, configData.specilAdd == 0 and "" or ",只出一张加扣10分,出2-3张加扣5分")
|
|
||||||
end
|
|
||||||
|
|
||||||
returnString = returnString .. IGameInfo.LoadConfigToDetail(self, configData, hpData)
|
|
||||||
|
|
||||||
return returnString
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
|
|
@ -489,5 +489,5 @@
|
||||||
<component id="yffnckq" name="Comp_Clock.xml" path="/component/card_info/Component/"/>
|
<component id="yffnckq" name="Comp_Clock.xml" path="/component/card_info/Component/"/>
|
||||||
<image id="yffnckr" name="touxiangkuang.png" path="/component/card_info/Image/"/>
|
<image id="yffnckr" name="touxiangkuang.png" path="/component/card_info/Image/"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="Extend_Poker_RunFastNew"/>
|
<publish name="Extend_Poker_RunFastNew" path="..\wb_unity_pro\Assets\ART\extend\poker\runfast\ui" packageCount="2"/>
|
||||||
</packageDescription>
|
</packageDescription>
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<component size="69,69" extention="Button">
|
<component size="69,69" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n1" name="n1" src="i3h6s9" fileName="wenhao.png" xy="0,0">
|
<image id="n1" name="n1" src="sv5g5" fileName="wenhao.png" xy="0,0">
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</image>
|
</image>
|
||||||
</displayList>
|
</displayList>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="988,428" overflow="scroll">
|
<component size="988,428" overflow="scroll">
|
||||||
<displayList>
|
<displayList>
|
||||||
<text id="n2_tj7d" name="tex_rule" xy="0,0" size="984,2071" font="Microsoft YaHei" fontSize="28" color="#716155" leading="8" ubb="true" autoSize="none" text="游戏规则 参与人数:3人。 出完的玩家获胜。遵循有大必出原则。 输赢条件: 先出完自己手中的牌。 使用牌数 16张玩法使用48张牌,扣除两张王牌,3个2,一个A。 15张玩法使用45张牌,扣除两张王牌,3个2,3个A,一个K。上手基本简单玩法。 出牌过程 1、每局随机翻取一张明牌,拿到明牌的玩家先出,所出牌型正确即可; 2、游戏者依次轮流出牌,后一家打出的牌必须比前一家打出的牌大,有大必出; 3、如果一轮之中其他游戏者都"要不起",则最后一次出牌者继续出牌; 4、重复1-3直到某个游戏者手中牌全部出完。 牌的大小 本游戏的牌点由大到小排列为:2、A、K、Q、J、10、9、8、7、6、5、4、3; 2只能单出,单张、对、连对、三带二、飞机带翅膀、顺子、炸弹等牌型,只能根据牌点确定大小,但要求出牌的数量必须相同; 最后一手牌牌可以三带一或者不带、飞机以此类推。 牌型介绍 单张:可以是手中的任意一张牌; 对:两张牌点相同的牌,两张牌的花色可以不同; 连对:两对或两对以上相连的牌,如:5566。 三带二:三张牌点相同的牌,带二张杂牌,如:55566、55567;或者三不带 不必打标注:三带一对:三张牌点相同的牌,带一张杂牌,如:5556、5557; 飞机带翅膀,两个或两个以上相连的三同张牌,如:5556667788,QQQKKK8899。三张必须相连,两对可以不相连 不必打标注:6带2对,6带2张,6不带,接的人必须相同牌型。 顺子,五张或五张以上牌点连续的牌。例如:3456789,10JQKA等。 炸弹,四张或四张以上牌点相同的牌,如:6666、8888。 游戏特色 1、游戏共有48张牌,除去大王,小王,红桃2,草花2,方片2,黑桃A,每人16张,先出完牌的玩家获胜。 2、第一局获得获得黑桃3的玩家先出牌,且必须出带黑桃3的任意牌型。第一局结束后由上一局获胜的玩家先行出牌,可以出任意符合规则的牌型。出牌过程中有大过上家的牌则必须出,不能过牌。 3、下家报单时,如果要出单张则出最大的单张,如果出了手中较小的单张提示玩家违反游戏规则,无法出牌 不必打标注:下家报单时玩家可以出任意牌 4、除炸弹可以炸任何牌型,其余不同牌型互不相压,同种牌型比较点数大小,相同牌型则出牌数量必须一致。 " bold="true" />
|
<text id="n2_tj7d" name="tex_rule" xy="0,0" size="984,2071" font="Microsoft YaHei" fontSize="28" color="#716155" leading="8" ubb="true" autoSize="none" text="游戏规则
参与人数:3人。
出完的玩家获胜。遵循有大必出原则。
输赢条件:
先出完自己手中的牌。
使用牌数
16张玩法使用48张牌,扣除两张王牌,3个2,一个A。
15张玩法使用45张牌,扣除两张王牌,3个2,3个A,一个K。上手基本简单玩法。
出牌过程
1、每局随机翻取一张明牌,拿到明牌的玩家先出,所出牌型正确即可;
2、游戏者依次轮流出牌,后一家打出的牌必须比前一家打出的牌大,有大必出;
3、如果一轮之中其他游戏者都"要不起",则最后一次出牌者继续出牌;
4、重复1-3直到某个游戏者手中牌全部出完。
牌的大小
本游戏的牌点由大到小排列为:2、A、K、Q、J、10、9、8、7、6、5、4、3;
2只能单出,单张、对、连对、三带二、飞机带翅膀、顺子、炸弹等牌型,只能根据牌点确定大小,但要求出牌的数量必须相同;
最后一手牌牌可以三带一或者不带、飞机以此类推。

牌型介绍
单张:可以是手中的任意一张牌;
对:两张牌点相同的牌,两张牌的花色可以不同;
连对:两对或两对以上相连的牌,如:5566。

三带二:三张牌点相同的牌,带二张杂牌,如:55566、55567;或者三不带
不必打标注:三带一对:三张牌点相同的牌,带一张杂牌,如:5556、5557;

飞机带翅膀,两个或两个以上相连的三同张牌,如:5556667788,QQQKKK8899。三张必须相连,两对可以不相连 
不必打标注:6带2对,6带2张,6不带,接的人必须相同牌型。

顺子,五张或五张以上牌点连续的牌。例如:3456789,10JQKA等。
炸弹,四张或四张以上牌点相同的牌,如:6666、8888。

游戏特色
1、游戏共有48张牌,除去大王,小王,红桃2,草花2,方片2,黑桃A,每人16张,先出完牌的玩家获胜。
2、第一局获得获得黑桃3的玩家先出牌,且必须出带黑桃3的任意牌型。第一局结束后由上一局获胜的玩家先行出牌,可以出任意符合规则的牌型。出牌过程中有大过上家的牌则必须出,不能过牌。
3、下家报单时,如果要出单张则出最大的单张,如果出了手中较小的单张提示玩家违反游戏规则,无法出牌
不必打标注:下家报单时玩家可以出任意牌
4、除炸弹可以炸任何牌型,其余不同牌型互不相压,同种牌型比较点数大小,相同牌型则出牌数量必须一致。
"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="217,48" extention="Button">
|
<component size="217,48" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="2" />
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="2"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n6_hs0y" name="n6" src="10kys2" fileName="lskd.png" xy="0,0" size="217,48" />
|
<image id="n6_hs0y" name="n6" src="sv5g8" fileName="lskd.png" xy="0,0" size="217,48"/>
|
||||||
<text id="n2_hs0y" name="title" xy="44,0" size="173,48" fontSize="25" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="" bold="true">
|
<text id="n2_hs0y" name="title" xy="44,0" size="173,48" fontSize="25" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="">
|
||||||
<gearColor controller="button" pages="2" values="#ffffff,#000000" default="#ffffff,#000000" />
|
<gearColor controller="button" pages="2" values="#ffffff,#000000" default="#ffffff,#000000"/>
|
||||||
<relation target="" sidePair="width-width,height-height" />
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</text>
|
</text>
|
||||||
<image id="n3_hs0y" name="n3" src="10kys3" fileName="fgx.png" xy="0,46" />
|
<image id="n3_hs0y" name="n3" src="sv5g9" fileName="fgx.png" xy="0,46"/>
|
||||||
<image id="n5_hs0y" name="n5" src="10kys4" fileName="yd.png" xy="8,10" />
|
<image id="n5_hs0y" name="n5" src="sv5ga" fileName="yd.png" xy="8,10"/>
|
||||||
<image id="n4_hs0y" name="n4" src="10kys5" fileName="ly.png" xy="11,13" visible="false" />
|
<image id="n4_hs0y" name="n4" src="sv5gb" fileName="ly.png" xy="11,13" visible="false"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button mode="Radio" />
|
<Button mode="Radio"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,212 +1,212 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="980,425" overflow="scroll" designImageLayer="1">
|
<component size="980,425" overflow="scroll" designImageLayer="1">
|
||||||
<controller name="round" pages="0,,1,,2,,3," selected="0" />
|
<controller name="round" pages="0,,1,,2,,3," selected="0"/>
|
||||||
<controller name="rule" pages="0,,1," selected="0" />
|
<controller name="rule" pages="0,,1," selected="0"/>
|
||||||
<controller name="play_list" pages="0,,1," selected="0">
|
<controller name="play_list" pages="0,,1," selected="0">
|
||||||
<action type="change_page" fromPage="1" toPage="0" controller="ThreeA" targetPage="0" />
|
<action type="change_page" fromPage="1" toPage="0" controller="ThreeA" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="willBeOut" pages="0,,1," selected="0" />
|
<controller name="willBeOut" pages="0,,1," selected="0"/>
|
||||||
<controller name="bombSpring" pages="0,,1," selected="0" />
|
<controller name="bombSpring" pages="0,,1," selected="0"/>
|
||||||
<controller name="heart10" pages="0,,1," selected="0" />
|
<controller name="heart10" pages="0,,1," selected="0"/>
|
||||||
<controller name="player_num" pages="0,,1," selected="0">
|
<controller name="player_num" pages="0,,1," selected="0">
|
||||||
<action type="change_page" fromPage="" toPage="" controller="wenhao" targetPage="0" />
|
<action type="change_page" fromPage="" toPage="" controller="wenhao" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="Cost" pages="0,,1," selected="0" />
|
<controller name="Cost" pages="0,,1," selected="0"/>
|
||||||
<controller name="agent" pages="0,,1,,2," selected="0" />
|
<controller name="agent" pages="0,,1,,2," selected="0"/>
|
||||||
<controller name="showlength" pages="0,,1," selected="0" />
|
<controller name="showlength" pages="0,,1," selected="0"/>
|
||||||
<controller name="fourBeltThree" pages="0,,1,,2,,3," selected="0">
|
<controller name="fourBeltThree" pages="0,,1,,2,,3," selected="0">
|
||||||
<action type="change_page" fromPage="0" toPage="1,2,3" controller="demolition" targetPage="0" />
|
<action type="change_page" fromPage="0" toPage="1,2,3" controller="demolition" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="demolition" pages="0,,1," selected="0">
|
<controller name="demolition" pages="0,,1," selected="0">
|
||||||
<action type="change_page" fromPage="0" toPage="1" controller="fourBeltThree" targetPage="0" />
|
<action type="change_page" fromPage="0" toPage="1" controller="fourBeltThree" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="fangzuobi" pages="0,,1," selected="0" />
|
<controller name="fangzuobi" pages="0,,1," selected="0"/>
|
||||||
<controller name="wenhao" pages="0,,1," selected="0" />
|
<controller name="wenhao" pages="0,,1," selected="0"/>
|
||||||
<controller name="ThreeA" pages="0,,1," selected="0" />
|
<controller name="ThreeA" pages="0,,1," selected="0"/>
|
||||||
<controller name="piao" pages="0,,1,,2,,3," selected="0" />
|
<controller name="piao" pages="0,,1,,2,,3," selected="0"/>
|
||||||
<controller name="daniao" pages="0,0,1,10,2,20,3,50" selected="0" />
|
<controller name="daniao" pages="0,0,1,10,2,20,3,50" selected="0"/>
|
||||||
<controller name="award" pages="0,,1," selected="0" />
|
<controller name="award" pages="0,,1," selected="0"/>
|
||||||
<controller name="sandaidan" pages="0,,1," selected="0" />
|
<controller name="sandaidan" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n132_p5qg" name="n132" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,10" group="n135_p5qg" controller="type,0">
|
<component id="n132_p5qg" name="n132" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,10" group="n135_p5qg" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="玩法" />
|
<Button title="玩法"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n134_p5qg" name="wf1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,15" size="348,47" group="n135_p5qg">
|
<component id="n134_p5qg" name="wf1" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="181,15" size="348,47" group="n135_p5qg">
|
||||||
<Button checked="true" title="15张" controller="play_list" page="0" />
|
<Button checked="true" title="15张" controller="play_list" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n133_p5qg" name="wf2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,15" size="349,47" group="n135_p5qg">
|
<component id="n133_p5qg" name="wf2" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="583,15" size="349,47" group="n135_p5qg">
|
||||||
<Button title="16张" controller="play_list" page="1" />
|
<Button title="16张" controller="play_list" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n135_p5qg" name="n135" xy="0,10" size="932,60" />
|
<group id="n135_p5qg" name="n135" xy="0,10" size="932,60"/>
|
||||||
<component id="n23_mz4j" name="n23" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,63" group="n99_nbeh" controller="type,0">
|
<component id="n23_mz4j" name="n23" src="sv5g2" fileName="component/create_room/di01.xml" xy="1,63" group="n99_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="局数" />
|
<Button title="局数"/>
|
||||||
</component>
|
</component>
|
||||||
<image id="n58_se1s" name="n58" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="279,77" group="n60_se1s" />
|
<image id="n58_se1s" name="n58" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="279,77" group="n60_se1s"/>
|
||||||
<text id="n59_se1s" name="tex_price1" xy="314,76" size="26,29" group="n60_se1s" fontSize="20" color="#ffffff" text="10" bold="true" />
|
<text id="n59_se1s" name="tex_price1" xy="314,76" size="26,29" group="n60_se1s" fontSize="20" color="#ffffff" text="10"/>
|
||||||
<group id="n60_se1s" name="n60" xy="279,76" size="68,29" group="n99_nbeh" advanced="true" />
|
<group id="n60_se1s" name="n60" xy="279,76" size="68,29" group="n99_nbeh" advanced="true"/>
|
||||||
<image id="n61_se1s" name="n61" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="450,79" group="n63_se1s" />
|
<image id="n61_se1s" name="n61" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="450,79" group="n63_se1s"/>
|
||||||
<text id="n62_se1s" name="tex_price2" xy="485,77" size="26,29" group="n63_se1s" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n62_se1s" name="tex_price2" xy="485,77" size="26,29" group="n63_se1s" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n63_se1s" name="n63" xy="450,77" size="68,29" group="n99_nbeh" advanced="true" />
|
<group id="n63_se1s" name="n63" xy="450,77" size="68,29" group="n99_nbeh" advanced="true"/>
|
||||||
<image id="n64_se1s" name="n64" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="613,79" size="68,24" group="n66_se1s" />
|
<image id="n64_se1s" name="n64" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="613,79" size="68,24" group="n66_se1s"/>
|
||||||
<text id="n65_se1s" name="tex_price3" xy="648,77" size="26,29" group="n66_se1s" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n65_se1s" name="tex_price3" xy="648,77" size="26,29" group="n66_se1s" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n66_se1s" name="n66" xy="613,77" size="68,29" group="n99_nbeh" advanced="true" />
|
<group id="n66_se1s" name="n66" xy="613,77" size="68,29" group="n99_nbeh" advanced="true"/>
|
||||||
<image id="n137_9q4t" name="n137" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="795,79" size="68,24" group="n139_9q4t" />
|
<image id="n137_9q4t" name="n137" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="795,79" size="68,24" group="n139_9q4t"/>
|
||||||
<text id="n138_9q4t" name="tex_price4" xy="830,77" size="26,29" group="n139_9q4t" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n138_9q4t" name="tex_price4" xy="830,77" size="26,29" group="n139_9q4t" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n139_9q4t" name="n139" xy="795,77" size="68,29" group="n99_nbeh" advanced="true" />
|
<group id="n139_9q4t" name="n139" xy="795,77" size="68,29" group="n99_nbeh" advanced="true"/>
|
||||||
<component id="n0_sh1u" name="round1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,70" group="n99_nbeh">
|
<component id="n0_sh1u" name="round1" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="181,70" group="n99_nbeh">
|
||||||
<Button checked="true" title="1局" controller="round" page="0" />
|
<Button checked="true" title="1局" controller="round" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n1_sh1u" name="round2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="354,70" group="n99_nbeh">
|
<component id="n1_sh1u" name="round2" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="354,70" group="n99_nbeh">
|
||||||
<Button title="8局" controller="round" page="1" />
|
<Button title="8局" controller="round" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n16_sh1u" name="round3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="520,70" group="n99_nbeh">
|
<component id="n16_sh1u" name="round3" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="520,70" group="n99_nbeh">
|
||||||
<Button title="10局" controller="round" page="2" />
|
<Button title="10局" controller="round" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n136_9q4t" name="round4" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="686,70" group="n99_nbeh">
|
<component id="n136_9q4t" name="round4" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="686,70" group="n99_nbeh">
|
||||||
<Button title="20局" controller="round" page="3" />
|
<Button title="20局" controller="round" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n99_nbeh" name="n99" xy="1,63" size="912,60" />
|
<group id="n99_nbeh" name="n99" xy="1,63" size="912,60"/>
|
||||||
<component id="n25_mz4j" name="n25" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,118" group="n102_nbeh" controller="type,0">
|
<component id="n25_mz4j" name="n25" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,118" group="n102_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="人数" />
|
<Button title="人数"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n44_m1mb" name="people_3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,123" size="349,47" group="n102_nbeh">
|
<component id="n44_m1mb" name="people_3" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="583,123" size="349,47" group="n102_nbeh">
|
||||||
<Button title=" 3 人" controller="player_num" page="1" />
|
<Button title=" 3 人" controller="player_num" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n45_m1mb" name="people_2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,123" size="348,47" group="n102_nbeh">
|
<component id="n45_m1mb" name="people_2" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="181,123" size="348,47" group="n102_nbeh">
|
||||||
<Button checked="true" title=" 2 人" controller="player_num" page="0" />
|
<Button checked="true" title=" 2 人" controller="player_num" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n102_nbeh" name="n102" xy="0,118" size="932,60" />
|
<group id="n102_nbeh" name="n102" xy="0,118" size="932,60"/>
|
||||||
<component id="n29_c6dl" name="n29" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,183" group="n103_nbeh" controller="type,0">
|
<component id="n29_c6dl" name="n29" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,183" group="n103_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="出牌" />
|
<Button title="出牌"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n31_c6dl" name="random" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="183,192" size="240,47" group="n103_nbeh">
|
<component id="n31_c6dl" name="random" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="183,192" size="240,47" group="n103_nbeh">
|
||||||
<Button checked="true" title=" 随机翻牌先出" controller="rule" page="0" />
|
<Button checked="true" title=" 随机翻牌先出" controller="rule" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n82_eclw" name="demolition" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="433,307" size="196,47" group="n103_nbeh">
|
<component id="n82_eclw" name="demolition" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="433,307" size="196,47" group="n103_nbeh">
|
||||||
<Button title="炸弹不能拆" controller="demolition" page="1" />
|
<Button title="炸弹不能拆" controller="demolition" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n32_c6dl" name="heirao3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="433,192" size="190,47" group="n103_nbeh">
|
<component id="n32_c6dl" name="heirao3" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="433,192" size="190,47" group="n103_nbeh">
|
||||||
<Button title=" 黑桃3先出" controller="rule" page="1" />
|
<Button title=" 黑桃3先出" controller="rule" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n81_eclw" name="fangzuobi" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="720,195" size="172,47" group="n103_nbeh">
|
<component id="n81_eclw" name="fangzuobi" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="720,195" size="172,47" group="n103_nbeh">
|
||||||
<gearDisplay controller="player_num" pages="1" />
|
<gearDisplay controller="player_num" pages="1"/>
|
||||||
<Button title="防作弊" controller="fangzuobi" page="1" />
|
<Button title="防作弊" controller="fangzuobi" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n103_nbeh" name="n103" xy="0,183" size="892,171" />
|
<group id="n103_nbeh" name="n103" xy="0,183" size="892,171"/>
|
||||||
<component id="n34_910i" name="n34" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,248" group="n104_nbeh" controller="type,0">
|
<component id="n34_910i" name="n34" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,248" group="n104_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="玩法选项" />
|
<Button title="玩法选项"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n28_c6dl" name="will_be_card" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,253" size="189,47" group="n104_nbeh" touchable="false">
|
<component id="n28_c6dl" name="will_be_card" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="185,253" size="189,47" group="n104_nbeh" touchable="false">
|
||||||
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0" />
|
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n74_ndir" name="fourBeltThree" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="720,255" size="172,47" group="n104_nbeh">
|
<component id="n74_ndir" name="fourBeltThree" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="720,255" size="172,47" group="n104_nbeh">
|
||||||
<Button title="四带二" controller="fourBeltThree" page="2" />
|
<Button title="四带二" controller="fourBeltThree" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n73_j7ij" name="showlength" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="431,255" size="207,47" group="n104_nbeh">
|
<component id="n73_j7ij" name="showlength" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="431,255" size="207,47" group="n104_nbeh">
|
||||||
<Button title="显示剩余牌" controller="showlength" page="1" />
|
<Button title="显示剩余牌" controller="showlength" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n87_dz27" name="fourBeltTwo" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="723,311" size="172,47" group="n104_nbeh">
|
<component id="n87_dz27" name="fourBeltTwo" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="723,311" size="172,47" group="n104_nbeh">
|
||||||
<Button title="四带三" controller="fourBeltThree" page="3" />
|
<Button title="四带三" controller="fourBeltThree" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n127_qhvf" name="sandaidan" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,363" size="264,47" group="n104_nbeh">
|
<component id="n127_qhvf" name="sandaidan" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="185,363" size="264,47" group="n104_nbeh">
|
||||||
<Button title="三张飞机带单或者对子" controller="sandaidan" page="1" />
|
<Button title="三张飞机带单或者对子" controller="sandaidan" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n90_f2pr" name="ThreeA" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,306" size="214,47" group="n104_nbeh">
|
<component id="n90_f2pr" name="ThreeA" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,306" size="214,47" group="n104_nbeh">
|
||||||
<gearDisplay controller="play_list" pages="1" />
|
<gearDisplay controller="play_list" pages="1"/>
|
||||||
<Button title="三个A算炸弹" controller="ThreeA" page="1" />
|
<Button title="三个A算炸弹" controller="ThreeA" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n104_nbeh" name="n104" xy="0,248" size="895,162" />
|
<group id="n104_nbeh" name="n104" xy="0,248" size="895,162"/>
|
||||||
<component id="n42_m1mb" name="n42" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,596" group="n40_910i" controller="type,0">
|
<component id="n42_m1mb" name="n42" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,596" group="n40_910i" controller="type,0">
|
||||||
<gearDisplay controller="willBeOut" pages="0" />
|
<gearDisplay controller="willBeOut" pages="0"/>
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="高级玩法" />
|
<Button title="高级玩法"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n41_910i" name="heart10" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,601" size="350,47" group="n40_910i">
|
<component id="n41_910i" name="heart10" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="187,601" size="350,47" group="n40_910i">
|
||||||
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0" />
|
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n39_910i" name="bomb_spring" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,601" size="454,47" group="n47_tpo1">
|
<component id="n39_910i" name="bomb_spring" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="583,601" size="454,47" group="n47_tpo1">
|
||||||
<gearDisplay controller="player_num" pages="1" />
|
<gearDisplay controller="player_num" pages="1"/>
|
||||||
<Button checked="true" title=" 4个3或3个A 1个2春天" controller="bombSpring" page="0" />
|
<Button checked="true" title=" 4个3或3个A 1个2春天" controller="bombSpring" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n47_tpo1" name="n47" xy="583,601" size="454,47" group="n40_910i" advanced="true">
|
<group id="n47_tpo1" name="n47" xy="583,601" size="454,47" group="n40_910i" advanced="true">
|
||||||
<gearDisplay controller="play_list" pages="1" />
|
<gearDisplay controller="play_list" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n89_gzyl" name="Threelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="584,667" size="256,47" group="n128_qhvf">
|
<component id="n89_gzyl" name="Threelack" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="584,667" size="256,47" group="n128_qhvf">
|
||||||
<Button title="三张少带可接完" />
|
<Button title="三张少带可接完"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n88_gzyl" name="planelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,661" size="264,47" group="n128_qhvf">
|
<component id="n88_gzyl" name="planelack" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="187,661" size="264,47" group="n128_qhvf">
|
||||||
<Button title="飞机少带可接完" />
|
<Button title="飞机少带可接完"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n128_qhvf" name="n128" xy="187,661" size="653,53" group="n40_910i" advanced="true">
|
<group id="n128_qhvf" name="n128" xy="187,661" size="653,53" group="n40_910i" advanced="true">
|
||||||
<gearDisplay controller="sandaidan" pages="0" />
|
<gearDisplay controller="sandaidan" pages="0"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n129_nk4v" name="fan_sprint" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,666" size="256,47" group="n131_nk4v">
|
<component id="n129_nk4v" name="fan_sprint" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,666" size="256,47" group="n131_nk4v">
|
||||||
<Button title="反春天" />
|
<Button title="反春天"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n130_nk4v" name="boom_add" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,667" size="256,47" group="n131_nk4v">
|
<component id="n130_nk4v" name="boom_add" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="583,667" size="256,47" group="n131_nk4v">
|
||||||
<Button title="炸弹分数算赢家" />
|
<Button title="炸弹分数算赢家"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n131_nk4v" name="n131" xy="186,666" size="653,48" group="n40_910i" advanced="true">
|
<group id="n131_nk4v" name="n131" xy="186,666" size="653,48" group="n40_910i" advanced="true">
|
||||||
<gearDisplay controller="sandaidan" pages="1" />
|
<gearDisplay controller="sandaidan" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<group id="n40_910i" name="n40" xy="0,596" size="1037,118" advanced="true">
|
<group id="n40_910i" name="n40" xy="0,596" size="1037,118" advanced="true">
|
||||||
<gearDisplay controller="willBeOut" pages="0" />
|
<gearDisplay controller="willBeOut" pages="0"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n83_eclw" name="n83" src="i3h6sa" fileName="Button3.xml" xy="988,289" size="36,36" aspect="true">
|
<component id="n83_eclw" name="n83" src="sv5g4" fileName="Button3.xml" xy="988,289" size="36,36" aspect="true">
|
||||||
<gearDisplay controller="player_num" pages="1" />
|
<gearDisplay controller="player_num" pages="1"/>
|
||||||
<Button controller="wenhao" page="1" />
|
<Button controller="wenhao" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<graph id="n84_eclw" name="n84" xy="776,231" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000" />
|
<graph id="n84_eclw" name="n84" xy="776,231" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000"/>
|
||||||
<text id="n85_eclw" name="n85" xy="778,232" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌" bold="true" />
|
<text id="n85_eclw" name="n85" xy="778,232" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌"/>
|
||||||
<group id="n86_eclw" name="n86" xy="776,231" size="251,116" advanced="true">
|
<group id="n86_eclw" name="n86" xy="776,231" size="251,116" advanced="true">
|
||||||
<gearDisplay controller="wenhao" pages="1" />
|
<gearDisplay controller="wenhao" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n92_i3h6" name="n92" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,415" group="n98_nbeh" controller="type,0">
|
<component id="n92_i3h6" name="n92" src="sv5g2" fileName="component/create_room/di01.xml" xy="1,415" group="n98_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="飘分" />
|
<Button title="飘分"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n94_i3h6" name="btn_piao_option1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,425" size="157,47" group="n98_nbeh">
|
<component id="n94_i3h6" name="btn_piao_option1" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,425" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button checked="true" title="不飘" controller="piao" page="0" />
|
<Button checked="true" title="不飘" controller="piao" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n95_i3h6" name="btn_piao_option2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="435,425" size="157,47" group="n98_nbeh">
|
<component id="n95_i3h6" name="btn_piao_option2" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="435,425" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="飘123" controller="piao" page="1" />
|
<Button title="飘123" controller="piao" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n96_i3h6" name="btn_piao_option3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="724,425" size="157,47" group="n98_nbeh">
|
<component id="n96_i3h6" name="btn_piao_option3" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="724,425" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="飘235" controller="piao" page="2" />
|
<Button title="飘235" controller="piao" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n97_i3h6" name="btn_piao_option4" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,479" size="157,47" group="n98_nbeh">
|
<component id="n97_i3h6" name="btn_piao_option4" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="185,479" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="飘258" controller="piao" page="3" />
|
<Button title="飘258" controller="piao" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n98_nbeh" name="n98" xy="1,415" size="880,111" />
|
<group id="n98_nbeh" name="n98" xy="1,415" size="880,111"/>
|
||||||
<component id="n105_nbeh" name="n105" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,529" group="n111_nbeh" controller="type,0">
|
<component id="n105_nbeh" name="n105" src="sv5g2" fileName="component/create_room/di01.xml" xy="1,529" group="n111_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="打鸟" />
|
<Button title="打鸟"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n107_nbeh" name="btn_daniao_0" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,539" size="157,47" group="n111_nbeh">
|
<component id="n107_nbeh" name="btn_daniao_0" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,539" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button checked="true" title="不打鸟" controller="daniao" page="0" />
|
<Button checked="true" title="不打鸟" controller="daniao" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n108_nbeh" name="btn_daniao_1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="351,539" size="157,47" group="n111_nbeh">
|
<component id="n108_nbeh" name="btn_daniao_1" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="351,539" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="10分" controller="daniao" page="1" />
|
<Button title="10分" controller="daniao" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n109_nbeh" name="btn_daniao_2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="531,539" size="157,47" group="n111_nbeh">
|
<component id="n109_nbeh" name="btn_daniao_2" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="531,539" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="20分" controller="daniao" page="2" />
|
<Button title="20分" controller="daniao" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n110_nbeh" name="btn_daniao_3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="724,539" size="157,47" group="n111_nbeh">
|
<component id="n110_nbeh" name="btn_daniao_3" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="724,539" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="50分" controller="daniao" page="3" />
|
<Button title="50分" controller="daniao" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n111_nbeh" name="n111" xy="1,529" size="880,60" />
|
<group id="n111_nbeh" name="n111" xy="1,529" size="880,60"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,242 +1,242 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="980,425" overflow="scroll" designImageLayer="1">
|
<component size="980,425" overflow="scroll" designImageLayer="1">
|
||||||
<controller name="round" pages="0,,1,,2,,3,,9," selected="0" />
|
<controller name="round" pages="0,,1,,2,,3,,9," selected="0"/>
|
||||||
<controller name="rule" pages="0,,1," selected="0" />
|
<controller name="rule" pages="0,,1," selected="0"/>
|
||||||
<controller name="play_list" pages="0,,1," selected="0">
|
<controller name="play_list" pages="0,,1," selected="0">
|
||||||
<action type="change_page" fromPage="1" toPage="0" controller="ThreeA" targetPage="0" />
|
<action type="change_page" fromPage="1" toPage="0" controller="ThreeA" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="willBeOut" pages="0,,1," selected="0" />
|
<controller name="willBeOut" pages="0,,1," selected="0"/>
|
||||||
<controller name="bombSpring" pages="0,,1," selected="0" />
|
<controller name="bombSpring" pages="0,,1," selected="0"/>
|
||||||
<controller name="heart10" pages="0,,1," selected="0" />
|
<controller name="heart10" pages="0,,1," selected="0"/>
|
||||||
<controller name="player_num" pages="0,,1," selected="0">
|
<controller name="player_num" pages="0,,1," selected="0">
|
||||||
<action type="change_page" fromPage="" toPage="" controller="wenhao" targetPage="0" />
|
<action type="change_page" fromPage="" toPage="" controller="wenhao" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="Cost" pages="0,,1," selected="0" />
|
<controller name="Cost" pages="0,,1," selected="0"/>
|
||||||
<controller name="agent" pages="0,,1,,2," selected="0" />
|
<controller name="agent" pages="0,,1,,2," selected="0"/>
|
||||||
<controller name="showlength" pages="0,,1," selected="0" />
|
<controller name="showlength" pages="0,,1," selected="0"/>
|
||||||
<controller name="fourBeltThree" pages="0,,1,,2,,3," selected="0">
|
<controller name="fourBeltThree" pages="0,,1,,2,,3," selected="0">
|
||||||
<action type="change_page" fromPage="0" toPage="1,2,3" controller="demolition" targetPage="0" />
|
<action type="change_page" fromPage="0" toPage="1,2,3" controller="demolition" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="demolition" pages="0,,1," selected="0">
|
<controller name="demolition" pages="0,,1," selected="0">
|
||||||
<action type="change_page" fromPage="0" toPage="1" controller="fourBeltThree" targetPage="0" />
|
<action type="change_page" fromPage="0" toPage="1" controller="fourBeltThree" targetPage="0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="fangzuobi" pages="0,,1," selected="0" />
|
<controller name="fangzuobi" pages="0,,1," selected="0"/>
|
||||||
<controller name="wenhao" pages="0,,1," selected="0" />
|
<controller name="wenhao" pages="0,,1," selected="0"/>
|
||||||
<controller name="ThreeA" pages="0,,1," selected="0" />
|
<controller name="ThreeA" pages="0,,1," selected="0"/>
|
||||||
<controller name="piao" pages="0,,1,,2,,3," selected="0" />
|
<controller name="piao" pages="0,,1,,2,,3," selected="0"/>
|
||||||
<controller name="daniao" pages="0,0,1,10,2,20,3,50" selected="0" />
|
<controller name="daniao" pages="0,0,1,10,2,20,3,50" selected="0"/>
|
||||||
<controller name="award" pages="0,,1," selected="0" />
|
<controller name="award" pages="0,,1," selected="0"/>
|
||||||
<controller name="sandaidan" pages="0,,1," selected="0" />
|
<controller name="sandaidan" pages="0,,1," selected="0"/>
|
||||||
<controller name="xipai" pages="0,,1," selected="0" />
|
<controller name="xipai" pages="0,,1," selected="0"/>
|
||||||
<controller name="xipaictr" pages="0,,1," selected="0" />
|
<controller name="xipaictr" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n132_p5qg" name="n132" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,10" group="n135_p5qg" controller="type,0">
|
<component id="n132_p5qg" name="n132" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,10" group="n135_p5qg" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="玩法" />
|
<Button title="玩法"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n134_p5qg" name="wf1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,15" size="348,47" group="n135_p5qg">
|
<component id="n134_p5qg" name="wf1" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="181,15" size="348,47" group="n135_p5qg">
|
||||||
<Button checked="true" title="15张" controller="play_list" page="0" />
|
<Button checked="true" title="15张" controller="play_list" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n133_p5qg" name="wf2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,15" size="349,47" group="n135_p5qg">
|
<component id="n133_p5qg" name="wf2" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="583,15" size="349,47" group="n135_p5qg">
|
||||||
<Button title="16张" controller="play_list" page="1" />
|
<Button title="16张" controller="play_list" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n135_p5qg" name="n135" xy="0,10" size="932,60" />
|
<group id="n135_p5qg" name="n135" xy="0,10" size="932,60"/>
|
||||||
<component id="n25_mz4j" name="n25" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,118" group="n102_nbeh" controller="type,0">
|
<component id="n25_mz4j" name="n25" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,118" group="n102_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="人数" />
|
<Button title="人数"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n44_m1mb" name="people_3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,123" size="349,47" group="n102_nbeh">
|
<component id="n44_m1mb" name="people_3" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="583,123" size="349,47" group="n102_nbeh">
|
||||||
<Button title=" 3 人" controller="player_num" page="1" />
|
<Button title=" 3 人" controller="player_num" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n45_m1mb" name="people_2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,123" size="348,47" group="n102_nbeh">
|
<component id="n45_m1mb" name="people_2" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="181,123" size="348,47" group="n102_nbeh">
|
||||||
<Button checked="true" title=" 2 人" controller="player_num" page="0" />
|
<Button checked="true" title=" 2 人" controller="player_num" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n102_nbeh" name="n102" xy="0,118" size="932,60" />
|
<group id="n102_nbeh" name="n102" xy="0,118" size="932,60"/>
|
||||||
<component id="n29_c6dl" name="n29" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,183" group="n103_nbeh" controller="type,0">
|
<component id="n29_c6dl" name="n29" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,183" group="n103_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="出牌" />
|
<Button title="出牌"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n31_c6dl" name="random" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="183,192" size="240,47" group="n103_nbeh">
|
<component id="n31_c6dl" name="random" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="183,192" size="240,47" group="n103_nbeh">
|
||||||
<Button checked="true" title=" 随机翻牌先出" controller="rule" page="0" />
|
<Button checked="true" title=" 随机翻牌先出" controller="rule" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n82_eclw" name="demolition" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="453,309" size="196,47" group="n103_nbeh">
|
<component id="n82_eclw" name="demolition" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="453,309" size="196,47" group="n103_nbeh">
|
||||||
<Button title="炸弹不能拆" controller="demolition" page="1" />
|
<Button title="炸弹不能拆" controller="demolition" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n32_c6dl" name="heirao3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="433,192" size="190,47" group="n103_nbeh">
|
<component id="n32_c6dl" name="heirao3" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="433,192" size="190,47" group="n103_nbeh">
|
||||||
<Button title=" 黑桃3先出" controller="rule" page="1" />
|
<Button title=" 黑桃3先出" controller="rule" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n81_eclw" name="fangzuobi" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="720,195" size="172,47" group="n103_nbeh">
|
<component id="n81_eclw" name="fangzuobi" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="720,195" size="172,47" group="n103_nbeh">
|
||||||
<gearDisplay controller="player_num" pages="1" />
|
<gearDisplay controller="player_num" pages="1"/>
|
||||||
<Button title="防作弊" controller="fangzuobi" page="1" />
|
<Button title="防作弊" controller="fangzuobi" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n103_nbeh" name="n103" xy="0,183" size="892,173" />
|
<group id="n103_nbeh" name="n103" xy="0,183" size="892,173"/>
|
||||||
<component id="n34_910i" name="n34" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,248" group="n104_nbeh" controller="type,0">
|
<component id="n34_910i" name="n34" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,248" group="n104_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="玩法选项" />
|
<Button title="玩法选项"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n28_c6dl" name="will_be_card" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,254" size="189,47" group="n104_nbeh" touchable="false">
|
<component id="n28_c6dl" name="will_be_card" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="185,254" size="189,47" group="n104_nbeh" touchable="false">
|
||||||
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0" />
|
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n74_ndir" name="fourBeltThree" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="718,253" size="172,47" group="n104_nbeh">
|
<component id="n74_ndir" name="fourBeltThree" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="718,253" size="172,47" group="n104_nbeh">
|
||||||
<Button title="四带二" />
|
<Button title="四带二"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n73_j7ij" name="showlength" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="454,254" size="207,47" group="n104_nbeh">
|
<component id="n73_j7ij" name="showlength" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="454,254" size="207,47" group="n104_nbeh">
|
||||||
<Button title="显示剩余牌" controller="showlength" page="1" />
|
<Button title="显示剩余牌" controller="showlength" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n87_dz27" name="fourBeltTwo" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="721,309" size="172,47" group="n104_nbeh">
|
<component id="n87_dz27" name="fourBeltTwo" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="721,309" size="172,47" group="n104_nbeh">
|
||||||
<Button title="四带三" />
|
<Button title="四带三"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n127_qhvf" name="sandaidan" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="182,306" size="264,47" group="n104_nbeh">
|
<component id="n127_qhvf" name="sandaidan" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="182,306" size="264,47" group="n104_nbeh">
|
||||||
<Button title="三张飞机带单或者对子" controller="sandaidan" page="1" />
|
<Button title="三张飞机带单或者对子" controller="sandaidan" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n90_f2pr" name="ThreeA" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,306" size="214,47" group="n104_nbeh">
|
<component id="n90_f2pr" name="ThreeA" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,306" size="214,47" group="n104_nbeh">
|
||||||
<gearDisplay controller="play_list" pages="1" />
|
<gearDisplay controller="play_list" pages="1"/>
|
||||||
<Button title="三个A算炸弹" controller="ThreeA" page="1" />
|
<Button title="三个A算炸弹" controller="ThreeA" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n104_nbeh" name="n104" xy="0,248" size="893,108" />
|
<group id="n104_nbeh" name="n104" xy="0,248" size="893,108"/>
|
||||||
<component id="n42_m1mb" name="n42" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,564" group="n40_910i" controller="type,0">
|
<component id="n42_m1mb" name="n42" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,564" group="n40_910i" controller="type,0">
|
||||||
<gearDisplay controller="willBeOut" pages="0" />
|
<gearDisplay controller="willBeOut" pages="0"/>
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="高级玩法" />
|
<Button title="高级玩法"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n41_910i" name="heart10" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,569" size="350,47" group="n40_910i">
|
<component id="n41_910i" name="heart10" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="187,569" size="350,47" group="n40_910i">
|
||||||
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0" />
|
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n39_910i" name="bomb_spring" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,569" size="454,47" group="n47_tpo1">
|
<component id="n39_910i" name="bomb_spring" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="583,569" size="454,47" group="n47_tpo1">
|
||||||
<gearDisplay controller="player_num" pages="1" />
|
<gearDisplay controller="player_num" pages="1"/>
|
||||||
<Button checked="true" title=" 4个3或3个A 1个2春天" controller="bombSpring" page="0" />
|
<Button checked="true" title=" 4个3或3个A 1个2春天" controller="bombSpring" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n47_tpo1" name="n47" xy="583,569" size="454,47" group="n40_910i" advanced="true">
|
<group id="n47_tpo1" name="n47" xy="583,569" size="454,47" group="n40_910i" advanced="true">
|
||||||
<gearDisplay controller="play_list" pages="1" />
|
<gearDisplay controller="play_list" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n89_gzyl" name="Threelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="584,635" size="256,47" group="n128_qhvf">
|
<component id="n89_gzyl" name="Threelack" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="584,635" size="256,47" group="n128_qhvf">
|
||||||
<Button title="三张少带可接完" />
|
<Button title="三张少带可接完"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n88_gzyl" name="planelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,629" size="264,47" group="n128_qhvf">
|
<component id="n88_gzyl" name="planelack" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="187,629" size="264,47" group="n128_qhvf">
|
||||||
<Button title="飞机少带可接完" />
|
<Button title="飞机少带可接完"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n128_qhvf" name="n128" xy="187,629" size="653,53" group="n40_910i" advanced="true">
|
<group id="n128_qhvf" name="n128" xy="187,629" size="653,53" group="n40_910i" advanced="true">
|
||||||
<gearDisplay controller="sandaidan" pages="0" />
|
<gearDisplay controller="sandaidan" pages="0"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n129_nk4v" name="fan_sprint" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,634" size="256,47" group="n131_nk4v">
|
<component id="n129_nk4v" name="fan_sprint" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,634" size="256,47" group="n131_nk4v">
|
||||||
<Button title="反春天" />
|
<Button title="反春天"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n130_nk4v" name="boom_add" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,635" size="256,47" group="n131_nk4v">
|
<component id="n130_nk4v" name="boom_add" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="583,635" size="256,47" group="n131_nk4v">
|
||||||
<Button title="炸弹分数算赢家" />
|
<Button title="炸弹分数算赢家"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n131_nk4v" name="n131" xy="186,634" size="653,48" group="n40_910i" advanced="true">
|
<group id="n131_nk4v" name="n131" xy="186,634" size="653,48" group="n40_910i" advanced="true">
|
||||||
<gearDisplay controller="sandaidan" pages="1" />
|
<gearDisplay controller="sandaidan" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<group id="n40_910i" name="n40" xy="0,564" size="1037,118" advanced="true">
|
<group id="n40_910i" name="n40" xy="0,564" size="1037,118" advanced="true">
|
||||||
<gearDisplay controller="willBeOut" pages="0" />
|
<gearDisplay controller="willBeOut" pages="0"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n83_eclw" name="n83" src="i3h6sa" fileName="Button3.xml" xy="988,289" size="36,36" aspect="true">
|
<component id="n83_eclw" name="n83" src="sv5g4" fileName="Button3.xml" xy="988,289" size="36,36" aspect="true">
|
||||||
<gearDisplay controller="player_num" pages="1" />
|
<gearDisplay controller="player_num" pages="1"/>
|
||||||
<Button controller="wenhao" page="1" />
|
<Button controller="wenhao" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<graph id="n84_eclw" name="n84" xy="776,231" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000" />
|
<graph id="n84_eclw" name="n84" xy="776,231" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000"/>
|
||||||
<text id="n85_eclw" name="n85" xy="778,232" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌" bold="true" />
|
<text id="n85_eclw" name="n85" xy="778,232" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌"/>
|
||||||
<group id="n86_eclw" name="n86" xy="776,231" size="251,116" advanced="true">
|
<group id="n86_eclw" name="n86" xy="776,231" size="251,116" advanced="true">
|
||||||
<gearDisplay controller="wenhao" pages="1" />
|
<gearDisplay controller="wenhao" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n92_i3h6" name="n92" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,370" group="n98_nbeh" controller="type,0">
|
<component id="n92_i3h6" name="n92" src="sv5g2" fileName="component/create_room/di01.xml" xy="1,370" group="n98_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="飘分" />
|
<Button title="飘分"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n94_i3h6" name="btn_piao_option1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,380" size="157,47" group="n98_nbeh">
|
<component id="n94_i3h6" name="btn_piao_option1" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,380" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button checked="true" title="不飘" controller="piao" page="0" />
|
<Button checked="true" title="不飘" controller="piao" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n95_i3h6" name="btn_piao_option2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="435,380" size="157,47" group="n98_nbeh">
|
<component id="n95_i3h6" name="btn_piao_option2" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="435,380" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="飘123" controller="piao" page="1" />
|
<Button title="飘123" controller="piao" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n96_i3h6" name="btn_piao_option3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="724,380" size="157,47" group="n98_nbeh">
|
<component id="n96_i3h6" name="btn_piao_option3" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="724,380" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="飘235" controller="piao" page="2" />
|
<Button title="飘235" controller="piao" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n97_i3h6" name="btn_piao_option4" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,434" size="157,47" group="n98_nbeh">
|
<component id="n97_i3h6" name="btn_piao_option4" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="185,434" size="157,47" group="n98_nbeh">
|
||||||
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="飘258" controller="piao" page="3" />
|
<Button title="飘258" controller="piao" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n98_nbeh" name="n98" xy="1,370" size="880,111" />
|
<group id="n98_nbeh" name="n98" xy="1,370" size="880,111"/>
|
||||||
<component id="n105_nbeh" name="n105" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,491" group="n111_nbeh" controller="type,0">
|
<component id="n105_nbeh" name="n105" src="sv5g2" fileName="component/create_room/di01.xml" xy="0,491" group="n111_nbeh" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="打鸟" />
|
<Button title="打鸟"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n107_nbeh" name="btn_daniao_0" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,501" size="157,47" group="n111_nbeh">
|
<component id="n107_nbeh" name="btn_daniao_0" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="185,501" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button checked="true" title="不打鸟" controller="daniao" page="0" />
|
<Button checked="true" title="不打鸟" controller="daniao" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n108_nbeh" name="btn_daniao_1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="350,501" size="157,47" group="n111_nbeh">
|
<component id="n108_nbeh" name="btn_daniao_1" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="350,501" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="10分" controller="daniao" page="1" />
|
<Button title="10分" controller="daniao" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n109_nbeh" name="btn_daniao_2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="530,501" size="157,47" group="n111_nbeh">
|
<component id="n109_nbeh" name="btn_daniao_2" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="530,501" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="20分" controller="daniao" page="2" />
|
<Button title="20分" controller="daniao" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n110_nbeh" name="btn_daniao_3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="723,501" size="157,47" group="n111_nbeh">
|
<component id="n110_nbeh" name="btn_daniao_3" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="723,501" size="157,47" group="n111_nbeh">
|
||||||
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1"/>
|
||||||
<Button title="50分" controller="daniao" page="3" />
|
<Button title="50分" controller="daniao" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n111_nbeh" name="n111" xy="0,491" size="880,60" />
|
<group id="n111_nbeh" name="n111" xy="0,491" size="880,60"/>
|
||||||
<component id="n137_udgc" name="n137" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,62" group="n154_udgc" controller="type,0">
|
<component id="n137_udgc" name="n137" src="sv5g2" fileName="component/create_room/di01.xml" xy="1,62" group="n154_udgc" controller="type,0">
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<Button title="局数" />
|
<Button title="局数"/>
|
||||||
</component>
|
</component>
|
||||||
<image id="n138_udgc" name="n138" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="278,80" group="n140_udgc" />
|
<image id="n138_udgc" name="n138" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="278,80" group="n140_udgc"/>
|
||||||
<text id="n139_udgc" name="tex_price1" xy="313,79" size="27,29" group="n140_udgc" fontSize="20" color="#ffffff" text="10" bold="true" />
|
<text id="n139_udgc" name="tex_price1" xy="313,79" size="27,29" group="n140_udgc" fontSize="20" color="#ffffff" text="10"/>
|
||||||
<group id="n140_udgc" name="n140" xy="278,79" size="68,29" group="n154_udgc" advanced="true" />
|
<group id="n140_udgc" name="n140" xy="278,79" size="68,29" group="n154_udgc" advanced="true"/>
|
||||||
<image id="n141_udgc" name="n141" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="530,78" group="n143_udgc" />
|
<image id="n141_udgc" name="n141" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="530,78" group="n143_udgc"/>
|
||||||
<text id="n142_udgc" name="tex_price2" xy="565,76" size="27,29" group="n143_udgc" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n142_udgc" name="tex_price2" xy="565,76" size="27,29" group="n143_udgc" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n143_udgc" name="n143" xy="530,76" size="68,29" group="n154_udgc" advanced="true" />
|
<group id="n143_udgc" name="n143" xy="530,76" size="68,29" group="n154_udgc" advanced="true"/>
|
||||||
<image id="n144_udgc" name="n144" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="798,82" size="68,24" group="n146_udgc" />
|
<image id="n144_udgc" name="n144" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="798,82" size="68,24" group="n146_udgc"/>
|
||||||
<text id="n145_udgc" name="tex_price3" xy="833,80" size="27,29" group="n146_udgc" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n145_udgc" name="tex_price3" xy="833,80" size="27,29" group="n146_udgc" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n146_udgc" name="n146" xy="798,80" size="68,29" group="n154_udgc" advanced="true" />
|
<group id="n146_udgc" name="n146" xy="798,80" size="68,29" group="n154_udgc" advanced="true"/>
|
||||||
<image id="n147_udgc" name="n147" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="840,161" size="68,24" group="n149_udgc" />
|
<image id="n147_udgc" name="n147" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="840,161" size="68,24" group="n149_udgc"/>
|
||||||
<text id="n148_udgc" name="tex_price4" xy="875,159" size="27,29" group="n149_udgc" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n148_udgc" name="tex_price4" xy="875,159" size="27,29" group="n149_udgc" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n149_udgc" name="n149" xy="840,159" size="68,29" group="n154_udgc" visible="false" advanced="true" />
|
<group id="n149_udgc" name="n149" xy="840,159" size="68,29" group="n154_udgc" visible="false" advanced="true"/>
|
||||||
<image id="n164_ozsy" name="n164" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="908,79" size="68,24" group="n166_ozsy" />
|
<image id="n164_ozsy" name="n164" src="sv5gg" fileName="component/create_room/image/pic07.png" xy="908,79" size="68,24" group="n166_ozsy"/>
|
||||||
<text id="n165_ozsy" name="tex_price5" xy="943,77" size="27,29" group="n166_ozsy" fontSize="20" color="#ffffff" text="20" bold="true" />
|
<text id="n165_ozsy" name="tex_price5" xy="943,77" size="27,29" group="n166_ozsy" fontSize="20" color="#ffffff" text="20"/>
|
||||||
<group id="n166_ozsy" name="n166" xy="908,77" size="68,29" group="n154_udgc" visible="false" advanced="true" />
|
<group id="n166_ozsy" name="n166" xy="908,77" size="68,29" group="n154_udgc" visible="false" advanced="true"/>
|
||||||
<component id="n150_udgc" name="round1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="180,68" group="n154_udgc">
|
<component id="n150_udgc" name="round1" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="180,68" group="n154_udgc">
|
||||||
<Button checked="true" title="1局" controller="round" page="0" />
|
<Button checked="true" title="1局" controller="round" page="0"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n151_udgc" name="round2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="687,68" group="n154_udgc">
|
<component id="n151_udgc" name="round2" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="687,68" group="n154_udgc">
|
||||||
<Button title="8局" controller="round" page="2" />
|
<Button title="8局" controller="round" page="2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n152_udgc" name="round3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="882,72" group="n154_udgc" visible="false" touchable="false">
|
<component id="n152_udgc" name="round3" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="882,72" group="n154_udgc" visible="false" touchable="false">
|
||||||
<Button title="8局" controller="round" page="3" />
|
<Button title="8局" controller="round" page="3"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n153_udgc" name="round4" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="797,68" group="n154_udgc" visible="false" touchable="false">
|
<component id="n153_udgc" name="round4" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="797,68" group="n154_udgc" visible="false" touchable="false">
|
||||||
<Button title="20局" controller="round" page="9" />
|
<Button title="20局" controller="round" page="9"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n163_ozsy" name="round5" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="419,68" group="n154_udgc">
|
<component id="n163_ozsy" name="round5" src="sv5gd" fileName="component/create_room/Btn_cr_checkbox.xml" xy="419,68" group="n154_udgc">
|
||||||
<Button title="4局" controller="round" page="1" />
|
<Button title="4局" controller="round" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n154_udgc" name="n154" xy="1,62" size="1108,126" />
|
<group id="n154_udgc" name="n154" xy="1,62" size="1108,126"/>
|
||||||
<component id="n155_piwz" name="n155" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="-1,696" group="n162_piwz">
|
<component id="n155_piwz" name="n155" src="sv5g2" fileName="component/create_room/di01.xml" xy="-1,696" group="n162_piwz">
|
||||||
<Button title="洗牌" />
|
<Button title="洗牌"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n156_piwz" name="xipai" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,706" size="157,47" group="n162_piwz">
|
<component id="n156_piwz" name="xipai" src="sv5gh" fileName="component/create_room/Btn_cr_checkbox2.xml" xy="186,706" size="157,47" group="n162_piwz">
|
||||||
<Button title="洗牌" controller="xipaictr" page="1" />
|
<Button title="洗牌" controller="xipaictr" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n157_piwz" name="n157" xy="146,774" size="200,39" group="n161_piwz" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
<text id="n157_piwz" name="n157" xy="146,774" size="200,39" group="n161_piwz" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:"/>
|
||||||
<graph id="n158_piwz" name="n158" xy="351,777" size="93,31" group="n161_piwz" type="rect" fillColor="#99000000" />
|
<graph id="n158_piwz" name="n158" xy="351,777" size="93,31" group="n161_piwz" type="rect" fillColor="#99000000"/>
|
||||||
<text id="n159_piwz" name="xipaifen" xy="352,772" size="94,42" group="n161_piwz" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="1" bold="true" />
|
<text id="n159_piwz" name="xipaifen" xy="352,772" size="94,42" group="n161_piwz" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="1"/>
|
||||||
<component id="n160_piwz" name="sdsrbtn" src="r0qx7i5y" fileName="component/create_room/Btn_Common_Info.xml" pkg="27vd145b" xy="456,762" group="n161_piwz" />
|
<component id="n160_piwz" name="sdsrbtn" src="sv5g0" fileName="component/create_room/Btn_Common_Info.xml" xy="456,762" group="n161_piwz"/>
|
||||||
<group id="n161_piwz" name="n161" xy="146,762" size="437,63" group="n162_piwz" advanced="true">
|
<group id="n161_piwz" name="n161" xy="146,762" size="437,63" group="n162_piwz" advanced="true">
|
||||||
<gearDisplay controller="xipaictr" pages="1" />
|
<gearDisplay controller="xipaictr" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<group id="n162_piwz" name="n162" xy="-1,696" size="584,129" advanced="true" />
|
<group id="n162_piwz" name="n162" xy="-1,696" size="584,129" advanced="true"/>
|
||||||
<text id="n167_vlhj" name="n167" xy="198,842" size="200,39" group="n171_vlhj" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
<text id="n167_vlhj" name="n167" xy="198,842" size="200,39" group="n171_vlhj" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:"/>
|
||||||
<graph id="n168_vlhj" name="n168" xy="403,845" size="93,31" group="n171_vlhj" type="rect" fillColor="#99000000" />
|
<graph id="n168_vlhj" name="n168" xy="403,845" size="93,31" group="n171_vlhj" type="rect" fillColor="#99000000"/>
|
||||||
<text id="n169_vlhj" name="anchoufen" xy="404,840" size="94,42" group="n171_vlhj" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="0" bold="true" />
|
<text id="n169_vlhj" name="anchoufen" xy="404,840" size="94,42" group="n171_vlhj" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="0"/>
|
||||||
<component id="n170_vlhj" name="anchoubtn" src="vlhjcss" fileName="component/create_room/Btn_Common_Info.xml" xy="508,830" group="n171_vlhj" />
|
<component id="n170_vlhj" name="anchoubtn" src="sv5g0" fileName="component/create_room/Btn_Common_Info.xml" xy="508,830" group="n171_vlhj"/>
|
||||||
<group id="n171_vlhj" name="n171" xy="198,830" size="437,63" advanced="true" />
|
<group id="n171_vlhj" name="n171" xy="198,830" size="437,63" advanced="true"/>
|
||||||
<component id="n172_vlhj" name="n172" src="vlhjcsu" fileName="component/create_room/di01.xml" xy="-1,831">
|
<component id="n172_vlhj" name="n172" src="sv5g2" fileName="component/create_room/di01.xml" xy="-1,831">
|
||||||
<Button title="按抽" />
|
<Button title="按抽"/>
|
||||||
</component>
|
</component>
|
||||||
</displayList>
|
</displayList>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<component size="78,37" extention="Button">
|
<component size="78,37" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<loader id="n2_r282" name="n2" xy="0,0" size="78,37" url="ui://27vd145botnw9h" autoSize="true"/>
|
<loader id="n2_r282" name="n2" xy="0,0" size="78,37" url="ui://7ij0e6i2sv5gm" autoSize="true"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
<Button downEffect="dark" downEffectValue="0.80"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<component size="78,37" extention="Button">
|
<component size="78,37" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<loader id="n2_r282" name="n2" xy="0,0" size="78,37" url="ui://27vd145botnw9g" autoSize="true"/>
|
<loader id="n2_r282" name="n2" xy="0,0" size="78,37" url="ui://7ij0e6i2sv5go" autoSize="true"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
<Button downEffect="dark" downEffectValue="0.80"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="127,63" extention="Button">
|
<component size="127,63" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0" />
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<loader id="n1_eeqm" name="icon" xy="0,0" size="114,58" url="ui://96mvx2mlvlhjcst" align="center" vAlign="middle" autoSize="true">
|
<loader id="n1_eeqm" name="icon" xy="0,0" size="114,58" url="ui://7ij0e6i2sv5g1" align="center" vAlign="middle" autoSize="true">
|
||||||
<relation target="" sidePair="width-width,height-height" />
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</loader>
|
</loader>
|
||||||
<text id="n2_vqon" name="n2" xy="0,0" size="127,63" fontSize="30" autoSize="none" text="" bold="true" />
|
<text id="n2_vqon" name="n2" xy="0,0" size="127,63" fontSize="30" autoSize="none" text=""/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue=".8" />
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="227,47" extention="Button" remark="123">
|
||||||
|
<controller name="button" pages="0,up,1,down" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n6" name="n6" src="sv5ge" fileName="component/create_room/image/pic08.png" xy="10,5" size="35,35">
|
||||||
|
<gearDisplay controller="button" pages="0"/>
|
||||||
|
</image>
|
||||||
|
<image id="n7" name="n7" src="sv5gf" fileName="component/create_room/image/single_btn_s.png" xy="10,5" size="35,35">
|
||||||
|
<gearDisplay controller="button" pages="1,3"/>
|
||||||
|
</image>
|
||||||
|
<text id="n8" name="title" xy="49,5" size="265,39" font="Microsoft YaHei" fontSize="28" color="#aa3300" vAlign="middle" autoSize="none" text="2"/>
|
||||||
|
</displayList>
|
||||||
|
<Button mode="Radio"/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="227,47" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n7_rpaz" name="n7" src="sv5gi" fileName="component/create_room/image/multiple_btn_n.png" xy="7,0" size="45,45" aspect="true">
|
||||||
|
<gearDisplay controller="button" pages="0"/>
|
||||||
|
</image>
|
||||||
|
<text id="n9_rpaz" name="title" xy="59,0" size="212,45" font="Microsoft YaHei" fontSize="22" color="#aa3300" vAlign="middle" autoSize="shrink" text=""/>
|
||||||
|
<image id="n10_vyn3" name="n10" src="sv5gi" fileName="component/create_room/image/multiple_btn_n.png" xy="7,0" size="40,45" aspect="true">
|
||||||
|
<gearDisplay controller="button" pages="1"/>
|
||||||
|
</image>
|
||||||
|
<image id="n11_vyn3" name="n11" src="sv5gj" fileName="component/create_room/image/gou.png" xy="-1,-4" size="60,53">
|
||||||
|
<gearDisplay controller="button" pages="1"/>
|
||||||
|
</image>
|
||||||
|
</displayList>
|
||||||
|
<Button mode="Check"/>
|
||||||
|
</component>
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="163,60" extention="Button" designImageAlpha="0">
|
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||||
<controller name="type" exported="true" pages="0,,1,,2," selected="0" />
|
<controller name="type" exported="true" pages="0,,1,,2," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text=""/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button />
|
<Button/>
|
||||||
</component>
|
</component>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
|
@ -1,28 +1,37 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packageDescription id="96mvx2ml">
|
<packageDescription id="7ij0e6i2">
|
||||||
<resources>
|
<resources>
|
||||||
<component id="10kys0" name="Com_help.xml" path="/" exported="true"/>
|
<component id="sv5g0" name="Btn_Common_Info.xml" path="/component/create_room/" exported="true"/>
|
||||||
<component id="10kys1" name="ComboBox1_item.xml" path="/" exported="true"/>
|
<image id="sv5g1" name="bjwf.png" path="/mgr/imgs/game/" exported="true"/>
|
||||||
<image id="10kys2" name="lskd.png" path="/" scale="9grid" scale9grid="6,5,21,19"/>
|
<component id="sv5g2" name="di01.xml" path="/component/create_room/" exported="true"/>
|
||||||
<image id="10kys3" name="fgx.png" path="/"/>
|
<font id="sv5g3" name="SIYUAN.TTF" path="/font/" exported="true" renderMode="" samplePointSize="16"/>
|
||||||
<image id="10kys4" name="yd.png" path="/"/>
|
<component id="sv5g4" name="Button3.xml" path="/"/>
|
||||||
<image id="10kys5" name="ly.png" path="/"/>
|
<image id="sv5g5" name="wenhao.png" path="/"/>
|
||||||
<component id="10kys6" name="Creat_RunFast_yueyang.xml" path="/" exported="true"/>
|
<component id="sv5g6" name="Com_help.xml" path="/" exported="true"/>
|
||||||
<component id="10kys7" name="xuangze.xml" path="/"/>
|
<component id="sv5g7" name="ComboBox1_item.xml" path="/" exported="true"/>
|
||||||
<image id="10kys8" name="dsj.png" path="/"/>
|
<image id="sv5g8" name="lskd.png" path="/" scale="9grid" scale9grid="6,5,21,19"/>
|
||||||
<image id="i3h6s9" name="wenhao.png" path="/"/>
|
<image id="sv5g9" name="fgx.png" path="/"/>
|
||||||
<component id="i3h6sa" name="Button3.xml" path="/"/>
|
<image id="sv5ga" name="yd.png" path="/"/>
|
||||||
<component id="f9vpsb" name="btn_add.xml" path="/"/>
|
<image id="sv5gb" name="ly.png" path="/"/>
|
||||||
<component id="f9vpsc" name="btn_sub.xml" path="/"/>
|
<component id="sv5gc" name="Creat_RunFast.xml" path="/" exported="true"/>
|
||||||
<component id="ocbrsh" name="Creat_RunFast.xml" path="/" exported="true"/>
|
<component id="sv5gd" name="Btn_cr_checkbox.xml" path="/component/create_room/" exported="true"/>
|
||||||
<image id="udgccso" name="icon.png" path="/" exported="true"/>
|
<image id="sv5ge" name="pic08.png" path="/component/create_room/image/" exported="true"/>
|
||||||
<image id="udgccsp" name="icon1-1.png" path="/" exported="true"/>
|
<image id="sv5gf" name="single_btn_s.png" path="/component/create_room/image/"/>
|
||||||
<image id="udgccsq" name="icon1.png" path="/" exported="true"/>
|
<image id="sv5gg" name="pic07.png" path="/component/create_room/image/" exported="true"/>
|
||||||
<image id="udgccsr" name="icon_1.png" path="/" exported="true"/>
|
<component id="sv5gh" name="Btn_cr_checkbox2.xml" path="/component/create_room/" exported="true"/>
|
||||||
<component id="vlhjcss" name="Btn_Common_Info.xml" path="/component/create_room/" exported="true"/>
|
<image id="sv5gi" name="multiple_btn_n.png" path="/component/create_room/image/"/>
|
||||||
<image id="vlhjcst" name="bjwf.png" path="/mgr/imgs/game/" exported="true"/>
|
<image id="sv5gj" name="gou.png" path="/component/create_room/image/"/>
|
||||||
<component id="vlhjcsu" name="di01.xml" path="/component/create_room/" exported="true"/>
|
<component id="sv5gk" name="Creat_RunFast_yueyang.xml" path="/" exported="true"/>
|
||||||
<font id="vlhjcsv" name="SIYUAN.TTF" path="/font/" exported="true" renderMode="" samplePointSize="16"/>
|
<component id="sv5gl" name="btn_add.xml" path="/"/>
|
||||||
|
<image id="sv5gm" name="button04.png" path="/component/create_room/image/" exported="true"/>
|
||||||
|
<component id="sv5gn" name="btn_sub.xml" path="/"/>
|
||||||
|
<image id="sv5go" name="button03.png" path="/component/create_room/image/" exported="true"/>
|
||||||
|
<image id="sv5gp" name="dsj.png" path="/"/>
|
||||||
|
<image id="sv5gq" name="icon.png" path="/" exported="true"/>
|
||||||
|
<image id="sv5gr" name="icon1.png" path="/" exported="true"/>
|
||||||
|
<image id="sv5gs" name="icon1-1.png" path="/" exported="true"/>
|
||||||
|
<image id="sv5gt" name="icon_1.png" path="/" exported="true"/>
|
||||||
|
<component id="sv5gu" name="xuangze.xml" path="/"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="Info_Poker_RunFastNew" path="..\wb_unity_pro\Assets\ART\extend\poker\runfast\ui" packageCount="2"/>
|
<publish name="Info_Poker_RunFastNew" path="..\wb_unity_pro\Assets\ART\extend\poker\runfast\ui" packageCount="2"/>
|
||||||
</packageDescription>
|
</packageDescription>
|
||||||
|
|
@ -1,25 +1,25 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="217,48" extention="Button">
|
<component size="217,48" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="2" />
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="2"/>
|
||||||
<controller name="selttime" pages="0,,1," selected="1" />
|
<controller name="selttime" pages="0,,1," selected="1"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n4_hs0y" name="n4" src="10kys2" fileName="lskd.png" xy="0,0" size="217,48">
|
<image id="n4_hs0y" name="n4" src="sv5g8" fileName="lskd.png" xy="0,0" size="217,48">
|
||||||
<relation target="" sidePair="width-width,height-height" />
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</image>
|
</image>
|
||||||
<text id="n5_hs0y" name="title" xy="44,0" size="162,48" fontSize="25" color="#2aff57" vAlign="middle" autoSize="none" singleLine="true" text="" bold="true">
|
<text id="n5_hs0y" name="title" xy="44,0" size="162,48" fontSize="25" color="#2aff57" vAlign="middle" autoSize="none" singleLine="true" text="">
|
||||||
<relation target="" sidePair="width-width,height-height" />
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</text>
|
</text>
|
||||||
<image id="n6_hs0y" name="n6" src="10kys8" fileName="dsj.png" xy="181,27" skew="180,0" />
|
<image id="n6_hs0y" name="n6" src="sv5gp" fileName="dsj.png" xy="181,27" skew="180,0"/>
|
||||||
<image id="n7_hs0y" name="n7" src="10kys4" fileName="yd.png" xy="8,10" />
|
<image id="n7_hs0y" name="n7" src="sv5ga" fileName="yd.png" xy="8,10"/>
|
||||||
<image id="n8_hs0y" name="n8" src="10kys5" fileName="ly.png" xy="11,13" />
|
<image id="n8_hs0y" name="n8" src="sv5gb" fileName="ly.png" xy="11,13"/>
|
||||||
<list id="n9_hs0y" name="list" xy="0,-195" size="217,194" overflow="scroll" defaultItem="ui://96mvx2ml10kys1" align="center" vAlign="bottom" autoClearItems="true">
|
<list id="n9_hs0y" name="list" xy="0,-195" size="217,194" overflow="scroll" defaultItem="ui://7ij0e6i2sv5g7" align="center" vAlign="bottom" autoClearItems="true">
|
||||||
<gearDisplay controller="selttime" pages="1" />
|
<gearDisplay controller="selttime" pages="1"/>
|
||||||
<relation target="" sidePair="width-width" />
|
<relation target="" sidePair="width-width"/>
|
||||||
<item />
|
<item/>
|
||||||
<item />
|
<item/>
|
||||||
<item />
|
<item/>
|
||||||
<item />
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button mode="Check" />
|
<Button mode="Check"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="69,69" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n1" name="n1" src="i3h6s9" fileName="wenhao.png" xy="0,0">
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
</displayList>
|
||||||
|
<Button mode="Check"/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="988,428" overflow="scroll">
|
||||||
|
<displayList>
|
||||||
|
<text id="n2_tj7d" name="tex_rule" xy="0,0" size="984,2071" font="Microsoft YaHei" fontSize="28" color="#716155" leading="8" ubb="true" autoSize="none" text="游戏规则 参与人数:3人。 出完的玩家获胜。遵循有大必出原则。 输赢条件: 先出完自己手中的牌。 使用牌数 16张玩法使用48张牌,扣除两张王牌,3个2,一个A。 15张玩法使用45张牌,扣除两张王牌,3个2,3个A,一个K。上手基本简单玩法。 出牌过程 1、每局随机翻取一张明牌,拿到明牌的玩家先出,所出牌型正确即可; 2、游戏者依次轮流出牌,后一家打出的牌必须比前一家打出的牌大,有大必出; 3、如果一轮之中其他游戏者都"要不起",则最后一次出牌者继续出牌; 4、重复1-3直到某个游戏者手中牌全部出完。 牌的大小 本游戏的牌点由大到小排列为:2、A、K、Q、J、10、9、8、7、6、5、4、3; 2只能单出,单张、对、连对、三带二、飞机带翅膀、顺子、炸弹等牌型,只能根据牌点确定大小,但要求出牌的数量必须相同; 最后一手牌牌可以三带一或者不带、飞机以此类推。 牌型介绍 单张:可以是手中的任意一张牌; 对:两张牌点相同的牌,两张牌的花色可以不同; 连对:两对或两对以上相连的牌,如:5566。 三带二:三张牌点相同的牌,带二张杂牌,如:55566、55567;或者三不带 不必打标注:三带一对:三张牌点相同的牌,带一张杂牌,如:5556、5557; 飞机带翅膀,两个或两个以上相连的三同张牌,如:5556667788,QQQKKK8899。三张必须相连,两对可以不相连 不必打标注:6带2对,6带2张,6不带,接的人必须相同牌型。 顺子,五张或五张以上牌点连续的牌。例如:3456789,10JQKA等。 炸弹,四张或四张以上牌点相同的牌,如:6666、8888。 游戏特色 1、游戏共有48张牌,除去大王,小王,红桃2,草花2,方片2,黑桃A,每人16张,先出完牌的玩家获胜。 2、第一局获得获得黑桃3的玩家先出牌,且必须出带黑桃3的任意牌型。第一局结束后由上一局获胜的玩家先行出牌,可以出任意符合规则的牌型。出牌过程中有大过上家的牌则必须出,不能过牌。 3、下家报单时,如果要出单张则出最大的单张,如果出了手中较小的单张提示玩家违反游戏规则,无法出牌 不必打标注:下家报单时玩家可以出任意牌 4、除炸弹可以炸任何牌型,其余不同牌型互不相压,同种牌型比较点数大小,相同牌型则出牌数量必须一致。 " bold="true" />
|
||||||
|
</displayList>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="217,48" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="2" />
|
||||||
|
<displayList>
|
||||||
|
<image id="n6_hs0y" name="n6" src="10kys2" fileName="lskd.png" xy="0,0" size="217,48" />
|
||||||
|
<text id="n2_hs0y" name="title" xy="44,0" size="173,48" fontSize="25" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="" bold="true">
|
||||||
|
<gearColor controller="button" pages="2" values="#ffffff,#000000" default="#ffffff,#000000" />
|
||||||
|
<relation target="" sidePair="width-width,height-height" />
|
||||||
|
</text>
|
||||||
|
<image id="n3_hs0y" name="n3" src="10kys3" fileName="fgx.png" xy="0,46" />
|
||||||
|
<image id="n5_hs0y" name="n5" src="10kys4" fileName="yd.png" xy="8,10" />
|
||||||
|
<image id="n4_hs0y" name="n4" src="10kys5" fileName="ly.png" xy="11,13" visible="false" />
|
||||||
|
</displayList>
|
||||||
|
<Button mode="Radio" />
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,212 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="980,425" overflow="scroll" designImageLayer="1">
|
||||||
|
<controller name="round" pages="0,,1,,2,,3," selected="0" />
|
||||||
|
<controller name="rule" pages="0,,1," selected="0" />
|
||||||
|
<controller name="play_list" pages="0,,1," selected="0">
|
||||||
|
<action type="change_page" fromPage="1" toPage="0" controller="ThreeA" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="willBeOut" pages="0,,1," selected="0" />
|
||||||
|
<controller name="bombSpring" pages="0,,1," selected="0" />
|
||||||
|
<controller name="heart10" pages="0,,1," selected="0" />
|
||||||
|
<controller name="player_num" pages="0,,1," selected="0">
|
||||||
|
<action type="change_page" fromPage="" toPage="" controller="wenhao" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="Cost" pages="0,,1," selected="0" />
|
||||||
|
<controller name="agent" pages="0,,1,,2," selected="0" />
|
||||||
|
<controller name="showlength" pages="0,,1," selected="0" />
|
||||||
|
<controller name="fourBeltThree" pages="0,,1,,2,,3," selected="0">
|
||||||
|
<action type="change_page" fromPage="0" toPage="1,2,3" controller="demolition" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="demolition" pages="0,,1," selected="0">
|
||||||
|
<action type="change_page" fromPage="0" toPage="1" controller="fourBeltThree" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="fangzuobi" pages="0,,1," selected="0" />
|
||||||
|
<controller name="wenhao" pages="0,,1," selected="0" />
|
||||||
|
<controller name="ThreeA" pages="0,,1," selected="0" />
|
||||||
|
<controller name="piao" pages="0,,1,,2,,3," selected="0" />
|
||||||
|
<controller name="daniao" pages="0,0,1,10,2,20,3,50" selected="0" />
|
||||||
|
<controller name="award" pages="0,,1," selected="0" />
|
||||||
|
<controller name="sandaidan" pages="0,,1," selected="0" />
|
||||||
|
<displayList>
|
||||||
|
<component id="n132_p5qg" name="n132" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,10" group="n135_p5qg" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="玩法" />
|
||||||
|
</component>
|
||||||
|
<component id="n134_p5qg" name="wf1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,15" size="348,47" group="n135_p5qg">
|
||||||
|
<Button checked="true" title="15张" controller="play_list" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n133_p5qg" name="wf2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,15" size="349,47" group="n135_p5qg">
|
||||||
|
<Button title="16张" controller="play_list" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n135_p5qg" name="n135" xy="0,10" size="932,60" />
|
||||||
|
<component id="n23_mz4j" name="n23" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,63" group="n99_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="局数" />
|
||||||
|
</component>
|
||||||
|
<image id="n58_se1s" name="n58" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="279,77" group="n60_se1s" />
|
||||||
|
<text id="n59_se1s" name="tex_price1" xy="314,76" size="26,29" group="n60_se1s" fontSize="20" color="#ffffff" text="10" bold="true" />
|
||||||
|
<group id="n60_se1s" name="n60" xy="279,76" size="68,29" group="n99_nbeh" advanced="true" />
|
||||||
|
<image id="n61_se1s" name="n61" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="450,79" group="n63_se1s" />
|
||||||
|
<text id="n62_se1s" name="tex_price2" xy="485,77" size="26,29" group="n63_se1s" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n63_se1s" name="n63" xy="450,77" size="68,29" group="n99_nbeh" advanced="true" />
|
||||||
|
<image id="n64_se1s" name="n64" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="613,79" size="68,24" group="n66_se1s" />
|
||||||
|
<text id="n65_se1s" name="tex_price3" xy="648,77" size="26,29" group="n66_se1s" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n66_se1s" name="n66" xy="613,77" size="68,29" group="n99_nbeh" advanced="true" />
|
||||||
|
<image id="n137_9q4t" name="n137" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="795,79" size="68,24" group="n139_9q4t" />
|
||||||
|
<text id="n138_9q4t" name="tex_price4" xy="830,77" size="26,29" group="n139_9q4t" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n139_9q4t" name="n139" xy="795,77" size="68,29" group="n99_nbeh" advanced="true" />
|
||||||
|
<component id="n0_sh1u" name="round1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,70" group="n99_nbeh">
|
||||||
|
<Button checked="true" title="1局" controller="round" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n1_sh1u" name="round2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="354,70" group="n99_nbeh">
|
||||||
|
<Button title="8局" controller="round" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n16_sh1u" name="round3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="520,70" group="n99_nbeh">
|
||||||
|
<Button title="10局" controller="round" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n136_9q4t" name="round4" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="686,70" group="n99_nbeh">
|
||||||
|
<Button title="20局" controller="round" page="3" />
|
||||||
|
</component>
|
||||||
|
<group id="n99_nbeh" name="n99" xy="1,63" size="912,60" />
|
||||||
|
<component id="n25_mz4j" name="n25" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,118" group="n102_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="人数" />
|
||||||
|
</component>
|
||||||
|
<component id="n44_m1mb" name="people_3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,123" size="349,47" group="n102_nbeh">
|
||||||
|
<Button title=" 3 人" controller="player_num" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n45_m1mb" name="people_2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,123" size="348,47" group="n102_nbeh">
|
||||||
|
<Button checked="true" title=" 2 人" controller="player_num" page="0" />
|
||||||
|
</component>
|
||||||
|
<group id="n102_nbeh" name="n102" xy="0,118" size="932,60" />
|
||||||
|
<component id="n29_c6dl" name="n29" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,183" group="n103_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="出牌" />
|
||||||
|
</component>
|
||||||
|
<component id="n31_c6dl" name="random" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="183,192" size="240,47" group="n103_nbeh">
|
||||||
|
<Button checked="true" title=" 随机翻牌先出" controller="rule" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n82_eclw" name="demolition" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="433,307" size="196,47" group="n103_nbeh">
|
||||||
|
<Button title="炸弹不能拆" controller="demolition" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n32_c6dl" name="heirao3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="433,192" size="190,47" group="n103_nbeh">
|
||||||
|
<Button title=" 黑桃3先出" controller="rule" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n81_eclw" name="fangzuobi" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="720,195" size="172,47" group="n103_nbeh">
|
||||||
|
<gearDisplay controller="player_num" pages="1" />
|
||||||
|
<Button title="防作弊" controller="fangzuobi" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n103_nbeh" name="n103" xy="0,183" size="892,171" />
|
||||||
|
<component id="n34_910i" name="n34" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,248" group="n104_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="玩法选项" />
|
||||||
|
</component>
|
||||||
|
<component id="n28_c6dl" name="will_be_card" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,253" size="189,47" group="n104_nbeh" touchable="false">
|
||||||
|
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n74_ndir" name="fourBeltThree" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="720,255" size="172,47" group="n104_nbeh">
|
||||||
|
<Button title="四带二" controller="fourBeltThree" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n73_j7ij" name="showlength" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="431,255" size="207,47" group="n104_nbeh">
|
||||||
|
<Button title="显示剩余牌" controller="showlength" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n87_dz27" name="fourBeltTwo" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="723,311" size="172,47" group="n104_nbeh">
|
||||||
|
<Button title="四带三" controller="fourBeltThree" page="3" />
|
||||||
|
</component>
|
||||||
|
<component id="n127_qhvf" name="sandaidan" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,363" size="264,47" group="n104_nbeh">
|
||||||
|
<Button title="三张飞机带单或者对子" controller="sandaidan" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n90_f2pr" name="ThreeA" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,306" size="214,47" group="n104_nbeh">
|
||||||
|
<gearDisplay controller="play_list" pages="1" />
|
||||||
|
<Button title="三个A算炸弹" controller="ThreeA" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n104_nbeh" name="n104" xy="0,248" size="895,162" />
|
||||||
|
<component id="n42_m1mb" name="n42" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,596" group="n40_910i" controller="type,0">
|
||||||
|
<gearDisplay controller="willBeOut" pages="0" />
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="高级玩法" />
|
||||||
|
</component>
|
||||||
|
<component id="n41_910i" name="heart10" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,601" size="350,47" group="n40_910i">
|
||||||
|
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n39_910i" name="bomb_spring" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,601" size="454,47" group="n47_tpo1">
|
||||||
|
<gearDisplay controller="player_num" pages="1" />
|
||||||
|
<Button checked="true" title=" 4个3或3个A 1个2春天" controller="bombSpring" page="0" />
|
||||||
|
</component>
|
||||||
|
<group id="n47_tpo1" name="n47" xy="583,601" size="454,47" group="n40_910i" advanced="true">
|
||||||
|
<gearDisplay controller="play_list" pages="1" />
|
||||||
|
</group>
|
||||||
|
<component id="n89_gzyl" name="Threelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="584,667" size="256,47" group="n128_qhvf">
|
||||||
|
<Button title="三张少带可接完" />
|
||||||
|
</component>
|
||||||
|
<component id="n88_gzyl" name="planelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,661" size="264,47" group="n128_qhvf">
|
||||||
|
<Button title="飞机少带可接完" />
|
||||||
|
</component>
|
||||||
|
<group id="n128_qhvf" name="n128" xy="187,661" size="653,53" group="n40_910i" advanced="true">
|
||||||
|
<gearDisplay controller="sandaidan" pages="0" />
|
||||||
|
</group>
|
||||||
|
<component id="n129_nk4v" name="fan_sprint" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,666" size="256,47" group="n131_nk4v">
|
||||||
|
<Button title="反春天" />
|
||||||
|
</component>
|
||||||
|
<component id="n130_nk4v" name="boom_add" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,667" size="256,47" group="n131_nk4v">
|
||||||
|
<Button title="炸弹分数算赢家" />
|
||||||
|
</component>
|
||||||
|
<group id="n131_nk4v" name="n131" xy="186,666" size="653,48" group="n40_910i" advanced="true">
|
||||||
|
<gearDisplay controller="sandaidan" pages="1" />
|
||||||
|
</group>
|
||||||
|
<group id="n40_910i" name="n40" xy="0,596" size="1037,118" advanced="true">
|
||||||
|
<gearDisplay controller="willBeOut" pages="0" />
|
||||||
|
</group>
|
||||||
|
<component id="n83_eclw" name="n83" src="i3h6sa" fileName="Button3.xml" xy="988,289" size="36,36" aspect="true">
|
||||||
|
<gearDisplay controller="player_num" pages="1" />
|
||||||
|
<Button controller="wenhao" page="1" />
|
||||||
|
</component>
|
||||||
|
<graph id="n84_eclw" name="n84" xy="776,231" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000" />
|
||||||
|
<text id="n85_eclw" name="n85" xy="778,232" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌" bold="true" />
|
||||||
|
<group id="n86_eclw" name="n86" xy="776,231" size="251,116" advanced="true">
|
||||||
|
<gearDisplay controller="wenhao" pages="1" />
|
||||||
|
</group>
|
||||||
|
<component id="n92_i3h6" name="n92" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,415" group="n98_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="飘分" />
|
||||||
|
</component>
|
||||||
|
<component id="n94_i3h6" name="btn_piao_option1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,425" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button checked="true" title="不飘" controller="piao" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n95_i3h6" name="btn_piao_option2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="435,425" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="飘123" controller="piao" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n96_i3h6" name="btn_piao_option3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="724,425" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="飘235" controller="piao" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n97_i3h6" name="btn_piao_option4" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,479" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="飘258" controller="piao" page="3" />
|
||||||
|
</component>
|
||||||
|
<group id="n98_nbeh" name="n98" xy="1,415" size="880,111" />
|
||||||
|
<component id="n105_nbeh" name="n105" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,529" group="n111_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="打鸟" />
|
||||||
|
</component>
|
||||||
|
<component id="n107_nbeh" name="btn_daniao_0" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,539" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button checked="true" title="不打鸟" controller="daniao" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n108_nbeh" name="btn_daniao_1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="351,539" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="10分" controller="daniao" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n109_nbeh" name="btn_daniao_2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="531,539" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="20分" controller="daniao" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n110_nbeh" name="btn_daniao_3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="724,539" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="50分" controller="daniao" page="3" />
|
||||||
|
</component>
|
||||||
|
<group id="n111_nbeh" name="n111" xy="1,529" size="880,60" />
|
||||||
|
</displayList>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,242 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="980,425" overflow="scroll" designImageLayer="1">
|
||||||
|
<controller name="round" pages="0,,1,,2,,3,,9," selected="0" />
|
||||||
|
<controller name="rule" pages="0,,1," selected="0" />
|
||||||
|
<controller name="play_list" pages="0,,1," selected="0">
|
||||||
|
<action type="change_page" fromPage="1" toPage="0" controller="ThreeA" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="willBeOut" pages="0,,1," selected="0" />
|
||||||
|
<controller name="bombSpring" pages="0,,1," selected="0" />
|
||||||
|
<controller name="heart10" pages="0,,1," selected="0" />
|
||||||
|
<controller name="player_num" pages="0,,1," selected="0">
|
||||||
|
<action type="change_page" fromPage="" toPage="" controller="wenhao" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="Cost" pages="0,,1," selected="0" />
|
||||||
|
<controller name="agent" pages="0,,1,,2," selected="0" />
|
||||||
|
<controller name="showlength" pages="0,,1," selected="0" />
|
||||||
|
<controller name="fourBeltThree" pages="0,,1,,2,,3," selected="0">
|
||||||
|
<action type="change_page" fromPage="0" toPage="1,2,3" controller="demolition" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="demolition" pages="0,,1," selected="0">
|
||||||
|
<action type="change_page" fromPage="0" toPage="1" controller="fourBeltThree" targetPage="0" />
|
||||||
|
</controller>
|
||||||
|
<controller name="fangzuobi" pages="0,,1," selected="0" />
|
||||||
|
<controller name="wenhao" pages="0,,1," selected="0" />
|
||||||
|
<controller name="ThreeA" pages="0,,1," selected="0" />
|
||||||
|
<controller name="piao" pages="0,,1,,2,,3," selected="0" />
|
||||||
|
<controller name="daniao" pages="0,0,1,10,2,20,3,50" selected="0" />
|
||||||
|
<controller name="award" pages="0,,1," selected="0" />
|
||||||
|
<controller name="sandaidan" pages="0,,1," selected="0" />
|
||||||
|
<controller name="xipai" pages="0,,1," selected="0" />
|
||||||
|
<controller name="xipaictr" pages="0,,1," selected="0" />
|
||||||
|
<displayList>
|
||||||
|
<component id="n132_p5qg" name="n132" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,10" group="n135_p5qg" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="玩法" />
|
||||||
|
</component>
|
||||||
|
<component id="n134_p5qg" name="wf1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,15" size="348,47" group="n135_p5qg">
|
||||||
|
<Button checked="true" title="15张" controller="play_list" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n133_p5qg" name="wf2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,15" size="349,47" group="n135_p5qg">
|
||||||
|
<Button title="16张" controller="play_list" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n135_p5qg" name="n135" xy="0,10" size="932,60" />
|
||||||
|
<component id="n25_mz4j" name="n25" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,118" group="n102_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="人数" />
|
||||||
|
</component>
|
||||||
|
<component id="n44_m1mb" name="people_3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,123" size="349,47" group="n102_nbeh">
|
||||||
|
<Button title=" 3 人" controller="player_num" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n45_m1mb" name="people_2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,123" size="348,47" group="n102_nbeh">
|
||||||
|
<Button checked="true" title=" 2 人" controller="player_num" page="0" />
|
||||||
|
</component>
|
||||||
|
<group id="n102_nbeh" name="n102" xy="0,118" size="932,60" />
|
||||||
|
<component id="n29_c6dl" name="n29" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,183" group="n103_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="出牌" />
|
||||||
|
</component>
|
||||||
|
<component id="n31_c6dl" name="random" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="183,192" size="240,47" group="n103_nbeh">
|
||||||
|
<Button checked="true" title=" 随机翻牌先出" controller="rule" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n82_eclw" name="demolition" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="453,309" size="196,47" group="n103_nbeh">
|
||||||
|
<Button title="炸弹不能拆" controller="demolition" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n32_c6dl" name="heirao3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="433,192" size="190,47" group="n103_nbeh">
|
||||||
|
<Button title=" 黑桃3先出" controller="rule" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n81_eclw" name="fangzuobi" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="720,195" size="172,47" group="n103_nbeh">
|
||||||
|
<gearDisplay controller="player_num" pages="1" />
|
||||||
|
<Button title="防作弊" controller="fangzuobi" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n103_nbeh" name="n103" xy="0,183" size="892,173" />
|
||||||
|
<component id="n34_910i" name="n34" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,248" group="n104_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="玩法选项" />
|
||||||
|
</component>
|
||||||
|
<component id="n28_c6dl" name="will_be_card" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,254" size="189,47" group="n104_nbeh" touchable="false">
|
||||||
|
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n74_ndir" name="fourBeltThree" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="718,253" size="172,47" group="n104_nbeh">
|
||||||
|
<Button title="四带二" />
|
||||||
|
</component>
|
||||||
|
<component id="n73_j7ij" name="showlength" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="454,254" size="207,47" group="n104_nbeh">
|
||||||
|
<Button title="显示剩余牌" controller="showlength" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n87_dz27" name="fourBeltTwo" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="721,309" size="172,47" group="n104_nbeh">
|
||||||
|
<Button title="四带三" />
|
||||||
|
</component>
|
||||||
|
<component id="n127_qhvf" name="sandaidan" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="182,306" size="264,47" group="n104_nbeh">
|
||||||
|
<Button title="三张飞机带单或者对子" controller="sandaidan" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n90_f2pr" name="ThreeA" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,306" size="214,47" group="n104_nbeh">
|
||||||
|
<gearDisplay controller="play_list" pages="1" />
|
||||||
|
<Button title="三个A算炸弹" controller="ThreeA" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n104_nbeh" name="n104" xy="0,248" size="893,108" />
|
||||||
|
<component id="n42_m1mb" name="n42" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,564" group="n40_910i" controller="type,0">
|
||||||
|
<gearDisplay controller="willBeOut" pages="0" />
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="高级玩法" />
|
||||||
|
</component>
|
||||||
|
<component id="n41_910i" name="heart10" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,569" size="350,47" group="n40_910i">
|
||||||
|
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n39_910i" name="bomb_spring" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,569" size="454,47" group="n47_tpo1">
|
||||||
|
<gearDisplay controller="player_num" pages="1" />
|
||||||
|
<Button checked="true" title=" 4个3或3个A 1个2春天" controller="bombSpring" page="0" />
|
||||||
|
</component>
|
||||||
|
<group id="n47_tpo1" name="n47" xy="583,569" size="454,47" group="n40_910i" advanced="true">
|
||||||
|
<gearDisplay controller="play_list" pages="1" />
|
||||||
|
</group>
|
||||||
|
<component id="n89_gzyl" name="Threelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="584,635" size="256,47" group="n128_qhvf">
|
||||||
|
<Button title="三张少带可接完" />
|
||||||
|
</component>
|
||||||
|
<component id="n88_gzyl" name="planelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="187,629" size="264,47" group="n128_qhvf">
|
||||||
|
<Button title="飞机少带可接完" />
|
||||||
|
</component>
|
||||||
|
<group id="n128_qhvf" name="n128" xy="187,629" size="653,53" group="n40_910i" advanced="true">
|
||||||
|
<gearDisplay controller="sandaidan" pages="0" />
|
||||||
|
</group>
|
||||||
|
<component id="n129_nk4v" name="fan_sprint" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,634" size="256,47" group="n131_nk4v">
|
||||||
|
<Button title="反春天" />
|
||||||
|
</component>
|
||||||
|
<component id="n130_nk4v" name="boom_add" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="583,635" size="256,47" group="n131_nk4v">
|
||||||
|
<Button title="炸弹分数算赢家" />
|
||||||
|
</component>
|
||||||
|
<group id="n131_nk4v" name="n131" xy="186,634" size="653,48" group="n40_910i" advanced="true">
|
||||||
|
<gearDisplay controller="sandaidan" pages="1" />
|
||||||
|
</group>
|
||||||
|
<group id="n40_910i" name="n40" xy="0,564" size="1037,118" advanced="true">
|
||||||
|
<gearDisplay controller="willBeOut" pages="0" />
|
||||||
|
</group>
|
||||||
|
<component id="n83_eclw" name="n83" src="i3h6sa" fileName="Button3.xml" xy="988,289" size="36,36" aspect="true">
|
||||||
|
<gearDisplay controller="player_num" pages="1" />
|
||||||
|
<Button controller="wenhao" page="1" />
|
||||||
|
</component>
|
||||||
|
<graph id="n84_eclw" name="n84" xy="776,231" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000" />
|
||||||
|
<text id="n85_eclw" name="n85" xy="778,232" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌" bold="true" />
|
||||||
|
<group id="n86_eclw" name="n86" xy="776,231" size="251,116" advanced="true">
|
||||||
|
<gearDisplay controller="wenhao" pages="1" />
|
||||||
|
</group>
|
||||||
|
<component id="n92_i3h6" name="n92" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,370" group="n98_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="飘分" />
|
||||||
|
</component>
|
||||||
|
<component id="n94_i3h6" name="btn_piao_option1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,380" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button checked="true" title="不飘" controller="piao" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n95_i3h6" name="btn_piao_option2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="435,380" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="飘123" controller="piao" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n96_i3h6" name="btn_piao_option3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="724,380" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="飘235" controller="piao" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n97_i3h6" name="btn_piao_option4" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,434" size="157,47" group="n98_nbeh">
|
||||||
|
<gearLook controller="daniao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="飘258" controller="piao" page="3" />
|
||||||
|
</component>
|
||||||
|
<group id="n98_nbeh" name="n98" xy="1,370" size="880,111" />
|
||||||
|
<component id="n105_nbeh" name="n105" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,491" group="n111_nbeh" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="打鸟" />
|
||||||
|
</component>
|
||||||
|
<component id="n107_nbeh" name="btn_daniao_0" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,501" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button checked="true" title="不打鸟" controller="daniao" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n108_nbeh" name="btn_daniao_1" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="350,501" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="10分" controller="daniao" page="1" />
|
||||||
|
</component>
|
||||||
|
<component id="n109_nbeh" name="btn_daniao_2" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="530,501" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="20分" controller="daniao" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n110_nbeh" name="btn_daniao_3" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="723,501" size="157,47" group="n111_nbeh">
|
||||||
|
<gearLook controller="piao" pages="1,2,3" values="1,0,1,0|1,0,1,0|1,0,1,0" default="1,0,0,1" />
|
||||||
|
<Button title="50分" controller="daniao" page="3" />
|
||||||
|
</component>
|
||||||
|
<group id="n111_nbeh" name="n111" xy="0,491" size="880,60" />
|
||||||
|
<component id="n137_udgc" name="n137" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="1,62" group="n154_udgc" controller="type,0">
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<Button title="局数" />
|
||||||
|
</component>
|
||||||
|
<image id="n138_udgc" name="n138" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="278,80" group="n140_udgc" />
|
||||||
|
<text id="n139_udgc" name="tex_price1" xy="313,79" size="27,29" group="n140_udgc" fontSize="20" color="#ffffff" text="10" bold="true" />
|
||||||
|
<group id="n140_udgc" name="n140" xy="278,79" size="68,29" group="n154_udgc" advanced="true" />
|
||||||
|
<image id="n141_udgc" name="n141" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="530,78" group="n143_udgc" />
|
||||||
|
<text id="n142_udgc" name="tex_price2" xy="565,76" size="27,29" group="n143_udgc" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n143_udgc" name="n143" xy="530,76" size="68,29" group="n154_udgc" advanced="true" />
|
||||||
|
<image id="n144_udgc" name="n144" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="798,82" size="68,24" group="n146_udgc" />
|
||||||
|
<text id="n145_udgc" name="tex_price3" xy="833,80" size="27,29" group="n146_udgc" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n146_udgc" name="n146" xy="798,80" size="68,29" group="n154_udgc" advanced="true" />
|
||||||
|
<image id="n147_udgc" name="n147" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="840,161" size="68,24" group="n149_udgc" />
|
||||||
|
<text id="n148_udgc" name="tex_price4" xy="875,159" size="27,29" group="n149_udgc" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n149_udgc" name="n149" xy="840,159" size="68,29" group="n154_udgc" visible="false" advanced="true" />
|
||||||
|
<image id="n164_ozsy" name="n164" src="voh67hzc" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="908,79" size="68,24" group="n166_ozsy" />
|
||||||
|
<text id="n165_ozsy" name="tex_price5" xy="943,77" size="27,29" group="n166_ozsy" fontSize="20" color="#ffffff" text="20" bold="true" />
|
||||||
|
<group id="n166_ozsy" name="n166" xy="908,77" size="68,29" group="n154_udgc" visible="false" advanced="true" />
|
||||||
|
<component id="n150_udgc" name="round1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="180,68" group="n154_udgc">
|
||||||
|
<Button checked="true" title="1局" controller="round" page="0" />
|
||||||
|
</component>
|
||||||
|
<component id="n151_udgc" name="round2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="687,68" group="n154_udgc">
|
||||||
|
<Button title="8局" controller="round" page="2" />
|
||||||
|
</component>
|
||||||
|
<component id="n152_udgc" name="round3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="882,72" group="n154_udgc" visible="false" touchable="false">
|
||||||
|
<Button title="8局" controller="round" page="3" />
|
||||||
|
</component>
|
||||||
|
<component id="n153_udgc" name="round4" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="797,68" group="n154_udgc" visible="false" touchable="false">
|
||||||
|
<Button title="20局" controller="round" page="9" />
|
||||||
|
</component>
|
||||||
|
<component id="n163_ozsy" name="round5" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="419,68" group="n154_udgc">
|
||||||
|
<Button title="4局" controller="round" page="1" />
|
||||||
|
</component>
|
||||||
|
<group id="n154_udgc" name="n154" xy="1,62" size="1108,126" />
|
||||||
|
<component id="n155_piwz" name="n155" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="-1,696" group="n162_piwz">
|
||||||
|
<Button title="洗牌" />
|
||||||
|
</component>
|
||||||
|
<component id="n156_piwz" name="xipai" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,706" size="157,47" group="n162_piwz">
|
||||||
|
<Button title="洗牌" controller="xipaictr" page="1" />
|
||||||
|
</component>
|
||||||
|
<text id="n157_piwz" name="n157" xy="146,774" size="200,39" group="n161_piwz" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置洗牌积分:" />
|
||||||
|
<graph id="n158_piwz" name="n158" xy="351,777" size="93,31" group="n161_piwz" type="rect" fillColor="#99000000" />
|
||||||
|
<text id="n159_piwz" name="xipaifen" xy="352,772" size="94,42" group="n161_piwz" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="1" bold="true" />
|
||||||
|
<component id="n160_piwz" name="sdsrbtn" src="r0qx7i5y" fileName="component/create_room/Btn_Common_Info.xml" pkg="27vd145b" xy="456,762" group="n161_piwz" />
|
||||||
|
<group id="n161_piwz" name="n161" xy="146,762" size="437,63" group="n162_piwz" advanced="true">
|
||||||
|
<gearDisplay controller="xipaictr" pages="1" />
|
||||||
|
</group>
|
||||||
|
<group id="n162_piwz" name="n162" xy="-1,696" size="584,129" advanced="true" />
|
||||||
|
<text id="n167_vlhj" name="n167" xy="198,842" size="200,39" group="n171_vlhj" font="Microsoft YaHei" fontSize="28" color="#b53e19" bold="true" text="设置按抽积分:" />
|
||||||
|
<graph id="n168_vlhj" name="n168" xy="403,845" size="93,31" group="n171_vlhj" type="rect" fillColor="#99000000" />
|
||||||
|
<text id="n169_vlhj" name="anchoufen" xy="404,840" size="94,42" group="n171_vlhj" fontSize="30" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="0" bold="true" />
|
||||||
|
<component id="n170_vlhj" name="anchoubtn" src="vlhjcss" fileName="component/create_room/Btn_Common_Info.xml" xy="508,830" group="n171_vlhj" />
|
||||||
|
<group id="n171_vlhj" name="n171" xy="198,830" size="437,63" advanced="true" />
|
||||||
|
<component id="n172_vlhj" name="n172" src="vlhjcsu" fileName="component/create_room/di01.xml" xy="-1,831">
|
||||||
|
<Button title="按抽" />
|
||||||
|
</component>
|
||||||
|
</displayList>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="78,37" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<loader id="n2_r282" name="n2" xy="0,0" size="78,37" url="ui://27vd145botnw9h" autoSize="true"/>
|
||||||
|
</displayList>
|
||||||
|
<Button downEffect="dark" downEffectValue="0.80"/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="78,37" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<loader id="n2_r282" name="n2" xy="0,0" size="78,37" url="ui://27vd145botnw9g" autoSize="true"/>
|
||||||
|
</displayList>
|
||||||
|
<Button downEffect="dark" downEffectValue="0.80"/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="127,63" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0" />
|
||||||
|
<displayList>
|
||||||
|
<loader id="n1_eeqm" name="icon" xy="0,0" size="114,58" url="ui://96mvx2mlvlhjcst" align="center" vAlign="middle" autoSize="true">
|
||||||
|
<relation target="" sidePair="width-width,height-height" />
|
||||||
|
</loader>
|
||||||
|
<text id="n2_vqon" name="n2" xy="0,0" size="127,63" fontSize="30" autoSize="none" text="" bold="true" />
|
||||||
|
</displayList>
|
||||||
|
<Button downEffect="dark" downEffectValue=".8" />
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="163,60" extention="Button" designImageAlpha="0">
|
||||||
|
<controller name="type" exported="true" pages="0,,1,,2," selected="0" />
|
||||||
|
<displayList>
|
||||||
|
<text id="n10_qjw9" name="title" xy="0,0" size="163,60" font="Microsoft YaHei" fontSize="28" color="#367256" vAlign="middle" autoSize="shrink" text="" bold="true" />
|
||||||
|
</displayList>
|
||||||
|
<Button />
|
||||||
|
</component>
|
||||||
|
After Width: | Height: | Size: 1020 B |
|
After Width: | Height: | Size: 939 B |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 7.0 KiB |
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packageDescription id="96mvx2ml">
|
||||||
|
<resources>
|
||||||
|
<component id="10kys0" name="Com_help.xml" path="/" exported="true"/>
|
||||||
|
<component id="10kys1" name="ComboBox1_item.xml" path="/" exported="true"/>
|
||||||
|
<image id="10kys2" name="lskd.png" path="/" scale="9grid" scale9grid="6,5,21,19"/>
|
||||||
|
<image id="10kys3" name="fgx.png" path="/"/>
|
||||||
|
<image id="10kys4" name="yd.png" path="/"/>
|
||||||
|
<image id="10kys5" name="ly.png" path="/"/>
|
||||||
|
<component id="10kys6" name="Creat_RunFast_yueyang.xml" path="/" exported="true"/>
|
||||||
|
<component id="10kys7" name="xuangze.xml" path="/"/>
|
||||||
|
<image id="10kys8" name="dsj.png" path="/"/>
|
||||||
|
<image id="i3h6s9" name="wenhao.png" path="/"/>
|
||||||
|
<component id="i3h6sa" name="Button3.xml" path="/"/>
|
||||||
|
<component id="f9vpsb" name="btn_add.xml" path="/"/>
|
||||||
|
<component id="f9vpsc" name="btn_sub.xml" path="/"/>
|
||||||
|
<component id="ocbrsh" name="Creat_RunFast.xml" path="/" exported="true"/>
|
||||||
|
<image id="udgccso" name="icon.png" path="/" exported="true"/>
|
||||||
|
<image id="udgccsp" name="icon1-1.png" path="/" exported="true"/>
|
||||||
|
<image id="udgccsq" name="icon1.png" path="/" exported="true"/>
|
||||||
|
<image id="udgccsr" name="icon_1.png" path="/" exported="true"/>
|
||||||
|
<component id="vlhjcss" name="Btn_Common_Info.xml" path="/component/create_room/" exported="true"/>
|
||||||
|
<image id="vlhjcst" name="bjwf.png" path="/mgr/imgs/game/" exported="true"/>
|
||||||
|
<component id="vlhjcsu" name="di01.xml" path="/component/create_room/" exported="true"/>
|
||||||
|
<font id="vlhjcsv" name="SIYUAN.TTF" path="/font/" exported="true" renderMode="" samplePointSize="16"/>
|
||||||
|
</resources>
|
||||||
|
<publish name="Info_Poker_RunFastNew" path="..\wb_unity_pro\Assets\ART\extend\poker\runfast\ui" packageCount="2"/>
|
||||||
|
</packageDescription>
|
||||||
|
After Width: | Height: | Size: 3.5 KiB |
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<component size="217,48" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="2" />
|
||||||
|
<controller name="selttime" pages="0,,1," selected="1" />
|
||||||
|
<displayList>
|
||||||
|
<image id="n4_hs0y" name="n4" src="10kys2" fileName="lskd.png" xy="0,0" size="217,48">
|
||||||
|
<relation target="" sidePair="width-width,height-height" />
|
||||||
|
</image>
|
||||||
|
<text id="n5_hs0y" name="title" xy="44,0" size="162,48" fontSize="25" color="#2aff57" vAlign="middle" autoSize="none" singleLine="true" text="" bold="true">
|
||||||
|
<relation target="" sidePair="width-width,height-height" />
|
||||||
|
</text>
|
||||||
|
<image id="n6_hs0y" name="n6" src="10kys8" fileName="dsj.png" xy="181,27" skew="180,0" />
|
||||||
|
<image id="n7_hs0y" name="n7" src="10kys4" fileName="yd.png" xy="8,10" />
|
||||||
|
<image id="n8_hs0y" name="n8" src="10kys5" fileName="ly.png" xy="11,13" />
|
||||||
|
<list id="n9_hs0y" name="list" xy="0,-195" size="217,194" overflow="scroll" defaultItem="ui://96mvx2ml10kys1" align="center" vAlign="bottom" autoClearItems="true">
|
||||||
|
<gearDisplay controller="selttime" pages="1" />
|
||||||
|
<relation target="" sidePair="width-width" />
|
||||||
|
<item />
|
||||||
|
<item />
|
||||||
|
<item />
|
||||||
|
<item />
|
||||||
|
</list>
|
||||||
|
</displayList>
|
||||||
|
<Button mode="Check" />
|
||||||
|
</component>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/common/af187115a4824290240734622129b80b
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/common/af187115a4824290240734622129b80b
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/common/af187115a4824290240734622129b80b
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/newgroup/1876b2140d79b7dc6c2674f954027415
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,10 @@ TrueTypeFontImporter:
|
||||||
fontName: Alimama FangYuanTi VF
|
fontName: Alimama FangYuanTi VF
|
||||||
fontNames:
|
fontNames:
|
||||||
- Alimama FangYuanTi VF
|
- Alimama FangYuanTi VF
|
||||||
fallbackFontReferences: []
|
fallbackFontReferences:
|
||||||
|
- {fileID: 12800000, guid: 9c70fa85bfdf95543af8ecc6ade75c64, type: 3}
|
||||||
|
- {fileID: 12800000, guid: 6f57e0b61c884e243818f5920eb808ea, type: 3}
|
||||||
|
- {fileID: 12800000, guid: 682c1169bde6eab43996b468a7ff85aa, type: 3}
|
||||||
customCharacters:
|
customCharacters:
|
||||||
fontRenderingMode: 0
|
fontRenderingMode: 0
|
||||||
ascentCalculationMode: 1
|
ascentCalculationMode: 1
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: extend/majiang/hechi/3a83a984a4e9c051cfed24f816eb0cfd
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 58 KiB |
|
|
@ -1,92 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: fd87f3f92fd29d348bea95a761496de1
|
|
||||||
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: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
After Width: | Height: | Size: 5.1 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 280 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
|
@ -1,92 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 013d01a77efc4c34b9c1fd585cfc5a1b
|
|
||||||
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: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 2.7 MiB |
|
|
@ -1,92 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: e8e2ee24f0f001746bb04c69cdb1464b
|
|
||||||
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: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 1.9 MiB |
|
|
@ -1,92 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 8c742b6fe8a475444ac6fb1f637f702c
|
|
||||||
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: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 1.9 MiB |
|
|
@ -1,92 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: ae49c0067af9ad941bc9438282e56b47
|
|
||||||
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: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: f0099d046aa39964ab23f461166d63ee
|
|
||||||
AudioImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 6
|
|
||||||
defaultSettings:
|
|
||||||
loadType: 0
|
|
||||||
sampleRateSetting: 0
|
|
||||||
sampleRateOverride: 44100
|
|
||||||
compressionFormat: 1
|
|
||||||
quality: 1
|
|
||||||
conversionMode: 0
|
|
||||||
platformSettingOverrides: {}
|
|
||||||
forceToMono: 0
|
|
||||||
normalize: 1
|
|
||||||
preloadAudioData: 1
|
|
||||||
loadInBackground: 0
|
|
||||||
ambisonic: 0
|
|
||||||
3D: 1
|
|
||||||
userData:
|
|
||||||
assetBundleName: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 20410f1202482a74a8e646be798ddb00
|
|
||||||
AudioImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 6
|
|
||||||
defaultSettings:
|
|
||||||
loadType: 0
|
|
||||||
sampleRateSetting: 0
|
|
||||||
sampleRateOverride: 44100
|
|
||||||
compressionFormat: 1
|
|
||||||
quality: 1
|
|
||||||
conversionMode: 0
|
|
||||||
platformSettingOverrides: {}
|
|
||||||
forceToMono: 0
|
|
||||||
normalize: 1
|
|
||||||
preloadAudioData: 1
|
|
||||||
loadInBackground: 0
|
|
||||||
ambisonic: 0
|
|
||||||
3D: 1
|
|
||||||
userData:
|
|
||||||
assetBundleName: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: e956e10bc102e494d8bf63f60ccdf0cf
|
|
||||||
AudioImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 6
|
|
||||||
defaultSettings:
|
|
||||||
loadType: 0
|
|
||||||
sampleRateSetting: 0
|
|
||||||
sampleRateOverride: 44100
|
|
||||||
compressionFormat: 1
|
|
||||||
quality: 1
|
|
||||||
conversionMode: 0
|
|
||||||
platformSettingOverrides: {}
|
|
||||||
forceToMono: 0
|
|
||||||
normalize: 1
|
|
||||||
preloadAudioData: 1
|
|
||||||
loadInBackground: 0
|
|
||||||
ambisonic: 0
|
|
||||||
3D: 1
|
|
||||||
userData:
|
|
||||||
assetBundleName: extend/poker/runfast/4453ac44dfe0b10c314c4b7d0f517f22
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 59 KiB |
|
|
@ -88,5 +88,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: base/embed/81863606c8fe7f6a2bad1ce51d6dc503
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||