出测试
|
|
@ -151,7 +151,7 @@ function M:Show()
|
||||||
if self._queue and not _inQueue then
|
if self._queue and not _inQueue then
|
||||||
WindowQueue[#WindowQueue + 1] = self
|
WindowQueue[#WindowQueue + 1] = self
|
||||||
end
|
end
|
||||||
AddPanel(self._root_view)
|
AddPanelCenter(self._root_view)
|
||||||
if self._full then
|
if self._full then
|
||||||
local offset = get_offset(self._full_offset)
|
local offset = get_offset(self._full_offset)
|
||||||
self._contentPane:MakeFullScreen()
|
self._contentPane:MakeFullScreen()
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
local GroupPartnerStatPlay = import(".GroupPartnerStatPlay")
|
local GroupPartnerStatPlay = import(".GroupPartnerStatPlay")
|
||||||
local GroupRecordView = require "Game/View/NewGroup/GroupRecordView"
|
local GroupRecordView = require "Game/View/NewGroup/GroupRecordView"
|
||||||
local GroupPartnerStatMember = {}
|
local GroupPartnerStatMember = {}
|
||||||
|
local GroupSetMemberInfoDiaoduView=import('.GroupSetMemberInfoDiaoduView')
|
||||||
local M = GroupPartnerStatMember
|
local M = GroupPartnerStatMember
|
||||||
|
|
||||||
function GroupPartnerStatMember.new(group_id, uid, time_type, begin_time, end_time)
|
function GroupPartnerStatMember.new(group_id, uid, time_type, begin_time, end_time)
|
||||||
|
|
@ -177,6 +177,23 @@ function M:OnRenderItem(index, obj)
|
||||||
self:getRewardsLog(0)
|
self:getRewardsLog(0)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
|
local btn_detail_tiaoduzjM = obj:GetChild("btn_detail_tiaoduzjM")
|
||||||
|
btn_detail_tiaoduzjM.onClick:Set(function()
|
||||||
|
ViewUtil.ShowModalWait()
|
||||||
|
ControllerManager.GetController(NewGroupController):FG_GetBanMemberHB(self.group_id, data.uid, function(res)
|
||||||
|
ViewUtil.CloseModalWait()
|
||||||
|
--pt(res)
|
||||||
|
if res.ReturnCode == 0 then
|
||||||
|
local diaoduView=GroupSetMemberInfoDiaoduView.new(self.group_id, data.uid)
|
||||||
|
diaoduView:SetCurrentState(res.Data.group_black+1,res.Data)
|
||||||
|
else
|
||||||
|
ViewUtil.ErrorTip(res.ReturnCode,"获取整组调度失败!")
|
||||||
|
end
|
||||||
|
|
||||||
|
end)
|
||||||
|
end)
|
||||||
|
|
||||||
local btn_member_detail = obj:GetChild("btn_member_detail")
|
local btn_member_detail = obj:GetChild("btn_member_detail")
|
||||||
btn_member_detail.onClick:Set(function()
|
btn_member_detail.onClick:Set(function()
|
||||||
self.uids[#self.uids + 1] = data.uid
|
self.uids[#self.uids + 1] = data.uid
|
||||||
|
|
|
||||||
|
|
@ -403,8 +403,8 @@ function M:InitBigResult(room, fontsize)
|
||||||
item:GetController('self').selectedIndex = 0
|
item:GetController('self').selectedIndex = 0
|
||||||
end
|
end
|
||||||
|
|
||||||
if item:GetChild('head') and item:GetChild('head')._iconObject then
|
if item:GetChild('btn_head') and item:GetChild('btn_head')._iconObject then
|
||||||
ImageLoad.Load(player_info.head_url, item:GetChild('head')._iconObject)
|
ImageLoad.Load(player_info.head_url, item:GetChild('btn_head')._iconObject)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -69,12 +69,12 @@ function M:OnEventXiPaiAnim(evt_data)
|
||||||
local p = self._room:GetPlayerById(playeridList[i])
|
local p = self._room:GetPlayerById(playeridList[i])
|
||||||
if p== self._room.self_player then
|
if p== self._room.self_player then
|
||||||
my_isXiPai=true
|
my_isXiPai=true
|
||||||
|
|
||||||
else
|
else
|
||||||
other_isXiPai=true
|
other_isXiPai=true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
self._cacheEvent:Enqueue(function()
|
self._cacheEvent:Enqueue(function()
|
||||||
DispatchEvent(self._dispatcher,TX_GameEvent.EventXiPai,my_isXiPai,other_isXiPai)
|
DispatchEvent(self._dispatcher,TX_GameEvent.EventXiPai,my_isXiPai,other_isXiPai)
|
||||||
end)
|
end)
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ function M:EventInit()
|
||||||
|
|
||||||
_gamectr:AddEventListener(TX_GameEvent.EventXiPai,function( ... )
|
_gamectr:AddEventListener(TX_GameEvent.EventXiPai,function( ... )
|
||||||
local arg = {...}
|
local arg = {...}
|
||||||
local currentPlayer=arg[1]
|
local currentPlayer1=arg[1]
|
||||||
local currentPlayer2=arg[2]
|
local currentPlayer2=arg[2]
|
||||||
self._popEvent = false
|
self._popEvent = false
|
||||||
if ( currentPlayer1 ) then
|
if ( currentPlayer1 ) then
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ local M = RunBeard_ResultView
|
||||||
function RunBeard_ResultView.new(blur_view, index)
|
function RunBeard_ResultView.new(blur_view, index)
|
||||||
setmetatable(M, {__index = ResultView})
|
setmetatable(M, {__index = ResultView})
|
||||||
local self = setmetatable({}, {__index = M})
|
local self = setmetatable({}, {__index = M})
|
||||||
|
self._full=true
|
||||||
self.class = 'RunBeard_ResultView'
|
self.class = 'RunBeard_ResultView'
|
||||||
self._currenIndex = 0
|
self._currenIndex = 0
|
||||||
if index ~= 1 then
|
if index ~= 1 then
|
||||||
|
|
@ -21,6 +22,7 @@ end
|
||||||
|
|
||||||
function M:init(url)
|
function M:init(url)
|
||||||
ResultView.init(self, url)
|
ResultView.init(self, url)
|
||||||
|
|
||||||
local btn_share = self._view:GetChild('btn_share')
|
local btn_share = self._view:GetChild('btn_share')
|
||||||
btn_share.onClick:Set(
|
btn_share.onClick:Set(
|
||||||
function()
|
function()
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ local M = RunBeard_ResultView
|
||||||
function RunBeard_ResultView.new(blur_view, index)
|
function RunBeard_ResultView.new(blur_view, index)
|
||||||
setmetatable(M, {__index = ResultView})
|
setmetatable(M, {__index = ResultView})
|
||||||
local self = setmetatable({}, {__index = M})
|
local self = setmetatable({}, {__index = M})
|
||||||
|
self._full=true
|
||||||
self.class = 'RunBeard_ResultView'
|
self.class = 'RunBeard_ResultView'
|
||||||
self._currenIndex = 0
|
self._currenIndex = 0
|
||||||
if index ~= 1 then
|
if index ~= 1 then
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ local M = RunBeard_ResultView
|
||||||
function RunBeard_ResultView.new(blur_view, index)
|
function RunBeard_ResultView.new(blur_view, index)
|
||||||
setmetatable(M, {__index = ResultView})
|
setmetatable(M, {__index = ResultView})
|
||||||
local self = setmetatable({}, {__index = M})
|
local self = setmetatable({}, {__index = M})
|
||||||
|
self._full=true
|
||||||
self.class = 'RunBeard_ResultView'
|
self.class = 'RunBeard_ResultView'
|
||||||
self._currenIndex = 0
|
self._currenIndex = 0
|
||||||
if index ~= 1 then
|
if index ~= 1 then
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ local M = RunBeard_ResultView
|
||||||
function RunBeard_ResultView.new(blur_view, index)
|
function RunBeard_ResultView.new(blur_view, index)
|
||||||
setmetatable(M, {__index = ResultView})
|
setmetatable(M, {__index = ResultView})
|
||||||
local self = setmetatable({}, {__index = M})
|
local self = setmetatable({}, {__index = M})
|
||||||
|
self._full=true
|
||||||
self.class = 'RunBeard_ResultView'
|
self.class = 'RunBeard_ResultView'
|
||||||
self._currenIndex = 0
|
self._currenIndex = 0
|
||||||
if index ~= 1 then
|
if index ~= 1 then
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ local M = RunBeard_ResultView
|
||||||
function RunBeard_ResultView.new(blur_view, index)
|
function RunBeard_ResultView.new(blur_view, index)
|
||||||
setmetatable(M, {__index = ResultView})
|
setmetatable(M, {__index = ResultView})
|
||||||
local self = setmetatable({}, {__index = M})
|
local self = setmetatable({}, {__index = M})
|
||||||
|
self._full=true
|
||||||
self.class = 'RunBeard_ResultView'
|
self.class = 'RunBeard_ResultView'
|
||||||
self._currenIndex = 0
|
self._currenIndex = 0
|
||||||
if index ~= 1 then
|
if index ~= 1 then
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ local M = RunBeard_ResultView
|
||||||
function RunBeard_ResultView.new(blur_view, index)
|
function RunBeard_ResultView.new(blur_view, index)
|
||||||
setmetatable(M, {__index = ResultView})
|
setmetatable(M, {__index = ResultView})
|
||||||
local self = setmetatable({}, {__index = M})
|
local self = setmetatable({}, {__index = M})
|
||||||
|
self._full=true
|
||||||
self.class = 'RunBeard_ResultView'
|
self.class = 'RunBeard_ResultView'
|
||||||
self._currenIndex = 0
|
self._currenIndex = 0
|
||||||
if index ~= 1 then
|
if index ~= 1 then
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"modificationDate": 1630347590100
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"modificationDate": 1629947131815
|
|
||||||
}
|
|
||||||
|
|
@ -39,9 +39,6 @@
|
||||||
"n17_pt1r": {
|
"n17_pt1r": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n70_dunj": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n51_fmkv": {
|
"n51_fmkv": {
|
||||||
"collapsed": true
|
"collapsed": true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,99 @@
|
||||||
{
|
{
|
||||||
"objectStatus": {
|
"objectStatus": {
|
||||||
"n4_fux2": {
|
"n84_loe7": {
|
||||||
|
"locked": true
|
||||||
|
},
|
||||||
|
"n49_g8y2": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n19_pt1r": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n46_n1ry": {
|
||||||
|
"locked": true,
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n73_p9qe": {
|
"n73_p9qe": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
|
"n58_fnpw": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n12_nrno": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n77_p9qe": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n15_pt1r": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n17_pt1r": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n33_n1ry": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n4_fux2": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n37_n1ry": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n52_rx2e": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n68_w06x": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n85_loe7": {
|
||||||
|
"locked": true
|
||||||
|
},
|
||||||
|
"n43_n1ry": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n62_fnpw": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
"n39_n1ry": {
|
"n39_n1ry": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n31_n1ry": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n14_pt1r": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n32_n1ry": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n16_pt1r": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n56_fnpw": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n54_rx2e": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n67_w06x": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n35_n1ry": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,13 +1,48 @@
|
||||||
{
|
{
|
||||||
"objectStatus": {
|
"objectStatus": {
|
||||||
"n4_tjnv": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n11_tjnv": {
|
"n11_tjnv": {
|
||||||
"collapsed": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n7_tjnv": {
|
"n34_aen8": {
|
||||||
"collapsed": true
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n15_tjnv": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n29_tjnv": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n6_tjnv": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n3_tjnv": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n10_tjnv": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n36_aen8": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n5_tjnv": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n28_tjnv": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n2_tjnv": {
|
||||||
|
"locked": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n27_tjnv": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n9_tjnv": {
|
||||||
|
"hidden": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -2,23 +2,22 @@
|
||||||
"libview.firstColumnWidth": 413,
|
"libview.firstColumnWidth": 413,
|
||||||
"libview.iconScale": 0,
|
"libview.iconScale": 0,
|
||||||
"doc.openedDocs": [
|
"doc.openedDocs": [
|
||||||
"ui://27vd145bp2bz6s",
|
"ui://27vd145bhxjc7i4q",
|
||||||
"ui://27vd145bh1uu30",
|
"ui://kplym8mus9wxa",
|
||||||
"ui://m7iejg46jgh8hwv"
|
"ui://fnuxqeflnrnod",
|
||||||
|
"ui://c7j2rnvqtpf02f",
|
||||||
|
"ui://y8prev1ms9wx7",
|
||||||
|
"ui://3z9lj55vjokmft",
|
||||||
|
"ui://4skil1l6piv91ny",
|
||||||
|
"ui://niy3ldiwl9mny",
|
||||||
|
"ui://niy3ldiwl9mn19"
|
||||||
],
|
],
|
||||||
"auxline1": true,
|
"auxline1": true,
|
||||||
"canvasColor": 10066329,
|
"canvasColor": 10066329,
|
||||||
"auxline2": true,
|
"auxline2": true,
|
||||||
"doc.activeDoc": "ui://m7iejg46jgh8hwv",
|
"doc.activeDoc": "ui://27vd145bhxjc7i4q",
|
||||||
"libview.twoColumn": false,
|
"libview.twoColumn": false,
|
||||||
"libview.expandedNodes": [
|
"libview.expandedNodes": [],
|
||||||
"27vd145b",
|
|
||||||
"/",
|
|
||||||
"m7iejg46",
|
|
||||||
"/",
|
|
||||||
"m7iejg46",
|
|
||||||
"/mgr/"
|
|
||||||
],
|
|
||||||
"snapToGrid": true,
|
"snapToGrid": true,
|
||||||
"backgroundColor": 6710886,
|
"backgroundColor": 6710886,
|
||||||
"libview.currentGroup": "",
|
"libview.currentGroup": "",
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,5 @@
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</loader>
|
</loader>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="120,120" extention="Button" initName="btn_close">
|
<component size="119,119" extention="Button" initName="btn_close">
|
||||||
<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"/>
|
||||||
<controller name="style" exported="true" pages="0,,1," selected="0"/>
|
<controller name="style" exported="true" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<loader id="n3_j046" name="icon" xy="0,0" size="120,120" url="ui://27vd145bm0eibv"/>
|
<loader id="n3_j046" name="icon" xy="0,0" size="119,119" url="ui://27vd145bmca57il3" fill="scaleFree"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue=".8"/>
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,19 +1,19 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="210,500" extention="Button">
|
<component size="246,104" 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>
|
||||||
<graph id="n1" name="n1" xy="0,0" size="210,500" touchable="false" type="rect" lineSize="0" fillColor="#fff0f0f0">
|
<image id="n0_loe7" name="n0" src="loe77il4" fileName="conMui/Group 518.png" xy="0,0" size="246,104">
|
||||||
<gearDisplay controller="button" pages="0"/>
|
<gearDisplay controller="button" pages="0"/>
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</graph>
|
</image>
|
||||||
<graph id="n2" name="n2" xy="0,0" size="210,500" touchable="false" type="rect" lineSize="0" fillColor="#fffafafa">
|
<image id="n1_loe7" name="n1" src="loe77il4" fileName="conMui/Group 518.png" xy="0,0" size="246,104">
|
||||||
<gearDisplay controller="button" pages="2"/>
|
<gearDisplay controller="button" pages="2"/>
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</graph>
|
</image>
|
||||||
<graph id="n3" name="n3" xy="0,0" size="210,500" touchable="false" type="rect" lineSize="0" fillColor="#ffcccccc">
|
<image id="n2_loe7" name="n2" src="loe77il4" fileName="conMui/Group 518.png" xy="0,0" size="246,104" alpha="0.7">
|
||||||
<gearDisplay controller="button" pages="1,3"/>
|
<gearDisplay controller="button" pages="1,3"/>
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</graph>
|
</image>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
<Button/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="246,107" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n0_loe7" name="n0" src="cvc87i5s" fileName="font/images/ann_quxiao.png" xy="0,0" size="246,107">
|
||||||
|
<gearDisplay controller="button" pages="0"/>
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
<image id="n1_loe7" name="n1" src="cvc87i5s" fileName="font/images/ann_quxiao.png" xy="0,0" size="246,107">
|
||||||
|
<gearDisplay controller="button" pages="2"/>
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
<image id="n2_loe7" name="n2" src="cvc87i5s" fileName="font/images/ann_quxiao.png" xy="0,0" size="246,107" alpha="0.7">
|
||||||
|
<gearDisplay controller="button" pages="1,3"/>
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
</displayList>
|
||||||
|
<Button/>
|
||||||
|
</component>
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="1770,750" initName="com_tuoguan">
|
<component size="1770,750" initName="com_tuoguan">
|
||||||
<displayList>
|
<displayList>
|
||||||
<graph id="n0_g8mh" name="n0" xy="0,0" size="1770,750" alpha="0.5" type="rect" lineSize="0" fillColor="#ff000000">
|
<graph id="n0_g8mh" name="n0" xy="-2326,-985" pivot="0.5,0.5" size="6422,2721" alpha="0.5" type="rect" lineSize="0" fillColor="#ff000000">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</graph>
|
</graph>
|
||||||
<component id="n2_g8mh" name="btn_cancel_tuoguan" src="eeqmcgp" fileName="buttons/Btn_Common.xml" xy="795,588" size="179,64" touchable="false">
|
<component id="n2_g8mh" name="btn_cancel_tuoguan" src="eeqmcgp" fileName="buttons/Btn_Common.xml" xy="795,588" size="179,64" touchable="false">
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 58 KiB |
|
|
@ -1141,6 +1141,9 @@
|
||||||
<image id="mcrm7il1" name="Frame 1172.png" path="/conMui/"/>
|
<image id="mcrm7il1" name="Frame 1172.png" path="/conMui/"/>
|
||||||
<image id="mca57il2" name="Frame 1237.png" path="/conMui/"/>
|
<image id="mca57il2" name="Frame 1237.png" path="/conMui/"/>
|
||||||
<image id="mca57il3" name="Frame 1238.png" path="/conMui/"/>
|
<image id="mca57il3" name="Frame 1238.png" path="/conMui/"/>
|
||||||
|
<image id="loe77il4" name="Group 518.png" path="/conMui/" exported="true"/>
|
||||||
|
<component id="loe77il5" name="Btn_closeMm.xml" path="/buttons/" exported="true"/>
|
||||||
|
<component id="loe77il6" name="Btn_closeMm1.xml" path="/buttons/" exported="true"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="Common" path="..\wb_unity_pro\Assets\ART\base\common\ui" packageCount="2">
|
<publish name="Common" path="..\wb_unity_pro\Assets\ART\base\common\ui" packageCount="2">
|
||||||
<atlas name="默认" index="0"/>
|
<atlas name="默认" index="0"/>
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 111 KiB |
|
After Width: | Height: | Size: 227 KiB |
|
After Width: | Height: | Size: 319 KiB |
|
After Width: | Height: | Size: 221 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 219 KiB |
|
After Width: | Height: | Size: 110 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -1,53 +1,55 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="1334,750">
|
<component size="2348,1126">
|
||||||
<controller name="over" pages="0,,1,,2,,3," selected="0"/>
|
<controller name="over" pages="0,,1,,2,,3," selected="2"/>
|
||||||
<controller name="button" pages="0,,1," selected="0"/>
|
<controller name="button" pages="0,,1," selected="1"/>
|
||||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||||
<controller name="owner" pages="0,,1," selected="0"/>
|
<controller name="owner" pages="0,,1," selected="1"/>
|
||||||
<controller name="bank" pages="0,,1," selected="0"/>
|
<controller name="bank" pages="0,,1," selected="1"/>
|
||||||
<controller name="qipai" pages="0,,1," selected="0"/>
|
<controller name="qipai" pages="0,,1," selected="0"/>
|
||||||
<controller name="xipai" pages="0,,1," selected="0"/>
|
<controller name="xipai" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n20_pt1r" name="win_base" pkg="27vd145b" src="e6awcd0" fileName="Win_Frame_Old.xml" xy="-5,860" size="1334,750" group="n70_dunj"/>
|
<component id="n20_pt1r" name="win_base" pkg="27vd145b" src="e6awcd0" fileName="Win_Frame_Old.xml" xy="386,2515" size="1415,750" group="n70_dunj"/>
|
||||||
<image id="n72_p9qe" name="n72" src="o49p1d3" fileName="component/Main/component/new_ui/di_kuang.png" pkg="yzaioi79" xy="51,63" size="1219,615" group="n70_dunj">
|
<image id="n72_p9qe" name="n72" src="loe73u" fileName="component/EPFLSMui/Frame 1240.png" xy="0,0" size="2348,1126" group="n70_dunj">
|
||||||
<relation target="" sidePair="width-width"/>
|
<relation target="" sidePair="width-width"/>
|
||||||
</image>
|
</image>
|
||||||
<list id="n7_jt1k" name="player_list_2" xy="17,126" size="1300,428" group="n70_dunj" layout="row" colGap="51" defaultItem="ui://ypulwxjhl9mn10" align="center" vAlign="middle">
|
<image id="n83_loe7" name="n83" src="loe73v" fileName="component/EPFLSMui/Frame 1241.png" xy="0,0" size="2348,175" group="n70_dunj"/>
|
||||||
|
<list id="n7_jt1k" name="player_list_2" xy="0,121" size="1381,428" group="n70_dunj" layout="row" colGap="51" defaultItem="ui://ypulwxjhl9mn10" align="center" vAlign="middle">
|
||||||
<gearDisplay controller="over" pages="1"/>
|
<gearDisplay controller="over" pages="1"/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<component id="n12_nrno" name="btn_showResult1" src="q6sp2v" fileName="component/head/Btn_realname.xml" pkg="27vd145b" xy="523,618" group="n70_dunj" visible="false">
|
<component id="n12_nrno" name="btn_showResult1" src="q6sp2v" fileName="component/head/Btn_realname.xml" pkg="27vd145b" xy="504,1264" size="369,82" group="n70_dunj" visible="false">
|
||||||
<gearDisplay controller="button" pages="1"/>
|
<gearDisplay controller="button" pages="1"/>
|
||||||
<Button icon="ui://v6yvqp7wn1ry3r"/>
|
<Button icon="ui://v6yvqp7wn1ry3r"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n14_pt1r" name="n14" xy="60,49" size="92,32" group="n19_pt1r" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" text="房间号:"/>
|
<text id="n14_pt1r" name="n14" xy="43,44" size="173,32" group="n19_pt1r" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" text="房间号:"/>
|
||||||
<text id="n15_pt1r" name="tex_roomnum" xy="144,49" size="76,62" group="n19_pt1r" visible="false" fontSize="22" color="#ffffff" vAlign="middle" text="123456
"/>
|
<text id="n15_pt1r" name="tex_roomnum" xy="127,44" size="157,62" group="n19_pt1r" visible="false" fontSize="22" color="#ffffff" vAlign="middle" text="123456
"/>
|
||||||
<text id="n16_pt1r" name="tex_game" xy="242,49" size="70,32" group="n19_pt1r" visible="false" fontSize="22" color="#ffffff" vAlign="middle" text="跑胡子"/>
|
<text id="n16_pt1r" name="tex_game" xy="225,44" size="151,32" group="n19_pt1r" visible="false" fontSize="22" color="#ffffff" vAlign="middle" text="跑胡子"/>
|
||||||
<text id="n17_pt1r" name="tex_data" xy="84,85" size="150,39" group="n19_pt1r" fontSize="28" color="#b25116" align="center" vAlign="middle" text="2017-02-12"/>
|
<text id="n17_pt1r" name="tex_data" xy="67,80" size="231,39" group="n19_pt1r" visible="false" fontSize="28" color="#b25116" align="center" vAlign="middle" text="2017-02-12"/>
|
||||||
<group id="n19_pt1r" name="room_info" xy="60,49" size="253,73" group="n70_dunj"/>
|
<group id="n19_pt1r" name="room_info" xy="43,44" size="333,75" group="n70_dunj"/>
|
||||||
<image id="n33_n1ry" name="n33" src="l9mn15" fileName="component/clearing/di.png" xy="47,163" size="1173,289" group="n45_n1ry" visible="false"/>
|
<image id="n84_loe7" name="n84" src="loe73z" fileName="component/EPFLSMui/Rectangle 333.png" xy="63,199" size="2226,392" group="n45_n1ry"/>
|
||||||
<image id="n43_n1ry" name="n43" src="lwcl2m" fileName="font/images/head/index_bg_01.png" pkg="27vd145b" xy="102,142" size="90,88" group="n44_n1ry" aspect="true" visible="false"/>
|
<image id="n85_loe7" name="n85" src="loe73z" fileName="component/EPFLSMui/Rectangle 333.png" xy="63,598" size="2226,392" group="n45_n1ry"/>
|
||||||
<image id="n77_p9qe" name="n77" src="aen8chq" fileName="component/head/image/touxiang_di_img.png" pkg="27vd145b" xy="110,147" size="78,78" group="n44_n1ry"/>
|
<image id="n33_n1ry" name="n33" src="l9mn15" fileName="component/clearing/di.png" xy="438,250" size="1254,310" group="n45_n1ry" visible="false"/>
|
||||||
<component id="n78_p9qe" name="btn_head" src="do2f1z" fileName="component/head/Head2.xml" pkg="27vd145b" xy="108,146" group="n44_n1ry"/>
|
<image id="n43_n1ry" name="n43" src="lwcl2m" fileName="font/images/head/index_bg_01.png" pkg="27vd145b" xy="247,321" size="171,109" group="n44_n1ry" aspect="true" visible="false"/>
|
||||||
<image id="n35_n1ry" name="n35" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="75,114" group="n44_n1ry" scale="0.8,0.8" visible="false">
|
<image id="n77_p9qe" name="n77" src="aen8chq" fileName="component/head/image/touxiang_di_img.png" pkg="27vd145b" xy="255,326" size="159,99" group="n44_n1ry"/>
|
||||||
|
<component id="n78_p9qe" name="btn_head" src="do2f1z" fileName="component/head/Head2.xml" pkg="27vd145b" xy="103,231" size="115,115" group="n44_n1ry"/>
|
||||||
|
<image id="n35_n1ry" name="n35" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="220,293" size="181,121" group="n44_n1ry" scale="0.8,0.8" visible="false">
|
||||||
<gearDisplay controller="bank" pages="1"/>
|
<gearDisplay controller="bank" pages="1"/>
|
||||||
</image>
|
</image>
|
||||||
<text id="n38_n1ry" name="WinerName" xy="71,245" size="151,37" group="n44_n1ry" fontSize="28" color="#b25116" align="center" vAlign="middle" autoSize="none" singleLine="true" text="玩家的名字則麽長~~"/>
|
<text id="n38_n1ry" name="WinerName" xy="237,239" size="391,56" group="n44_n1ry" font="ui://27vd145bpxed7ik2" fontSize="42" color="#0a1628" vAlign="middle" autoSize="shrink" singleLine="true" text="玩家的名字則麽長~~"/>
|
||||||
<image id="n37_n1ry" name="n37" src="e54q3y" fileName="font/images/head/owner.png" pkg="27vd145b" xy="92,184" group="n44_n1ry" visible="false">
|
<image id="n37_n1ry" name="n37" src="e54q3y" fileName="font/images/head/owner.png" pkg="27vd145b" xy="237,363" size="106,46" group="n44_n1ry" visible="false">
|
||||||
<gearDisplay controller="owner" pages="1"/>
|
<gearDisplay controller="owner" pages="1"/>
|
||||||
</image>
|
</image>
|
||||||
<group id="n44_n1ry" name="n44" xy="71,114" size="184,180" group="n45_n1ry"/>
|
<group id="n44_n1ry" name="n44" xy="103,231" size="525,199" group="n45_n1ry"/>
|
||||||
<text id="n31_n1ry" name="111" xy="95,408" size="121,53" group="n45_n1ry" fontSize="32" color="#893119" vAlign="middle" autoSize="none" text="底牌:"/>
|
<text id="n31_n1ry" name="111" xy="486,495" size="202,74" group="n45_n1ry" visible="false" fontSize="32" color="#893119" vAlign="middle" autoSize="none" text="底牌:"/>
|
||||||
<list id="n30_n1ry" name="player_list" xy="67,478" size="946,140" group="n45_n1ry" layout="row" selectionMode="none" colGap="221" defaultItem="ui://ypulwxjhl9mny" autoClearItems="true">
|
<list id="n30_n1ry" name="player_list" xy="63,596" size="2226,392" group="n45_n1ry" layout="row" selectionMode="none" colGap="221" defaultItem="ui://ypulwxjhl9mny" autoClearItems="true">
|
||||||
<item/>
|
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<list id="n32_n1ry" name="dipai_list" xy="203,404" size="1005,64" group="n45_n1ry" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" colGap="5" defaultItem="ui://yzaioi79f55qvw" vAlign="middle"/>
|
<list id="n32_n1ry" name="dipai_list" xy="594,491" size="1086,85" group="n45_n1ry" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" colGap="5" defaultItem="ui://yzaioi79f55qvw" vAlign="middle"/>
|
||||||
<text id="n39_n1ry" name="huxi" xy="1004,151" size="257,41" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="胡息:+133
"/>
|
<text id="n39_n1ry" name="huxi" xy="1395,238" size="338,62" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="胡息:+133
"/>
|
||||||
<list id="n46_n1ry" name="fullname_list" xy="248,118" size="143,279" group="n45_n1ry" selectionMode="none" lineGap="5" colGap="-10" defaultItem="ui://niy3ldiwl9mn16" autoClearItems="true">
|
<list id="n46_n1ry" name="fullname_list" xy="639,205" size="224,300" group="n45_n1ry" visible="false" selectionMode="none" lineGap="5" colGap="-10" defaultItem="ui://niy3ldiwl9mn16" autoClearItems="true">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -55,15 +57,15 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<list id="n41_n1ry" name="card_list" xy="394,116" size="611,276" group="n45_n1ry" layout="row" selectionMode="none" colGap="5" defaultItem="ui://ypulwxjhl9mn17" vAlign="middle" autoClearItems="true">
|
<list id="n41_n1ry" name="card_list" xy="657,216" size="692,297" group="n45_n1ry" layout="row" selectionMode="none" colGap="5" defaultItem="ui://ypulwxjhl9mn17" vAlign="middle" autoClearItems="true">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<text id="n42_n1ry" name="score" xy="1004,167" size="256,41" group="n45_n1ry" fontSize="30" color="#b25116" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="总分:+2333
"/>
|
<text id="n42_n1ry" name="score" xy="1550,263" size="525,49" group="n45_n1ry" font="ui://27vd145bpxed7ik2" fontSize="36" color="#0a1628" vAlign="middle" autoSize="none" singleLine="true" text="总分:+2333
"/>
|
||||||
<text id="n56_fnpw" name="222" xy="703,482" size="82,36" group="n58_fnpw" fontSize="26" color="#b25116" vAlign="middle" text="弃牌:"/>
|
<text id="n56_fnpw" name="222" xy="1175,614" size="163,57" group="n58_fnpw" visible="false" fontSize="26" color="#b25116" vAlign="middle" text="弃牌:"/>
|
||||||
<list id="n62_fnpw" name="qipai_list" xy="781,478" size="298,157" group="n58_fnpw" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mnz" vAlign="middle">
|
<list id="n62_fnpw" name="qipai_list" xy="1329,578" size="379,178" group="n58_fnpw" visible="false" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mnz" vAlign="middle">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -72,37 +74,37 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<group id="n58_fnpw" name="n58" xy="703,478" size="376,157" group="n45_n1ry" advanced="true">
|
<group id="n58_fnpw" name="n58" xy="1175,578" size="533,178" group="n45_n1ry" visible="false" advanced="true">
|
||||||
<gearDisplay controller="qipai" pages="1"/>
|
<gearDisplay controller="qipai" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<text id="n67_w06x" name="tili_score" xy="1004,219" size="181,41" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="+2333
"/>
|
<text id="n67_w06x" name="tili_score" xy="1395,306" size="262,62" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="+2333
"/>
|
||||||
<text id="n68_w06x" name="tili_title" xy="1005,253" size="75,41" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" text=""/>
|
<text id="n68_w06x" name="tili_title" xy="1396,340" size="156,62" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" text=""/>
|
||||||
<text id="n69_w06x" name="yidashangxian" xy="1005,296" size="164,30" group="n45_n1ry" fontSize="28" color="#893119" vAlign="middle" autoSize="none" text=""/>
|
<text id="n69_w06x" name="yidashangxian" xy="1549,354" size="529,49" group="n45_n1ry" font="ui://27vd145bpxed7ik2" fontSize="36" color="#0a1628" vAlign="middle" autoSize="shrink" text="1111"/>
|
||||||
<image id="n73_p9qe" name="n73" src="l9mnx" fileName="component/clearing/images/fengexian_js.png" xy="181,466" size="1050,5" group="n45_n1ry" visible="false"/>
|
<image id="n73_p9qe" name="n73" src="l9mnx" fileName="component/clearing/images/fengexian_js.png" xy="572,553" size="1131,26" group="n45_n1ry" visible="false"/>
|
||||||
<group id="n45_n1ry" name="n45" xy="47,114" size="1214,521" group="n70_dunj" advanced="true">
|
<group id="n45_n1ry" name="n45" xy="63,199" size="2226,791" group="n70_dunj" advanced="true">
|
||||||
<gearDisplay controller="over" pages="0"/>
|
<gearDisplay controller="over" pages="0"/>
|
||||||
</group>
|
</group>
|
||||||
<text id="n49_g8y2" name="n49" xy="475,67" size="457,74" group="n70_dunj" fontSize="18" color="#999999" vAlign="middle" autoSize="none" singleLine="true" text="此页面仅用于娱乐竞技展示,禁止一切赌博行为!">
|
<text id="n49_g8y2" name="n49" xy="458,62" size="538,74" group="n70_dunj" visible="false" fontSize="18" color="#999999" vAlign="middle" autoSize="none" singleLine="true" text="此页面仅用于娱乐竞技展示,禁止一切赌博行为!">
|
||||||
<gearDisplay controller="over" pages="1"/>
|
<gearDisplay controller="over" pages="1"/>
|
||||||
</text>
|
</text>
|
||||||
<component id="n6_jt1k" name="btn_share_str" src="ycze3n" fileName="buttons/Btn_Blue.xml" pkg="27vd145b" xy="577,617" group="n51_fmkv">
|
<component id="n6_jt1k" name="btn_share_str" src="ycze3n" fileName="buttons/Btn_Blue.xml" pkg="27vd145b" xy="442,617" size="314,90" group="n51_fmkv">
|
||||||
<gearDisplay controller="sdk" pages="0"/>
|
<gearDisplay controller="sdk" pages="0"/>
|
||||||
<gearXY controller="button" pages="0,1" values="577,617|442,617"/>
|
<gearXY controller="button" pages="0,1" values="560,612|442,617"/>
|
||||||
<Button icon="ui://k15boclkl9mnw"/>
|
<Button icon="ui://k15boclkl9mnw"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n50_fmkv" name="btn_chat_room" src="w2yy7j" fileName="buttons/Btn_Blue2.xml" pkg="27vd145b" xy="805,617" group="n51_fmkv">
|
<component id="n50_fmkv" name="btn_chat_room" src="w2yy7j" fileName="buttons/Btn_Blue2.xml" pkg="27vd145b" xy="788,612" size="244,67" group="n51_fmkv">
|
||||||
<gearDisplay controller="over" pages="1"/>
|
<gearDisplay controller="over" pages="1"/>
|
||||||
<Button icon="ui://27vd145bgfyhat"/>
|
<Button icon="ui://27vd145bgfyhat"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n65_pwj4" name="btn_share" src="ycze3n" fileName="buttons/Btn_Blue.xml" pkg="27vd145b" xy="348,617" group="n51_fmkv">
|
<component id="n65_pwj4" name="btn_share" src="ycze3n" fileName="buttons/Btn_Blue.xml" pkg="27vd145b" xy="442,617" size="314,90" group="n51_fmkv">
|
||||||
<gearDisplay controller="sdk" pages="0"/>
|
<gearDisplay controller="sdk" pages="0"/>
|
||||||
<gearXY controller="button" pages="0,1" values="348,617|442,617"/>
|
<gearXY controller="button" pages="0,1" values="331,612|442,617"/>
|
||||||
<Button icon="ui://k15boclkl9mnv"/>
|
<Button icon="ui://k15boclkl9mnv"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n51_fmkv" name="n51" xy="348,617" size="620,90" group="n70_dunj" advanced="true">
|
<group id="n51_fmkv" name="n51" xy="442,612" size="590,95" group="n70_dunj" advanced="true">
|
||||||
<gearDisplay controller="over" pages="1"/>
|
<gearDisplay controller="over" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<list id="n52_rx2e" name="card_list_3" xy="137,179" size="261,177" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mn18" vAlign="middle">
|
<list id="n52_rx2e" name="card_list_3" xy="494,254" size="489,242" group="n55_rx2e" visible="false" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mn18" vAlign="middle">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -111,7 +113,7 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<list id="n53_rx2e" name="card_list_2" xy="537,179" size="261,177" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mn18" vAlign="middle">
|
<list id="n53_rx2e" name="card_list_2" xy="877,379" size="593,368" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mn18" vAlign="middle">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -120,7 +122,7 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<list id="n54_rx2e" name="card_list_1" xy="936,179" size="261,177" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mn18" vAlign="middle">
|
<list id="n54_rx2e" name="card_list_1" xy="1293,254" size="489,242" group="n55_rx2e" visible="false" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mn18" vAlign="middle">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -129,8 +131,8 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<text id="n59_fnpw" name="222ll" xy="113,139" size="103,33" group="n61_fnpw" fontSize="26" color="#b25116" vAlign="middle" autoSize="none" text="弃牌:"/>
|
<text id="n59_fnpw" name="222ll" xy="470,214" size="331,98" group="n61_fnpw" fontSize="26" color="#b25116" vAlign="middle" autoSize="none" text="弃牌:"/>
|
||||||
<list id="n63_fnpw" name="qipai_listl" xy="138,181" size="298,157" group="n61_fnpw" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mnz" vAlign="middle">
|
<list id="n63_fnpw" name="qipai_listl" xy="495,256" size="526,222" group="n61_fnpw" layout="row" colGap="1" defaultItem="ui://ypulwxjhl9mnz" vAlign="middle">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -139,47 +141,47 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<group id="n61_fnpw" name="n61" xy="113,139" size="323,199" group="n55_rx2e" advanced="true">
|
<group id="n61_fnpw" name="n61" xy="470,214" size="551,264" group="n55_rx2e" advanced="true">
|
||||||
<gearDisplay controller="qipai" pages="1"/>
|
<gearDisplay controller="qipai" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<group id="n55_rx2e" name="n55" xy="113,139" size="1084,217" group="n70_dunj" advanced="true">
|
<group id="n55_rx2e" name="n55" xy="470,214" size="1312,533" group="n70_dunj" advanced="true">
|
||||||
<gearDisplay controller="over" pages="2"/>
|
<gearDisplay controller="over" pages="2"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n4_fux2" name="btn_confirm1" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="600,660" group="n64_pwj4" visible="false">
|
<component id="n4_fux2" name="btn_confirm1" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="659,1099" size="265,85" group="n64_pwj4" visible="false">
|
||||||
<gearDisplay controller="button" pages="0"/>
|
<gearDisplay controller="button" pages="0"/>
|
||||||
<Button icon="ui://27vd145bofsx1k"/>
|
<Button icon="ui://27vd145bofsx1k"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n79_p9qe" name="btn_confirm" src="aen8chp" fileName="buttons/Btn_newYellow_comfirm.xml" pkg="27vd145b" xy="583,684" group="n64_pwj4">
|
<component id="n79_p9qe" name="btn_confirm" src="aen8chp" fileName="buttons/Btn_newYellow_comfirm.xml" pkg="27vd145b" xy="642,1123" size="481,169" group="n64_pwj4">
|
||||||
<gearDisplay controller="over" pages="0,2"/>
|
<gearDisplay controller="over" pages="0,2"/>
|
||||||
<Button icon="ui://27vd145baen8cho"/>
|
<Button icon="ui://27vd145baen8cho"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n82_hxjc" name="btn_xipai" src="hxjc1ub" fileName="btn_invite(1)(1).xml" pkg="27vd145b" xy="827,656" group="n64_pwj4">
|
<component id="n82_hxjc" name="btn_xipai" src="hxjc1ub" fileName="btn_invite(1)(1).xml" pkg="27vd145b" xy="886,1095" size="373,105" group="n64_pwj4">
|
||||||
<gearDisplay controller="xipai" pages="1"/>
|
<gearDisplay controller="xipai" pages="1"/>
|
||||||
<Button titleColor="#000000" titleFontSize="34"/>
|
<Button titleColor="#000000" titleFontSize="34"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n64_pwj4" name="n64" xy="583,656" size="536,105" group="n70_dunj" advanced="true">
|
<group id="n64_pwj4" name="n64" xy="642,1095" size="617,197" group="n70_dunj" advanced="true">
|
||||||
<gearDisplay controller="button" pages="0"/>
|
<gearDisplay controller="button" pages="0"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n66_pwj4" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1219,13" group="n70_dunj" controller="style,0">
|
<component id="n66_pwj4" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1202,8" size="201,120" group="n70_dunj" controller="style,0">
|
||||||
<gearDisplay controller="over" pages="1"/>
|
<gearDisplay controller="over" pages="1"/>
|
||||||
</component>
|
</component>
|
||||||
<image id="n74_p9qe" name="n74" src="aen81bv" fileName="component/clearing/image/流局字.png" pkg="yzaioi79" xy="423,5" group="n70_dunj">
|
<image id="n74_p9qe" name="n74" src="loe73w" fileName="component/EPFLSMui/Frame 1248.png" xy="554,-21" size="1240,199" group="n70_dunj">
|
||||||
<gearDisplay controller="over" pages="2"/>
|
<gearDisplay controller="over" pages="2"/>
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n75_p9qe" name="show_win" src="o49p1d4" fileName="component/Main/component/new_ui/niyimh.png" pkg="yzaioi79" xy="417,14" group="n70_dunj">
|
<image id="n75_p9qe" name="show_win" src="loe73x" fileName="component/EPFLSMui/Frame 12431.png" xy="554,-21" size="1240,199" group="n70_dunj">
|
||||||
<gearDisplay controller="over" pages="0"/>
|
<gearDisplay controller="over" pages="0"/>
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n76_p9qe" name="show_low" src="isix1gi" fileName="component/clearing/image/zjzlbt.png" pkg="yzaioi79" xy="418,18" group="n70_dunj" visible="false">
|
<image id="n76_p9qe" name="show_low" src="loe73y" fileName="component/EPFLSMui/Frame 1243.png" xy="554,-21" size="1240,199" group="n70_dunj" visible="false">
|
||||||
<gearDisplay controller="over" pages="0"/>
|
<gearDisplay controller="over" pages="0"/>
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</image>
|
</image>
|
||||||
<component id="n80_p9qe" name="btn_showResult" src="aen8chp" fileName="buttons/Btn_newYellow_comfirm.xml" pkg="27vd145b" xy="574,679" group="n70_dunj">
|
<component id="n80_p9qe" name="btn_showResult" src="aen8chp" fileName="buttons/Btn_newYellow_comfirm.xml" pkg="27vd145b" xy="982,984" size="383,145" group="n70_dunj">
|
||||||
<gearDisplay controller="button" pages="1"/>
|
<gearDisplay controller="button" pages="1"/>
|
||||||
<Button icon="ui://27vd145baen8chr"/>
|
<Button icon="ui://ypulwxjhloe740"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n70_dunj" name="n70" xy="-5,5" size="1334,1605" advanced="true">
|
<group id="n70_dunj" name="n70" xy="0,-21" size="2348,3286" advanced="true">
|
||||||
<gearDisplay controller="over" pages="0,1,2"/>
|
<gearDisplay controller="over" pages="0,1,2"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n71_dunj" name="big_result" src="aen81b0" fileName="component/clearing/result_zipai_main.xml" pkg="yzaioi79" xy="0,0">
|
<component id="n71_dunj" name="big_result" src="aen81b0" fileName="component/clearing/result_zipai_main.xml" pkg="yzaioi79" xy="0,0">
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,24 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="360,180">
|
<component size="2226,392">
|
||||||
<controller name="owner" pages="0,,1," selected="0"/>
|
<controller name="owner" pages="0,,1," selected="0"/>
|
||||||
<controller name="bank" pages="0,,1," selected="0"/>
|
<controller name="bank" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n21_n1ry" name="n21" src="lwcl2m" fileName="font/images/head/index_bg_01.png" pkg="27vd145b" xy="27,28" size="89,87" group="n20_n1ry" aspect="true" visible="false"/>
|
<image id="n21_n1ry" name="n21" src="lwcl2m" fileName="font/images/head/index_bg_01.png" pkg="27vd145b" xy="125,141" size="89,87" group="n20_n1ry" aspect="true" visible="false"/>
|
||||||
<image id="n27_p9qe" name="n27" src="aen8chq" fileName="component/head/image/touxiang_di_img.png" pkg="27vd145b" xy="34,32" size="78,78" group="n20_n1ry"/>
|
<image id="n27_p9qe" name="n27" src="aen8chq" fileName="component/head/image/touxiang_di_img.png" pkg="27vd145b" xy="132,145" size="78,78" group="n20_n1ry"/>
|
||||||
<component id="n28_p9qe" name="btn_head" src="do2f1z" fileName="component/head/Head2.xml" pkg="27vd145b" xy="32,31" group="n20_n1ry"/>
|
<component id="n28_p9qe" name="btn_head" src="do2f1z" fileName="component/head/Head2.xml" pkg="27vd145b" xy="39,32" group="n20_n1ry"/>
|
||||||
<text id="n6_fux2" name="score" xy="142,49" size="125,50" group="n20_n1ry" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" text="-66"/>
|
<text id="n6_fux2" name="score" xy="1839,253" size="349,82" group="n20_n1ry" font="ui://27vd145bpxed7ik2" fontSize="62" color="#0a1628" vAlign="middle" autoSize="shrink" text="-66"/>
|
||||||
<image id="n18_jqcw" name="n18" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="0,0" group="n20_n1ry" scale="0.8,0.8" visible="false">
|
<image id="n18_jqcw" name="n18" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="98,113" group="n20_n1ry" scale="0.8,0.8" visible="false">
|
||||||
<gearDisplay controller="bank" pages="1"/>
|
<gearDisplay controller="bank" pages="1"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n14_pt1r" name="n14" src="e54q3y" fileName="font/images/head/owner.png" pkg="27vd145b" xy="104,83" group="n20_n1ry" visible="false">
|
<image id="n14_pt1r" name="n14" src="e54q3y" fileName="font/images/head/owner.png" pkg="27vd145b" xy="202,196" group="n20_n1ry" visible="false">
|
||||||
<gearDisplay controller="owner" pages="1"/>
|
<gearDisplay controller="owner" pages="1"/>
|
||||||
</image>
|
</image>
|
||||||
<text id="n5_fux2" name="playerName" xy="1,115" size="165,33" group="n20_n1ry" fontSize="26" color="#b25116" align="center" vAlign="middle" autoSize="none" singleLine="true" text="玩家的名字則麽長~~"/>
|
<text id="n5_fux2" name="playerName" xy="174,40" size="409,56" group="n20_n1ry" font="ui://27vd145bpxed7ik2" fontSize="42" color="#0a1628" vAlign="middle" autoSize="shrink" singleLine="true" text="玩家的名字則麽長~~"/>
|
||||||
<text id="n23_w06x" name="tili_score" xy="129,143" size="125,36" group="n20_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" text="-66"/>
|
<text id="n23_w06x" name="tili_score" xy="1635,128" size="299,49" group="n20_n1ry" font="ui://27vd145bpxed7ik2" fontSize="36" color="#0a1628" vAlign="middle" autoSize="shrink" text="-66"/>
|
||||||
<text id="n25_w06x" name="tili_title" xy="37,145" size="82,36" group="n20_n1ry" visible="false" fontSize="26" color="#b25116" bold="true" text="积分:"/>
|
<text id="n25_w06x" name="tili_title" xy="1493,130" size="112,49" group="n20_n1ry" font="ui://27vd145bpxed7ik2" fontSize="36" color="#0a1628" autoSize="shrink" text="积分:"/>
|
||||||
<text id="n26_w06x" name="yidashangxian" xy="0,1" size="164,30" group="n20_n1ry" fontSize="26" color="#b25116" align="center" vAlign="middle" autoSize="none" bold="true" text=""/>
|
<text id="n26_w06x" name="yidashangxian" xy="98,114" size="164,30" group="n20_n1ry" visible="false" fontSize="26" color="#b25116" align="center" vAlign="middle" autoSize="none" bold="true" text=""/>
|
||||||
<group id="n20_n1ry" name="n20" xy="0,0" size="267,180"/>
|
<group id="n20_n1ry" name="n20" xy="39,32" size="2149,303"/>
|
||||||
<list id="n22_ey1o" name="card_list" xy="193,-25" size="376,304" layout="row" scroll="horizontal" colGap="5" defaultItem="ui://ypulwxjhbfg93t" vAlign="middle" autoClearItems="true">
|
<list id="n22_ey1o" name="card_list" xy="593,40" size="460,304" layout="row" scroll="horizontal" colGap="5" defaultItem="ui://ypulwxjhbfg93t" vAlign="middle" autoClearItems="true">
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
|
||||||
|
|
@ -140,6 +140,22 @@
|
||||||
<image id="mo9i3r" name="3-1.png" path="/images/" exported="true"/>
|
<image id="mo9i3r" name="3-1.png" path="/images/" exported="true"/>
|
||||||
<image id="mo9i3s" name="4-1.png" path="/images/" exported="true"/>
|
<image id="mo9i3s" name="4-1.png" path="/images/" exported="true"/>
|
||||||
<component id="bfg93t" name="card_item(1).xml" path="/component/clearing/"/>
|
<component id="bfg93t" name="card_item(1).xml" path="/component/clearing/"/>
|
||||||
|
<image id="loe73u" name="Frame 1240.png" path="/component/EPFLSMui/" exported="true" atlas="alone_mof"/>
|
||||||
|
<image id="loe73v" name="Frame 1241.png" path="/component/EPFLSMui/" exported="true" atlas="alone_mof"/>
|
||||||
|
<image id="loe73w" name="Frame 1248.png" path="/component/EPFLSMui/"/>
|
||||||
|
<image id="loe73x" name="Frame 12431.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe73y" name="Frame 1243.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe73z" name="Rectangle 333.png" path="/component/EPFLSMui/" atlas="alone_mof"/>
|
||||||
|
<image id="loe740" name="Group 5201.png" path="/component/EPFLSMui/"/>
|
||||||
|
<image id="loe742" name="btn_close.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe743" name="Group 52011.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe744" name="Group 518.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe745" name="Group 521.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe746" name="Rectangle 303.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe747" name="Rectangle 306.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe748" name="Frame 958.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe749" name="总成绩.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
|
<image id="loe74a" name="Frame 787.png" path="/component/EPFLSMui/" exported="true"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="Extend_Poker_FuLuShou" path="..\wb_unity_pro\Assets\ART\extend\zipai\fulushou\ui" packageCount="2"/>
|
<publish name="Extend_Poker_FuLuShou" path="..\wb_unity_pro\Assets\ART\extend\zipai\fulushou\ui" packageCount="2"/>
|
||||||
</packageDescription>
|
</packageDescription>
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="184,85" extention="Button">
|
|
||||||
<displayList>
|
|
||||||
<loader id="n2" name="icon" xy="0,0" size="184,85" align="center" vAlign="middle">
|
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
|
||||||
</loader>
|
|
||||||
</displayList>
|
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="297,89" extention="Button">
|
|
||||||
<controller name="button" pages="0,up,1,down" selected="0"/>
|
|
||||||
<displayList>
|
|
||||||
<image id="n0_jes7" name="n0" src="hnkrcgs" fileName="component/yq.png" xy="0,0" visible="false"/>
|
|
||||||
<image id="n1_hnkr" name="n1" src="hnkrcgr" fileName="component/yqhy.png" xy="22,6" visible="false"/>
|
|
||||||
<image id="n2_e106" name="n2" src="e106ch4" fileName="image/wxyqhy_img.png" xy="0,0"/>
|
|
||||||
</displayList>
|
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="83,88">
|
|
||||||
<displayList>
|
|
||||||
<image id="n0_g880" name="n0" src="prgzes" fileName="images/clock.png" xy="-4,-8"/>
|
|
||||||
<text id="n1_g880" name="title" xy="11,23" size="58,62" font="方正准圆简体" fontSize="38" color="#a63b08" align="center" vAlign="middle" autoSize="none" text="20">
|
|
||||||
<relation target="n0_g880" sidePair="center-center,middle-middle"/>
|
|
||||||
</text>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,163 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="1050,560">
|
|
||||||
<controller name="round" pages="0,,1,,2," selected="0"/>
|
|
||||||
<controller name="rule" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="leaf" pages="0,,1," selected="1">
|
|
||||||
<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"/>
|
|
||||||
<displayList>
|
|
||||||
<component id="n23_mz4j" name="n23" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,9">
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<component id="n0_sh1u" name="round1" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="183,14">
|
|
||||||
<Button checked="true" title=" 10局" controller="round" page="0"/>
|
|
||||||
</component>
|
|
||||||
<component id="n1_sh1u" name="round2" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="483,14">
|
|
||||||
<Button title="15局" controller="round" page="1"/>
|
|
||||||
</component>
|
|
||||||
<component id="n16_sh1u" name="round3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="783,14">
|
|
||||||
<Button title="20局" controller="round" page="2"/>
|
|
||||||
</component>
|
|
||||||
<text id="n4_sh1u" name="n4" xy="40,21" size="119,36" fontSize="28" color="#ffffff" bold="true" text="局 数"/>
|
|
||||||
<component id="n24_mz4j" name="n24" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,79">
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<text id="n6_sh1u" name="n6" xy="40,89" size="119,36" fontSize="28" color="#ffffff" vAlign="middle" bold="true" text="玩 法"/>
|
|
||||||
<component id="n26_c6dl" name="16_zhang" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,84" size="350,47">
|
|
||||||
<Button checked="true" title=" 16张玩法" controller="leaf" page="1"/>
|
|
||||||
</component>
|
|
||||||
<component id="n27_c6dl" name="15_zhang" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,84" size="352,47">
|
|
||||||
<Button title=" 15张玩法" controller="leaf" page="0"/>
|
|
||||||
</component>
|
|
||||||
<component id="n48_fwfg" name="n48" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,149">
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<text id="n49_fwfg" name="n49" xy="40,162" size="119,36" fontSize="28" color="#ffffff" vAlign="middle" bold="true" text="房 费"/>
|
|
||||||
<component id="n50_fwfg" name="16_zhang" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,154" size="350,47" group="n56_6cpq">
|
|
||||||
<Button title=" AA支付" controller="Cost" page="1"/>
|
|
||||||
</component>
|
|
||||||
<image id="n70_se1s" name="n70" src="otnw9o" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="759,167" group="n72_se1s"/>
|
|
||||||
<text id="n71_se1s" name="tex_aa" xy="794,166" size="25,26" group="n72_se1s" fontSize="20" color="#ffffff" text="10"/>
|
|
||||||
<group id="n72_se1s" name="n72" xy="759,166" size="68,26" group="n56_6cpq" advanced="true" collapsed="true"/>
|
|
||||||
<group id="n56_6cpq" name="n56" xy="583,154" size="350,47" advanced="true">
|
|
||||||
<gearDisplay controller="agent" pages="0,2"/>
|
|
||||||
<gearXY controller="agent" pages="0,2" values="583,154|181,185" default="583,185"/>
|
|
||||||
</group>
|
|
||||||
<component id="n51_fwfg" name="15_zhang" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="181,154" size="352,47" group="n57_6cpq">
|
|
||||||
<Button checked="true" title=" 房主支付" controller="Cost" page="0"/>
|
|
||||||
</component>
|
|
||||||
<image id="n67_se1s" name="n67" src="otnw9o" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="375,167" group="n69_se1s"/>
|
|
||||||
<text id="n68_se1s" name="tex_owner" xy="410,166" size="25,26" group="n69_se1s" fontSize="20" color="#ffffff" text="10"/>
|
|
||||||
<group id="n69_se1s" name="n69" xy="375,166" size="68,26" group="n57_6cpq" advanced="true" collapsed="true"/>
|
|
||||||
<group id="n57_6cpq" name="n57" xy="181,154" size="352,47" advanced="true">
|
|
||||||
<gearDisplay controller="agent" pages="0,1"/>
|
|
||||||
</group>
|
|
||||||
<component id="n25_mz4j" name="n25" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,219">
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<text id="n43_m1mb" name="n43" xy="40,230" size="119,36" fontSize="28" color="#ffffff" vAlign="middle" bold="true" text="人 数"/>
|
|
||||||
<component id="n44_m1mb" name="people_3" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="583,224" size="349,47">
|
|
||||||
<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,224" size="348,47">
|
|
||||||
<Button checked="true" title=" 2 人" controller="player_num" page="0"/>
|
|
||||||
</component>
|
|
||||||
<component id="n29_c6dl" name="n29" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,289">
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<text id="n30_c6dl" name="n30" xy="40,300" size="119,36" fontSize="28" color="#ffffff" vAlign="middle" bold="true" text="出 牌"/>
|
|
||||||
<component id="n31_c6dl" name="random" src="h1uu3f" fileName="component/create_room/Btn_cr_checkbox.xml" pkg="27vd145b" xy="183,294" size="240,47">
|
|
||||||
<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="635,294" size="196,47">
|
|
||||||
<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,294" size="190,47">
|
|
||||||
<Button title=" 黑桃3先出" controller="rule" page="1"/>
|
|
||||||
</component>
|
|
||||||
<component id="n34_910i" name="n34" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,359" size="1050,109">
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<text id="n10_sh1u" name="n10" xy="39,395" size="121,36" fontSize="28" color="#ffffff" bold="true" text="玩法选项"/>
|
|
||||||
<component id="n28_c6dl" name="will_be_card" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="185,364" size="189,47">
|
|
||||||
<Button checked="true" title=" 能出必出" controller="willBeOut" page="0"/>
|
|
||||||
</component>
|
|
||||||
<component id="n81_eclw" name="fangzuobi" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="832,299" size="172,47">
|
|
||||||
<gearDisplay controller="player_num" pages="1"/>
|
|
||||||
<Button title="防作弊" controller="fangzuobi" page="1"/>
|
|
||||||
</component>
|
|
||||||
<component id="n74_ndir" name="fourBeltThree" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="625,368" size="172,47">
|
|
||||||
<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="394,364" size="207,47">
|
|
||||||
<Button title="显示剩余牌" controller="showlength" page="1"/>
|
|
||||||
</component>
|
|
||||||
<component id="n87_dz27" name="fourBeltThree" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="823,366" size="172,47">
|
|
||||||
<Button title="四带三" controller="fourBeltThree" page="3"/>
|
|
||||||
</component>
|
|
||||||
<component id="n42_m1mb" name="n42" src="amco5z" fileName="component/create_room/di01.xml" pkg="27vd145b" xy="0,473" size="1050,124" group="n40_910i">
|
|
||||||
<gearDisplay controller="willBeOut" pages="0"/>
|
|
||||||
<relation target="" sidePair="width-width"/>
|
|
||||||
</component>
|
|
||||||
<text id="n38_910i" name="n38" xy="40,515" size="121,36" group="n40_910i" fontSize="28" color="#ffffff" bold="true" text="高级玩法"/>
|
|
||||||
<component id="n41_910i" name="heart10" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="181,478" size="350,47" group="n40_910i">
|
|
||||||
<Button checked="true" title=" 红桃10分数翻倍" controller="heart10" page="0"/>
|
|
||||||
</component>
|
|
||||||
<component id="n89_gzyl" name="Threelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="584,545" size="256,47" group="n40_910i">
|
|
||||||
<Button title="三张少带可接完"/>
|
|
||||||
</component>
|
|
||||||
<component id="n88_gzyl" name="planelack" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="178,539" size="264,47" group="n40_910i">
|
|
||||||
<Button title="飞机少带可接完"/>
|
|
||||||
</component>
|
|
||||||
<component id="n39_910i" name="bomb_spring" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="584,478" 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="584,479" size="400,47" group="n40_910i" advanced="true">
|
|
||||||
<gearDisplay controller="leaf" pages="1"/>
|
|
||||||
</group>
|
|
||||||
<group id="n40_910i" name="n40" xy="0,473" size="1050,124" advanced="true">
|
|
||||||
<gearDisplay controller="willBeOut" pages="0"/>
|
|
||||||
</group>
|
|
||||||
<image id="n58_se1s" name="n58" src="otnw9o" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="311,26" group="n60_se1s"/>
|
|
||||||
<text id="n59_se1s" name="tex_price1" xy="346,25" size="25,26" group="n60_se1s" fontSize="20" color="#ffffff" text="10"/>
|
|
||||||
<group id="n60_se1s" name="n60" xy="311,25" size="68,26" advanced="true" collapsed="true"/>
|
|
||||||
<image id="n61_se1s" name="n61" src="otnw9o" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="611,27" group="n63_se1s"/>
|
|
||||||
<text id="n62_se1s" name="tex_price2" xy="646,25" size="25,26" group="n63_se1s" fontSize="20" color="#ffffff" text="20"/>
|
|
||||||
<group id="n63_se1s" name="n63" xy="611,25" size="68,28" advanced="true" collapsed="true"/>
|
|
||||||
<image id="n64_se1s" name="n64" src="otnw9o" fileName="component/create_room/image/pic07.png" pkg="27vd145b" xy="911,27" group="n66_se1s"/>
|
|
||||||
<text id="n65_se1s" name="tex_price3" xy="946,25" size="25,26" group="n66_se1s" fontSize="20" color="#ffffff" text="20"/>
|
|
||||||
<group id="n66_se1s" name="n66" xy="911,25" size="68,28" advanced="true" collapsed="true"/>
|
|
||||||
<component id="n83_eclw" name="n83" src="prgzey" fileName="images/Button3.xml" xy="988,302" 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,173" size="251,114" group="n86_eclw" type="rect" lineSize="0" lineColor="#b3000000" fillColor="#cc000000"/>
|
|
||||||
<text id="n85_eclw" name="n85" xy="778,174" size="248,115" group="n86_eclw" fontSize="22" color="#ffffff" autoSize="none" text="先手玩家出牌前,其他玩家看不到牌"/>
|
|
||||||
<group id="n86_eclw" name="n86" xy="776,173" size="251,116" advanced="true" collapsed="true">
|
|
||||||
<gearDisplay controller="wenhao" pages="1"/>
|
|
||||||
</group>
|
|
||||||
<component id="n90_f2pr" name="ThreeA" src="h1uu3i" fileName="component/create_room/Btn_cr_checkbox2.xml" pkg="27vd145b" xy="186,417" size="214,47">
|
|
||||||
<gearDisplay controller="leaf" pages="1"/>
|
|
||||||
<Button title="三个A算炸弹" controller="ThreeA" page="1"/>
|
|
||||||
</component>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 608 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
|
@ -1,12 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="400,400">
|
|
||||||
<displayList>
|
|
||||||
<image id="n0_p2nt" name="n0" src="prgz9y" xy="9,7" locked="true"/>
|
|
||||||
<movieclip id="n1_p2nt" name="n1" src="prgza7" xy="9,5" locked="true"/>
|
|
||||||
</displayList>
|
|
||||||
<transition name="t0">
|
|
||||||
<item time="0" type="Alpha" target="n1_p2nt" tween="true" startValue="0" endValue="1" duration="8"/>
|
|
||||||
<item time="0" type="Alpha" target="n0_p2nt" tween="true" startValue="1" endValue="0" duration="8"/>
|
|
||||||
<item time="3" type="Sound" value="ui://ktws586ipb0va"/>
|
|
||||||
</transition>
|
|
||||||
</component>
|
|
||||||
|
Before Width: | Height: | Size: 319 KiB |
|
|
@ -1,77 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="1334,750">
|
|
||||||
<displayList>
|
|
||||||
<graph id="n1_ml7b" name="n1" xy="0,0" size="1334,750" locked="true" alpha="0.6" type="rect" fillColor="#ff000000"/>
|
|
||||||
<image id="n16_pa68" name="n16" src="prgza0" xy="235,34" locked="true"/>
|
|
||||||
<image id="n11_ml7b" name="n11" src="prgza1" xy="496,271" pivot="0.5,0.5" size="281,149" locked="true"/>
|
|
||||||
<image id="n9_ml7b" name="n9" src="prgza5" xy="404,239" locked="true" scale="0.2,0.2" blend="add"/>
|
|
||||||
<image id="n17_pa68" name="n17" src="prgza4" xy="204,427" pivot="0.5,0.5" locked="true"/>
|
|
||||||
<image id="n18_pa68" name="n18" src="prgza4" xy="357,176" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
<image id="n19_pa68" name="n19" src="prgza4" xy="1044,528" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
<image id="n20_pa68" name="n20" src="prgza4" xy="1030,262" pivot="0.5,0.5" locked="true" scale="0.8,0.8"/>
|
|
||||||
<image id="n24_pa68" name="n24" src="prgza2" xy="1141,28" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
<image id="n25_pa68" name="n25" src="prgza2" xy="1244,32" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
<image id="n26_pa68" name="n26" src="prgza3" xy="1241,90" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
<image id="n27_pa68" name="n27" src="prgza3" xy="1254,174" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
<image id="n28_pa68" name="n28" src="prgza3" xy="1088,37" pivot="0.5,0.5" locked="true" scale="0.5,0.5"/>
|
|
||||||
</displayList>
|
|
||||||
<transition name="t0">
|
|
||||||
<item time="0" type="Alpha" target="n25_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n9_ml7b" value="0"/>
|
|
||||||
<item time="0" type="Alpha" target="n17_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n18_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n20_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n19_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n11_ml7b" value="0"/>
|
|
||||||
<item time="0" type="Alpha" target="n28_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n27_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n26_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n24_pa68" tween="true" startValue="0" endValue="1" duration="18"/>
|
|
||||||
<item time="0" type="Alpha" target="n16_pa68" tween="true" startValue="0" endValue="1" duration="9"/>
|
|
||||||
<item time="0" type="Rotation" target="n19_pa68" tween="true" startValue="0" endValue="180" duration="8"/>
|
|
||||||
<item time="0" type="Rotation" target="n28_pa68" tween="true" startValue="0" endValue="180" duration="8"/>
|
|
||||||
<item time="0" type="Rotation" target="n17_pa68" tween="true" startValue="0" endValue="180" duration="9"/>
|
|
||||||
<item time="0" type="Rotation" target="n27_pa68" tween="true" startValue="0" endValue="180" duration="8"/>
|
|
||||||
<item time="0" type="Rotation" target="n18_pa68" tween="true" startValue="0" endValue="180" duration="8"/>
|
|
||||||
<item time="0" type="Rotation" target="n20_pa68" tween="true" startValue="0" endValue="180" duration="8"/>
|
|
||||||
<item time="0" type="Sound" value="ui://ktws586iml7bk"/>
|
|
||||||
<item time="0" type="XY" target="n28_pa68" tween="true" startValue="1088,37" endValue="68,623" duration="36"/>
|
|
||||||
<item time="0" type="XY" target="n26_pa68" tween="true" startValue="1241,90" endValue="110,431" duration="36"/>
|
|
||||||
<item time="0" type="XY" target="n24_pa68" tween="true" startValue="1141,28" endValue="183,345.5" duration="36"/>
|
|
||||||
<item time="0" type="XY" target="n27_pa68" tween="true" startValue="1254,174" endValue="481,661.5" duration="36"/>
|
|
||||||
<item time="0" type="XY" target="n25_pa68" tween="true" startValue="1244,32" endValue="156,661.5" duration="36"/>
|
|
||||||
<item time="6" type="Alpha" target="n11_ml7b" tween="true" startValue="0" endValue="1" duration="6"/>
|
|
||||||
<item time="6" type="Size" target="n11_ml7b" tween="true" startValue="332,175" endValue="281,149" duration="18"/>
|
|
||||||
<item time="8" type="Rotation" target="n18_pa68" tween="true" startValue="180" endValue="360" duration="10"/>
|
|
||||||
<item time="8" type="Rotation" target="n20_pa68" tween="true" startValue="180" endValue="360" duration="10"/>
|
|
||||||
<item time="8" type="Rotation" target="n27_pa68" tween="true" startValue="180" endValue="360" duration="10"/>
|
|
||||||
<item time="8" type="Rotation" target="n28_pa68" tween="true" startValue="180" endValue="360" duration="10"/>
|
|
||||||
<item time="8" type="Rotation" target="n19_pa68" tween="true" startValue="180" endValue="320" duration="10"/>
|
|
||||||
<item time="9" type="Rotation" target="n17_pa68" tween="true" startValue="180" endValue="360" duration="9"/>
|
|
||||||
<item time="12" type="Alpha" target="n11_ml7b" tween="true" startValue="1" endValue="1" duration="12"/>
|
|
||||||
<item time="12" type="Alpha" target="n9_ml7b" tween="true" startValue="0" endValue="1" duration="12"/>
|
|
||||||
<item time="12" type="XY" target="n9_ml7b" tween="true" startValue="404,239" endValue="608,346" duration="24"/>
|
|
||||||
<item time="18" type="Alpha" target="n26_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n18_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n24_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n17_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n20_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n19_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n25_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n28_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Alpha" target="n27_pa68" tween="true" startValue="1" endValue="0" duration="18"/>
|
|
||||||
<item time="18" type="Rotation" target="n27_pa68" tween="true" startValue="360" endValue="540" duration="9"/>
|
|
||||||
<item time="18" type="Rotation" target="n17_pa68" tween="true" startValue="360" endValue="540" duration="9"/>
|
|
||||||
<item time="18" type="Rotation" target="n28_pa68" tween="true" startValue="360" endValue="540" duration="9"/>
|
|
||||||
<item time="18" type="Rotation" target="n18_pa68" tween="true" startValue="360" endValue="540" duration="9"/>
|
|
||||||
<item time="18" type="Rotation" target="n19_pa68" tween="true" startValue="320" endValue="540" duration="9"/>
|
|
||||||
<item time="18" type="Rotation" target="n20_pa68" tween="true" startValue="360" endValue="540" duration="9"/>
|
|
||||||
<item time="24" type="Alpha" target="n9_ml7b" tween="true" startValue="1" endValue="0" duration="12"/>
|
|
||||||
<item time="27" type="Rotation" target="n28_pa68" tween="true" startValue="540" endValue="720" duration="9"/>
|
|
||||||
<item time="27" type="Rotation" target="n19_pa68" tween="true" startValue="540" endValue="720" duration="9"/>
|
|
||||||
<item time="27" type="Rotation" target="n17_pa68" tween="true" startValue="540" endValue="720" duration="9"/>
|
|
||||||
<item time="27" type="Rotation" target="n18_pa68" tween="true" startValue="540" endValue="720" duration="9"/>
|
|
||||||
<item time="27" type="Rotation" target="n27_pa68" tween="true" startValue="540" endValue="720" duration="9"/>
|
|
||||||
<item time="27" type="Rotation" target="n20_pa68" tween="true" startValue="540" endValue="720" duration="9"/>
|
|
||||||
</transition>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="703,36" overflow="scroll" scroll="horizontal">
|
|
||||||
<displayList>
|
|
||||||
<text id="n1_rnez" name="text" xy="0,5" size="1321,29" fontSize="22" color="#ffffff" vAlign="middle" text="随机首出 不飘 必须管 四带二 四带三 不扎鸟 三张可出完 飞机可出完随机首出 不飘 必须管 四带二 四带三 不扎鸟 三张可出完 飞机可出完"/>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
|
@ -1,9 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="184,85" extention="Button">
|
|
||||||
<displayList>
|
|
||||||
<loader id="n2" name="icon" xy="0,0" size="184,85" align="center" vAlign="middle">
|
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
|
||||||
</loader>
|
|
||||||
</displayList>
|
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="184,85" extention="Button">
|
|
||||||
<displayList>
|
|
||||||
<image id="n1" name="n1" src="prgze8" xy="0,0" size="184,85">
|
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
|
||||||
</image>
|
|
||||||
</displayList>
|
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="55,55" scroll="both" mask="n3_ejbe">
|
|
||||||
<displayList>
|
|
||||||
<loader id="n4_ejbe" name="n4" xy="0,0" size="55,55" restrictSize="55,55,55,55" aspect="true" url="ui://27vd145bklso1c" vAlign="middle" fill="scale" playing="false">
|
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
|
||||||
</loader>
|
|
||||||
<graph id="n3_ejbe" name="n3" xy="0,0" size="55,55" aspect="true" type="eclipse" lineSize="0">
|
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
|
||||||
</graph>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="332,462">
|
|
||||||
<controller name="self" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="big_win" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="pn" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="entrust" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="have_flag" pages="0,,1," selected="0"/>
|
|
||||||
<displayList>
|
|
||||||
<image id="n0_tjnv" name="n0" src="m9jaho" fileName="component/Result/k.png" xy="0,0" size="340,481"/>
|
|
||||||
<graph id="n20_naue" name="n20" xy="0,4" size="332,96" visible="false" type="rect" lineSize="0" fillColor="#33000000"/>
|
|
||||||
<graph id="n21_naue" name="n21" xy="-3,472" size="332,87" visible="false" type="rect" lineSize="0" fillColor="#33000000"/>
|
|
||||||
<image id="n1_tjnv" name="n1" src="m9jahp" fileName="component/Result/zjwjd.png" xy="21,18" visible="false">
|
|
||||||
<gearDisplay controller="self" pages="1"/>
|
|
||||||
</image>
|
|
||||||
<image id="n2_tjnv" name="n2" src="m9jahq" fileName="component/Result/qiwnj.png" xy="20,17" visible="false">
|
|
||||||
<gearDisplay controller="self" pages="0"/>
|
|
||||||
</image>
|
|
||||||
<text id="n3_tjnv" name="txt_name" xy="83,26" size="198,34" fontSize="24" color="#330000" vAlign="middle" autoSize="none" text="111"/>
|
|
||||||
<text id="n4_tjnv" name="txt_reserve_hp" xy="83,60" size="196,34" visible="false" fontSize="22" color="#f2daaa" vAlign="middle" autoSize="none" text="111"/>
|
|
||||||
<component id="n6_tjnv" name="head" src="m9jahv" fileName="component/Result/result_head.xml" xy="24,29"/>
|
|
||||||
<image id="n5_tjnv" name="n5" src="m9jahr" fileName="component/Result/dyj.png" xy="0,0">
|
|
||||||
<gearDisplay controller="big_win" pages="1"/>
|
|
||||||
</image>
|
|
||||||
<image id="n7_tjnv" name="n7" src="m9jahs" fileName="component/Result/fgx.png" xy="42,114" visible="false">
|
|
||||||
<gearXY controller="have_flag" pages="0" values="42,114" default="42,147"/>
|
|
||||||
</image>
|
|
||||||
<image id="n8_tjnv" name="n8" src="m9jahs" fileName="component/Result/fgx.png" xy="45,368" visible="false"/>
|
|
||||||
<list id="n9_tjnv" name="list_param" xy="28,112" size="269,209" overflow="scroll" defaultItem="ui://9n9stu2ea3ztcgq" align="center" vAlign="middle">
|
|
||||||
<gearXY controller="have_flag" pages="0,1" values="28,112|18,146"/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
</list>
|
|
||||||
<image id="n10_tjnv" name="n10" src="m9jahu" fileName="component/Result/font/win/zjxz.png" xy="39,408"/>
|
|
||||||
<text id="n11_tjnv" name="txt_positive" xy="106,379" size="178,64" font="ui://9n9stu2enauecht" fontSize="20" color="#ffff33" align="center" vAlign="middle" autoSize="shrink" bold="true" text="222.2">
|
|
||||||
<gearDisplay controller="pn" pages="1"/>
|
|
||||||
</text>
|
|
||||||
<text id="n12_tjnv" name="txt_navigate" xy="122,393" size="193,64" font="ui://9n9stu2enaueci9" fontSize="20" color="#999999" align="center" vAlign="middle" autoSize="shrink" bold="true" text="2342">
|
|
||||||
<gearDisplay controller="pn" pages="0"/>
|
|
||||||
</text>
|
|
||||||
<image id="n13_tjnv" name="n13" src="m9jaht" fileName="component/Result/tgz.png" xy="135,276">
|
|
||||||
<gearDisplay controller="entrust" pages="1"/>
|
|
||||||
</image>
|
|
||||||
<list id="n18_n12b" name="flag" xy="26,82" size="265,25" layout="row" overflow="scroll" colGap="10" defaultItem="ui://27vd145bn12bcge" align="center" vAlign="middle"/>
|
|
||||||
<image id="n22_naue" name="n22" src="nauechv" fileName="component/Result/font/lose/lose_zj.png" xy="38,408">
|
|
||||||
<gearDisplay controller="pn" pages="0"/>
|
|
||||||
</image>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="174,72" extention="Button">
|
|
||||||
<displayList>
|
|
||||||
<image id="n8_tjnv" name="n8" src="m9jahm" fileName="component/Result/fh.png" xy="0,-6"/>
|
|
||||||
</displayList>
|
|
||||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="1334,750">
|
|
||||||
<controller name="sdk" pages="0,,1," selected="1"/>
|
|
||||||
<controller name="result" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="xipai" pages="0,,1," selected="0"/>
|
|
||||||
<displayList>
|
|
||||||
<graph id="n42_ndir" name="n42" xy="-427,-182" size="2189,1114" alpha="0.65" type="rect" fillColor="#ff000000">
|
|
||||||
<gearDisplay controller="sdk" pages="1"/>
|
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
|
||||||
</graph>
|
|
||||||
<image id="n30_j7ij" name="n30" src="nauechf" fileName="component/Result/image/bg_xjs.png" xy="0,137" size="1334,524" group="n39_j7ij">
|
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
|
||||||
</image>
|
|
||||||
<image id="n32_j7ij" name="biaoti" src="m9jahc" fileName="component/Result/sb.png" xy="389,95" size="540,89" group="n39_j7ij">
|
|
||||||
<gearDisplay controller="result" pages="0"/>
|
|
||||||
</image>
|
|
||||||
<image id="n50_naue" name="n50" src="m9jahd" fileName="component/Result/sl.png" xy="390,63" size="538,83" group="n39_j7ij">
|
|
||||||
<gearDisplay controller="result" pages="1"/>
|
|
||||||
</image>
|
|
||||||
<text id="n33_j7ij" name="n33" xy="67,198" size="124,41" group="n39_j7ij" fontSize="30" color="#c3e5e5" text="玩家昵称"/>
|
|
||||||
<text id="n34_j7ij" name="n34" xy="267,198" size="64,41" group="n39_j7ij" fontSize="30" color="#c3e5e5" text="剩牌"/>
|
|
||||||
<text id="n35_j7ij" name="n35" xy="382,198" size="64,41" group="n39_j7ij" fontSize="30" color="#c3e5e5" text="炸弹"/>
|
|
||||||
<text id="n45_i3h6" name="n45" xy="477,198" size="64,41" group="n39_j7ij" fontSize="30" color="#c3e5e5" text="飘分"/>
|
|
||||||
<text id="n36_j7ij" name="n36" xy="586,198" size="64,41" group="n39_j7ij" fontSize="30" color="#c3e5e5" text="积分"/>
|
|
||||||
<group id="n39_j7ij" name="n39" xy="0,63" size="1334,598" group="n47_m5rj" advanced="true">
|
|
||||||
<gearDisplay controller="sdk" pages="1"/>
|
|
||||||
</group>
|
|
||||||
<list id="n38_j7ij" name="player_list_1" xy="4,250" size="1316,276" group="n47_m5rj" overflow="hidden" lineGap="-17" colGap="50" defaultItem="ui://9n9stu2eprgzei" align="center">
|
|
||||||
<gearDisplay controller="sdk" pages="1"/>
|
|
||||||
<relation target="" sidePair="center-center"/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
</list>
|
|
||||||
<component id="n44_p0nj" name="btn_confirm" src="m9jaha" fileName="component/Btn_Yellow.xml" xy="537,634" size="288,85" group="n18_fmkv">
|
|
||||||
<gearDisplay controller="sdk" pages="1"/>
|
|
||||||
<gearXY controller="sdk" pages="0,1" values="590,641|537,634"/>
|
|
||||||
<Button icon="ui://9n9stu2em9jacgn"/>
|
|
||||||
</component>
|
|
||||||
<component id="n51_hxjc" name="btn_xipai" src="hxjccif" fileName="component/clearing/room/btn_invite(1).xml" xy="794,617" size="304,105" group="n18_fmkv">
|
|
||||||
<gearDisplay controller="xipai" pages="1"/>
|
|
||||||
<relation target="" sidePair="center-center"/>
|
|
||||||
<Button titleColor="#000000" titleFontSize="30" icon="ui://27vd145bf40a7i6a"/>
|
|
||||||
</component>
|
|
||||||
<group id="n18_fmkv" name="n18" xy="537,617" size="561,105" group="n47_m5rj" advanced="true"/>
|
|
||||||
<list id="n60_in2f" name="leftCardHand" xy="4,577" size="2636,181" group="n47_m5rj" scale="0.5,0.433" layout="flow_hz" colGap="-85" defaultItem="ui://9n9stu2eprgzb4" vAlign="middle" autoClearItems="true">
|
|
||||||
<relation target="" sidePair="center-center"/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
</list>
|
|
||||||
<text id="n61_in2f" name="n61" xy="10,526" size="154,41" group="n47_m5rj" fontSize="30" color="#c3e5e5" text="剩余的牌:">
|
|
||||||
<relation target="" sidePair="left-left%"/>
|
|
||||||
</text>
|
|
||||||
<group id="n47_m5rj" name="n47" xy="0,63" size="2640,695" advanced="true"/>
|
|
||||||
<component id="n46_tjnv" name="big_result" src="m9jahb" fileName="component/Result/result_main.xml" xy="0,0">
|
|
||||||
<gearDisplay controller="sdk" pages="0"/>
|
|
||||||
</component>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="1334,105" designImageAlpha="100" designImageLayer="1">
|
|
||||||
<controller name="win" pages="0,,1," selected="0"/>
|
|
||||||
<displayList>
|
|
||||||
<graph id="n13_hog1" name="n13" xy="0,10" size="1332,85" type="rect" lineSize="0" fillColor="#4d000000"/>
|
|
||||||
<text id="n14_j7ij" name="shengpai" xy="254,20" size="95,60" fontSize="30" color="#c3e5e5" align="center" vAlign="middle" autoSize="shrink" text="15"/>
|
|
||||||
<text id="n15_j7ij" name="nichen" xy="5,19" size="232,60" fontSize="25" color="#c3e5e5" align="center" vAlign="middle" autoSize="shrink" text="艾泽拉斯。阿尔萨斯"/>
|
|
||||||
<text id="n16_j7ij" name="boom" xy="368,21" size="81,60" fontSize="30" color="#c3e5e5" align="center" vAlign="middle" autoSize="shrink" text="0"/>
|
|
||||||
<text id="n18_i3h6" name="piao" xy="470,21" size="81,60" fontSize="30" color="#c3e5e5" align="center" vAlign="middle" autoSize="shrink" text="0"/>
|
|
||||||
<text id="n17_j7ij" name="score" xy="564,10" size="133,81" fontSize="25" color="#c3e5e5" align="center" vAlign="middle" autoSize="shrink" text="0"/>
|
|
||||||
<list id="n19_in2f" name="leftCard" xy="714,-6" size="1240,269" scale="0.5,0.433" layout="flow_hz" colGap="-85" defaultItem="ui://9n9stu2eprgzb4" align="center" vAlign="middle" autoClearItems="true">
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
</list>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="251,448">
|
|
||||||
<controller name="zan" pages="0,,1," selected="0"/>
|
|
||||||
<controller name="beishu" pages="0,,1,,2," selected="1"/>
|
|
||||||
<controller name="niao" pages="0,,1," selected="0"/>
|
|
||||||
<displayList>
|
|
||||||
<image id="n0_fux2" name="n0" src="prgze0" fileName="component/Result/image/di(1).png" xy="0,0" size="249,450"/>
|
|
||||||
<image id="n11_h4ge" name="n11" src="lwcl2m" fileName="images/head/index_bg_01.png" pkg="27vd145b" xy="90,0" size="68,68">
|
|
||||||
<gearXY controller="beishu" pages="0" values="90,19" default="90,0"/>
|
|
||||||
</image>
|
|
||||||
<text id="n2_fux2" name="name" xy="5,63" size="240,58" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="饿啊分啊我日发放我而无法我发分安抚我安抚">
|
|
||||||
<gearXY controller="beishu" pages="0" values="5,94" default="5,63"/>
|
|
||||||
</text>
|
|
||||||
<text id="n10_z5om" name="score2" xy="37,125" size="177,57" font="ui://27vd145bz5om44" fontSize="45" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="245545">
|
|
||||||
<gearDisplay controller="beishu" pages="2"/>
|
|
||||||
</text>
|
|
||||||
<list id="n12_h4ge" name="list" xy="26,359" size="200,75" visible="false" scroll="horizontal" lineGap="3" defaultItem="ui://lxhyy2sdfux2e2" autoItemSize="false" align="center">
|
|
||||||
<gearXY controller="beishu" pages="0,1,2" values="26,410|26,359|26,359"/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
<item/>
|
|
||||||
</list>
|
|
||||||
<component id="n13_dtb0" name="head" src="prgzeg" fileName="component/Result/Head3.xml" xy="97,7">
|
|
||||||
<gearXY controller="beishu" pages="0" values="97,26" default="97,7"/>
|
|
||||||
</component>
|
|
||||||
<component id="n14_qfrg" name="btn_zan" src="prgzeh" fileName="component/Result/btn_zan.xml" xy="0,0" size="247,517" locked="true" alpha="0"/>
|
|
||||||
<image id="n15_qfrg" name="n15" src="prgze1" fileName="component/Result/image/zan.png" xy="155,2">
|
|
||||||
<gearDisplay controller="zan" pages="1"/>
|
|
||||||
</image>
|
|
||||||
<text id="n16_rdtm" name="max_score1" xy="10,405" size="136,32" group="n20_rdtm" fontSize="25" autoSize="none" singleLine="true" text="当局最高分:
"/>
|
|
||||||
<text id="n17_rdtm" name="win_count1" xy="10,292" size="136,32" group="n20_rdtm" fontSize="25" autoSize="none" singleLine="true" text="赢局数:"/>
|
|
||||||
<text id="n18_rdtm" name="boom_count1" xy="10,368" size="156,32" group="n20_rdtm" fontSize="25" autoSize="none" singleLine="true" text="打出炸弹数:"/>
|
|
||||||
<text id="n19_rdtm" name="spring_count1" xy="10,331" size="141,32" group="n20_rdtm" fontSize="25" autoSize="none" singleLine="true" text="春天次数:


"/>
|
|
||||||
<text id="n21_qkx5" name="win_count" xy="165,292" size="70,32" group="n20_rdtm" fontSize="25" align="right" autoSize="none" singleLine="true" text="300"/>
|
|
||||||
<text id="n22_qkx5" name="spring_count" xy="165,331" size="70,32" group="n20_rdtm" fontSize="25" align="right" autoSize="none" singleLine="true" text="25


"/>
|
|
||||||
<text id="n23_qkx5" name="boom_count" xy="165,368" size="70,32" group="n20_rdtm" fontSize="25" align="right" autoSize="none" singleLine="true" text="25


"/>
|
|
||||||
<text id="n24_qkx5" name="max_score" xy="150,405" pivot="0.5,0.5" size="101,33" group="n20_rdtm" fontSize="25" align="center" vAlign="middle" autoSize="shrink" singleLine="true" text="100000000000"/>
|
|
||||||
<group id="n20_rdtm" name="n20" xy="10,292" size="241,146" advanced="true" collapsed="true">
|
|
||||||
<gearXY controller="beishu" pages="0" values="10,242" default="10,292"/>
|
|
||||||
</group>
|
|
||||||
<text id="n25_f2pr" name="score" xy="37,233" size="177,57" font="ui://27vd145bz5om44" fontSize="45" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="2">
|
|
||||||
<gearXY controller="beishu" pages="0,1,2" values="37,165|37,233|37,233"/>
|
|
||||||
</text>
|
|
||||||
<image id="n26_f2pr" name="n26" src="prgze9" fileName="component/Result/image/bd.png" xy="105,188">
|
|
||||||
<gearDisplay controller="beishu" pages="1,2"/>
|
|
||||||
</image>
|
|
||||||
<image id="n27_f2pr" name="n27" src="prgzea" fileName="component/Result/image/bsxz.png" xy="130,192">
|
|
||||||
<gearDisplay controller="beishu" pages="1,2"/>
|
|
||||||
</image>
|
|
||||||
<text id="n28_f2pr" name="beishu" xy="91,180" pivot="0.5,0.5" size="38,54" scale="0.5,0.5" font="ui://27vd145bz5om44" fontSize="50" align="right" text="1">
|
|
||||||
<gearDisplay controller="beishu" pages="1,2"/>
|
|
||||||
</text>
|
|
||||||
<image id="n30_nbeh" name="n30" src="nbehh3" fileName="component/Main/images/dn.png" xy="12,11">
|
|
||||||
<gearDisplay controller="niao" pages="1"/>
|
|
||||||
</image>
|
|
||||||
<text id="n32_tusb" name="entrust" xy="187,4" size="56,58" fontSize="22" color="#ffffff" align="right" vAlign="middle" autoSize="none" text="托管"/>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<component size="260,42">
|
|
||||||
<displayList>
|
|
||||||
<text id="n1_tjnv" name="txt_value" xy="248,21" pivot="1,0.5" anchor="true" size="134,42" fontSize="30" align="right" vAlign="middle" autoSize="none" text="100"/>
|
|
||||||
<text id="n0_tjnv" name="txt_key" xy="11,21" pivot="0,0.5" anchor="true" size="178,34" fontSize="30" vAlign="middle" autoSize="none" text="11"/>
|
|
||||||
</displayList>
|
|
||||||
</component>
|
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 114 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 4.1 KiB |
|
|
@ -1,14 +0,0 @@
|
||||||
info creator=UIBuilder size=20 resizable=true
|
|
||||||
char id=43 img=nauechy xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=45 img=nauechx xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=46 img=nauechw xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=48 img=nauechz xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=49 img=naueci0 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=50 img=naueci1 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=51 img=naueci2 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=52 img=naueci3 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=53 img=naueci4 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=54 img=naueci5 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=55 img=naueci6 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=56 img=naueci7 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=57 img=naueci8 xoffset=0 yoffset=0 xadvance=0
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
info creator=UIBuilder size=20 resizable=true
|
|
||||||
char id=43 img=nauechj xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=45 img=nauechi xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=46 img=nauechh xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=48 img=nauechk xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=49 img=nauechl xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=50 img=nauechm xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=51 img=nauechn xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=52 img=nauecho xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=53 img=nauechp xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=54 img=nauechq xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=55 img=nauechr xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=56 img=nauechs xoffset=0 yoffset=0 xadvance=0
|
|
||||||
char id=57 img=nauechg xoffset=0 yoffset=0 xadvance=0
|
|
||||||
|
Before Width: | Height: | Size: 729 B |
|
Before Width: | Height: | Size: 327 B |
|
Before Width: | Height: | Size: 345 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 641 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 982 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 758 B |
|
Before Width: | Height: | Size: 334 B |
|
Before Width: | Height: | Size: 348 B |
|
Before Width: | Height: | Size: 1.4 KiB |