结算界面
|
|
@ -224,7 +224,7 @@ function M:FillLiuJuItemData(room, data, item)
|
|||
for k = 1, #hand_card do
|
||||
local cards = qipai_list:AddItemFromPool()
|
||||
for j = 1, #hand_card[k] do
|
||||
cards:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/202_', hand_card[k][j])
|
||||
cards:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/201_', hand_card[k][j])
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
@ -255,77 +255,6 @@ function M:FillLiuJuItemData(room, data, item)
|
|||
|
||||
card_list:RemoveChildrenToPool()
|
||||
|
||||
for k = 1, #data.info_list[i].opCardList do
|
||||
local fztype = data.info_list[i].opCardList[k].type
|
||||
if fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_type').text = '坎'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '碰'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_type').text = '畏'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '提'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '跑'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_type').text = '顺'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card2)
|
||||
cards:GetChild('card_3').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card3)
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_type').text = '将'
|
||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', data.info_list[i].opCardList[k].card2)
|
||||
end
|
||||
end
|
||||
|
||||
local hand_card = {}
|
||||
if #data.info_list[i].hand_card >= 2 then
|
||||
hand_card = PendulumRule.GetHandCard(data.info_list[i].hand_card, 3)
|
||||
|
|
@ -335,7 +264,7 @@ function M:FillLiuJuItemData(room, data, item)
|
|||
cards:GetChild('card_huxi').text = hand_card[k].hu_xi
|
||||
for j = 1, #hand_card[k] do
|
||||
cards:GetChild('card_' .. (j)).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', hand_card[k][j])
|
||||
self:getCardItem('ui://Main_RunBeard/201_', hand_card[k][j])
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
@ -344,7 +273,78 @@ function M:FillLiuJuItemData(room, data, item)
|
|||
local item = card_list:AddItemFromPool()
|
||||
item:GetController('c1').selectedIndex = 1
|
||||
for j = 1, #hand_card do
|
||||
item:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/202_', hand_card[j])
|
||||
item:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/201_', hand_card[j])
|
||||
end
|
||||
end
|
||||
|
||||
for k = #data.info_list[i].opCardList, 1, -1 do
|
||||
local fztype = data.info_list[i].opCardList[k].type
|
||||
if fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_huxi').text = '坎'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/201_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '碰'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_huxi').text = '畏'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/201_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '提'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/201_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '跑'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/201_',
|
||||
data.info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_huxi').text = '顺'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', data.info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', data.info_list[i].opCardList[k].card2)
|
||||
cards:GetChild('card_3').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', data.info_list[i].opCardList[k].card3)
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_huxi').text = '将'
|
||||
cards:GetChild('card_type').text = data.info_list[i].opCardList[k].hu_xi
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', data.info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', data.info_list[i].opCardList[k].card2)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
@ -384,101 +384,101 @@ function M:FillLiuJuItemData(room, data, item)
|
|||
end
|
||||
local card_list = player:GetChild('card_list')
|
||||
card_list:RemoveChildrenToPool()
|
||||
for k = 1, #info_list[i].opCardList do
|
||||
local fztype = info_list[i].opCardList[k].type
|
||||
if fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '顺'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card2)
|
||||
cards:GetChild('card_3').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card3)
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '碰'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '坎'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '畏'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '跑'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_type').text = '提'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_type').text = '将'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card2)
|
||||
end
|
||||
end
|
||||
if #info_list[i].hand_card > 0 then
|
||||
--local hand_card = PendulumRule.GetHandCard(info_list[i].hand_card, 3)
|
||||
local hand_card
|
||||
if #info_list[i].hand_card > 2 then
|
||||
hand_card = PendulumRule.GetHandCard(info_list[i].hand_card, 3)
|
||||
|
||||
for k = 1, #hand_card do
|
||||
for k = #hand_card, 1, -1 do
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = hand_card[k].hu_xi
|
||||
for j = 1, #hand_card[k] do
|
||||
cards:GetChild('card_' .. (j)).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', hand_card[k][j])
|
||||
self:getCardItem('ui://Main_RunBeard/201_', hand_card[k][j])
|
||||
end
|
||||
end
|
||||
else
|
||||
hand_card = info_list[i].hand_card
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
for j = 1, #hand_card do
|
||||
for j = #hand_card, 1, -1 do
|
||||
cards:GetChild('card_' .. (j)).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', hand_card[j])
|
||||
self:getCardItem('ui://Main_RunBeard/201_', hand_card[j])
|
||||
end
|
||||
end
|
||||
end
|
||||
for k = #info_list[i].opCardList, 1, -1 do
|
||||
local fztype = info_list[i].opCardList[k].type
|
||||
if fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '顺'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card2)
|
||||
cards:GetChild('card_3').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card3)
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '碰'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '坎'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '畏'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '跑'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
cards:GetChild('card_huxi').text = '提'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_huxi').text = '将'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card2)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
@ -505,7 +505,7 @@ function M:FillItemData(room, data, item)
|
|||
for k = 1, #hand_card do
|
||||
local cards = qipai_list:AddItemFromPool()
|
||||
for j = 1, #hand_card[k] do
|
||||
cards:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/202_', hand_card[k][j])
|
||||
cards:GetChild('card_' .. (j)).icon = self:getCardItem('ui://Main_RunBeard/201_', hand_card[k][j])
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
@ -637,12 +637,12 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
end
|
||||
end]]
|
||||
for i = 1, #win_data.opCardList do
|
||||
for i = #win_data.opCardList, 1, -1 do
|
||||
local fztype = win_data.opCardList[i].type
|
||||
if fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '顺'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '顺'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', win_data.opCardList[i].card1)
|
||||
|
|
@ -664,8 +664,8 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '碰'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '碰'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
|
|
@ -677,8 +677,8 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
elseif fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '坎'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '坎'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
if win_data.opCardList[i].card1 == win_data.win_card and isWin_Card == true then
|
||||
isWin_Card = false
|
||||
|
|
@ -690,8 +690,8 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '畏'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '畏'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
if win_data.opCardList[i].card1 == win_data.win_card and isWin_Card == true then
|
||||
isWin_Card = false
|
||||
|
|
@ -703,8 +703,8 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '跑'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '跑'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
if win_data.opCardList[i].card1 == win_data.win_card and isWin_Card == true then
|
||||
isWin_Card = false
|
||||
|
|
@ -716,8 +716,8 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '提'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '提'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
if win_data.opCardList[i].card1 == win_data.win_card and isWin_Card == true then
|
||||
isWin_Card = false
|
||||
|
|
@ -729,17 +729,17 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '将'
|
||||
cards:GetChild('card_huxi').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetChild('card_huxi').text = '将'
|
||||
cards:GetChild('card_type').text = win_data.opCardList[i].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 0
|
||||
if win_data.opCardList[i].card1 == win_data.win_card and isWin_Card == true then
|
||||
isWin_Card = false
|
||||
cards:GetController('hu').selectedIndex = 0
|
||||
end
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', win_data.opCardList[i].card1)
|
||||
self:getCardItem('ui://Main_RunBeard/201_', win_data.opCardList[i].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', win_data.opCardList[i].card1)
|
||||
self:getCardItem('ui://Main_RunBeard/201_', win_data.opCardList[i].card1)
|
||||
end
|
||||
end
|
||||
--printlog("FillItemData11333333")
|
||||
|
|
@ -796,90 +796,88 @@ function M:FillItemData(room, data, item)
|
|||
end
|
||||
local card_list = player:GetChild('card_list')
|
||||
card_list:RemoveChildrenToPool()
|
||||
for k = 1, #info_list[i].opCardList do
|
||||
local fztype = info_list[i].opCardList[k].type
|
||||
if fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '顺'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card2)
|
||||
cards:GetChild('card_3').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card3)
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '碰'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '坎'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '畏'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '跑'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '提'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_type').text = '将'
|
||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 0
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', info_list[i].opCardList[k].card2)
|
||||
end
|
||||
end
|
||||
|
||||
if #info_list[i].hand_card > 0 then
|
||||
local hand_card = PendulumRule.GetHandCard(info_list[i].hand_card, 3)
|
||||
for k = 1, #hand_card do
|
||||
for k = #hand_card, 1, -1 do
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
for j = 1, #hand_card[k] do
|
||||
cards:GetChild('card_' .. (j)).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/202_', hand_card[k][j])
|
||||
self:getCardItem('ui://Main_RunBeard/201_', hand_card[k][j])
|
||||
end
|
||||
end
|
||||
end
|
||||
for k = #info_list[i].opCardList, 1, -1 do
|
||||
local fztype = info_list[i].opCardList[k].type
|
||||
if fztype == RB_FZType.Chi then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '顺'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
|
||||
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card2)
|
||||
cards:GetChild('card_3').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card3)
|
||||
elseif fztype == RB_FZType.Peng then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '碰'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Kan then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '坎'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Wei or fztype == RB_FZType.ChouWei then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '畏'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Pao then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '跑'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
elseif fztype == RB_FZType.Ti then
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '提'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 2
|
||||
for j = 1, 4 do
|
||||
cards:GetChild('card_' .. j).icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
end
|
||||
else
|
||||
local cards = card_list:AddItemFromPool()
|
||||
cards:GetChild('card_huxi').text = '将'
|
||||
cards:GetChild('card_type').text = info_list[i].opCardList[k].hu_xi
|
||||
cards:GetController('c1').selectedIndex = 0
|
||||
cards:GetChild('card_1').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card1)
|
||||
cards:GetChild('card_2').icon =
|
||||
self:getCardItem('ui://Main_RunBeard/201_', info_list[i].opCardList[k].card2)
|
||||
end
|
||||
end
|
||||
|
||||
-- self._view:GetChild('score_shu').text = '总胡息:' .. info_list[i].total_score
|
||||
end
|
||||
|
|
|
|||
|
|
@ -6,9 +6,6 @@
|
|||
"n84_rbpg": {
|
||||
"hidden": true
|
||||
},
|
||||
"n64_pwj4": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n4_fux2": {
|
||||
"hidden": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,16 +3,21 @@
|
|||
"libview.iconScale": 0,
|
||||
"doc.openedDocs": [
|
||||
"ui://lkq9ne9speuq8b",
|
||||
"ui://lkq9ne9speuq5a",
|
||||
"ui://lkq9ne9speuq6e",
|
||||
"ui://lkq9ne9speuq6r",
|
||||
"ui://1utjt0r2ufu929",
|
||||
"ui://1utjt0r2ufu92i",
|
||||
"ui://1utjt0r2ufu923"
|
||||
"ui://1utjt0r2ufu930",
|
||||
"ui://1utjt0r2ufu923",
|
||||
"ui://1utjt0r2ufu92u",
|
||||
"ui://1utjt0r2ufu929",
|
||||
"ui://lkq9ne9speuq9n",
|
||||
"ui://lkq9ne9speuq9g"
|
||||
],
|
||||
"test.device": "720p Phone",
|
||||
"canvasColor": 10066329,
|
||||
"auxline2": true,
|
||||
"doc.activeDoc": "ui://1utjt0r2ufu92i",
|
||||
"doc.activeDoc": "ui://lkq9ne9speuq9n",
|
||||
"libview.twoColumn": false,
|
||||
"libview.expandedNodes": [
|
||||
"27vd145b",
|
||||
|
|
@ -35,8 +40,14 @@
|
|||
"/component/clearing/image/",
|
||||
"1utjt0r2",
|
||||
"/images/",
|
||||
"1utjt0r2",
|
||||
"/mgr/",
|
||||
"v0j9abjy",
|
||||
"/",
|
||||
"v0j9abjy",
|
||||
"/images/",
|
||||
"v0j9abjy",
|
||||
"/images/cards/",
|
||||
"v0j9abjy",
|
||||
"/images/cards/2/",
|
||||
"lkq9ne9s",
|
||||
"/",
|
||||
"lkq9ne9s",
|
||||
|
|
@ -74,8 +85,6 @@
|
|||
"lkq9ne9s",
|
||||
"/component/setting/",
|
||||
"lkq9ne9s",
|
||||
"/component/setting/images/",
|
||||
"lkq9ne9s",
|
||||
"/image/",
|
||||
"lkq9ne9s",
|
||||
"/images/",
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="140,36">
|
||||
<component size="330,64">
|
||||
<displayList>
|
||||
<loader id="n0_n1ry" name="n0" xy="0,4" size="77,35" aspect="true" url="ui://1utjt0r2ufu9v" fill="scale" clearOnPublish="true">
|
||||
<loader id="n0_n1ry" name="n0" xy="0,0" size="144,64" aspect="true" url="ui://1utjt0r2ufu9v" fill="scale" clearOnPublish="true">
|
||||
<relation target="" sidePair=""/>
|
||||
</loader>
|
||||
<text id="n2_ey1o" name="n2" xy="80,-1" size="90,42" font="Microsoft YaHei" fontSize="28" color="#b25116" vAlign="middle" autoSize="shrink" text="100胡息"/>
|
||||
<text id="n2_ey1o" name="n2" xy="155,4" size="161,52" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="shrink" text="100胡息"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,23 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="55,262">
|
||||
<controller name="c1" pages="0,,1,,2," selected="0"/>
|
||||
<controller name="hu" pages="0,,1,,2,,3,,4," selected="0"/>
|
||||
<component size="92,400">
|
||||
<controller name="c1" pages="0,,1,,2," selected="2"/>
|
||||
<controller name="hu" pages="0,,1,,2,,3,,4," selected="1"/>
|
||||
<displayList>
|
||||
<loader id="n18_of6w" name="card_4" xy="0,166" pivot="0.5,0.5" size="55,67" group="n19_of6w" aspect="true" rotation="180" fill="scale">
|
||||
<loader id="n18_of6w" name="card_4" xy="5,2" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scale" autoSize="true">
|
||||
<gearDisplay controller="c1" pages="2"/>
|
||||
</loader>
|
||||
<loader id="n17_of6w" name="card_3" xy="0,121" pivot="0.5,0.5" size="55,67" group="n19_of6w" aspect="true" rotation="180" fill="scale">
|
||||
<loader id="n17_of6w" name="card_3" xy="4,85" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scale" autoSize="true">
|
||||
<gearDisplay controller="c1" pages="1,2"/>
|
||||
</loader>
|
||||
<loader id="n16_of6w" name="card_2" xy="0,76" pivot="0.5,0.5" size="55,67" group="n19_of6w" aspect="true" rotation="180" fill="scale"/>
|
||||
<loader id="n15_of6w" name="card_1" xy="0,31" pivot="0.5,0.5" size="55,67" group="n19_of6w" aspect="true" rotation="180" fill="scale"/>
|
||||
<group id="n19_of6w" name="n19" xy="0,31" size="55,202" group="n22_of6w" advanced="true"/>
|
||||
<text id="n20_of6w" name="card_type" xy="2,237" pivot="0.5,0.5" size="49,39" group="n22_of6w" rotation="180" font="Microsoft YaHei" fontSize="28" color="#b25116" align="center" vAlign="bottom" leading="0" autoSize="shrink" text="
"/>
|
||||
<text id="n21_of6w" name="card_huxi" xy="8,-18" pivot="0.5,0.5" size="40,44" group="n22_of6w" rotation="180" font="Microsoft YaHei" fontSize="32" color="#b25116" align="center" vAlign="middle" leading="0" autoSize="shrink" text="

"/>
|
||||
<group id="n22_of6w" name="n22" xy="0,-18" size="55,294" advanced="true"/>
|
||||
<image id="n23_of6w" name="n23" src="ufu9u" fileName="component/clearing/image/hu_icon.png" xy="5,38" pivot="0.5,0.5" size="18,18" aspect="true" rotation="180">
|
||||
<loader id="n16_of6w" name="card_2" xy="4,166" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scale" autoSize="true"/>
|
||||
<loader id="n15_of6w" name="card_1" xy="4,248" pivot="0.5,0.5" size="81,81" group="n19_of6w" fill="scale" autoSize="true"/>
|
||||
<group id="n19_of6w" name="n19" xy="4,2" size="82,327" group="n22_of6w" advanced="true"/>
|
||||
<text id="n20_of6w" name="card_type" xy="0,316" pivot="0.5,0.5" size="91,86" group="n22_of6w" font="Microsoft YaHei" fontSize="56" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text="00"/>
|
||||
<text id="n21_of6w" name="card_huxi" xy="-17,-89" pivot="0.5,0.5" size="130,101" group="n22_of6w" font="Microsoft YaHei" fontSize="56" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text="跑"/>
|
||||
<group id="n22_of6w" name="n22" xy="-17,-89" size="130,491" advanced="true"/>
|
||||
<image id="n23_of6w" name="n23" src="ufu9u" fileName="component/clearing/image/hu_icon.png" xy="5,304" pivot="0.5,0.5" size="18,18" aspect="true">
|
||||
<gearDisplay controller="hu" pages="1,2,3,4"/>
|
||||
<gearXY controller="hu" pages="0,1,2,3,4" values="5,38|4,46|8,102|3,138|3,194"/>
|
||||
<gearXY controller="hu" pages="0,1,2,3,4" values="5,38|5,304|4,220|4,136|5,55"/>
|
||||
</image>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,17 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="2178,1120">
|
||||
<controller name="over" pages="0,,1,,2,,3," selected="2"/>
|
||||
<controller name="button" pages="0,,1," selected="0"/>
|
||||
<component size="2532,1170">
|
||||
<controller name="over" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="button" pages="0,,1," selected="1"/>
|
||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||
<controller name="owner" pages="0,,1," selected="0"/>
|
||||
<controller name="bank" pages="0,,1," selected="0"/>
|
||||
<controller name="qipai" pages="0,,1," selected="0"/>
|
||||
<controller name="xipai" pages="0,,1," selected="0"/>
|
||||
<controller name="hudianpao" pages="0,,1,,2," selected="2"/>
|
||||
<controller name="hudianpao" pages="0,,1,,2," selected="1"/>
|
||||
<displayList>
|
||||
<image id="n97_o0c1" name="n97" src="o0c18z" fileName="images/clearing_bg1.png" xy="-2,2" size="2178,1120" group="n70_dunj"/>
|
||||
<image id="n99_o0c1" name="n99" src="o0c190" fileName="images/clearing_bg2.png" xy="20,115" size="2128,1002" group="n70_dunj"/>
|
||||
<component id="n20_pt1r" name="win_base" pkg="27vd145b" src="e6awcd0" fileName="Win_Frame_Old.xml" xy="3,1482" size="1334,750" group="n70_dunj"/>
|
||||
<group id="n70_dunj" name="n70" xy="-112,-660" size="4643,1782" advanced="true">
|
||||
<gearDisplay controller="over" pages="0,1,2"/>
|
||||
</group>
|
||||
<image id="n97_o0c1" name="n97" src="o0c18z" fileName="images/clearing_bg1.png" xy="-2,2" size="2531,1120" group="n70_dunj"/>
|
||||
<image id="n99_o0c1" name="n99" src="o0c190" fileName="images/clearing_bg2.png" xy="20,115" size="2490,1002" group="n70_dunj"/>
|
||||
<list id="n7_jt1k" name="player_list_2" xy="-112,-660" size="1300,428" group="n70_dunj" layout="row" colGap="51" defaultItem="ui://1utjt0r2ufu92a" align="center" vAlign="middle">
|
||||
<gearDisplay controller="over" pages="1,2"/>
|
||||
<item/>
|
||||
|
|
@ -19,53 +21,49 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<component id="n12_nrno" name="btn_showResult1" src="ufu92k" fileName="component/head/Btn_realname.xml" xy="521,620" group="n70_dunj" visible="false">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
<Button icon="ui://1utjt0r2ufu92l"/>
|
||||
</component>
|
||||
<text id="n14_pt1r" name="n14" xy="1447,62" size="173,49" group="n19_pt1r" fontSize="36" color="#ffffff" align="right" vAlign="middle" autoSize="none" text="房间号:"/>
|
||||
<text id="n15_pt1r" name="tex_roomnum" xy="1620,62" size="299,51" group="n19_pt1r" fontSize="36" color="#ffffff" vAlign="middle" autoSize="none" text="123456
"/>
|
||||
<text id="n16_pt1r" name="tex_game" xy="1430,1" size="463,49" group="n19_pt1r" fontSize="36" color="#ffffff" vAlign="middle" autoSize="none" text="娄底放炮罚"/>
|
||||
<text id="n17_pt1r" name="tex_data" xy="1110,59" size="334,56" group="n19_pt1r" fontSize="36" color="#b25116" align="right" vAlign="middle" autoSize="none" text="2017-02-12"/>
|
||||
<group id="n19_pt1r" name="room_info" xy="1110,1" size="809,114" group="n70_dunj"/>
|
||||
<text id="n14_pt1r" name="n14" xy="2047,62" size="173,49" group="n19_pt1r" fontSize="36" color="#ffffff" align="right" vAlign="middle" autoSize="none" text="房间号:"/>
|
||||
<text id="n15_pt1r" name="tex_roomnum" xy="2221,61" size="299,51" group="n19_pt1r" fontSize="36" color="#ffffff" vAlign="middle" autoSize="none" text="123456
"/>
|
||||
<text id="n16_pt1r" name="tex_game" xy="2017,8" size="463,49" group="n19_pt1r" fontSize="36" color="#ffffff" align="right" vAlign="middle" autoSize="none" text="娄底放炮罚"/>
|
||||
<text id="n17_pt1r" name="tex_data" xy="1597,61" size="449,56" group="n19_pt1r" fontSize="30" color="#b25116" align="right" vAlign="middle" autoSize="none" text="2017-02-12"/>
|
||||
<group id="n19_pt1r" name="room_info" xy="1597,8" size="923,109" group="n70_dunj"/>
|
||||
<text id="n49_g8y2" name="n49" xy="473,602" size="457,74" group="n70_dunj" visible="false" fontSize="18" color="#999999" vAlign="middle" autoSize="none" singleLine="true" text="此页面仅用于娱乐竞技展示,禁止一切赌博行为!">
|
||||
<gearDisplay controller="over" pages="1"/>
|
||||
</text>
|
||||
<component id="n6_jt1k" name="btn_share_str" src="ufu90" fileName="buttons/Btn_Blue.xml" xy="575,619" group="n51_fmkv">
|
||||
<component id="n6_jt1k" name="btn_share_str" src="ufu90" fileName="buttons/Btn_Blue.xml" xy="442,617" size="233,90" group="n51_fmkv">
|
||||
<gearDisplay controller="sdk" pages="0"/>
|
||||
<gearXY controller="button" pages="0,1" values="575,619|442,617"/>
|
||||
<Button icon="ui://1utjt0r2ufu91q"/>
|
||||
</component>
|
||||
<component id="n50_fmkv" name="btn_chat_room" src="ufu92" fileName="buttons/Btn_Blue2.xml" xy="803,619" group="n51_fmkv">
|
||||
<component id="n50_fmkv" name="btn_chat_room" src="ufu92" fileName="buttons/Btn_Blue2.xml" xy="803,619" size="163,67" group="n51_fmkv">
|
||||
<gearDisplay controller="over" pages="1"/>
|
||||
<Button icon="ui://1utjt0r2ufu92m"/>
|
||||
</component>
|
||||
<component id="n65_pwj4" name="btn_share" src="ufu90" fileName="buttons/Btn_Blue.xml" xy="346,619" group="n51_fmkv" visible="false">
|
||||
<component id="n65_pwj4" name="btn_share" src="ufu90" fileName="buttons/Btn_Blue.xml" xy="442,617" size="233,90" group="n51_fmkv" visible="false">
|
||||
<gearDisplay controller="sdk" pages="0"/>
|
||||
<gearXY controller="button" pages="0,1" values="346,619|442,617"/>
|
||||
<Button icon="ui://1utjt0r2ufu91p"/>
|
||||
</component>
|
||||
<group id="n51_fmkv" name="n51" xy="346,619" size="620,90" group="n70_dunj" advanced="true">
|
||||
<group id="n51_fmkv" name="n51" xy="442,617" size="524,90" group="n70_dunj" advanced="true">
|
||||
<gearDisplay controller="over" pages="1"/>
|
||||
</group>
|
||||
<component id="n66_pwj4" name="btn_close" src="ufu98" fileName="buttons/Btn_close.xml" xy="1706,27" group="n70_dunj" controller="style,0">
|
||||
<component id="n66_pwj4" name="btn_close" src="ufu98" fileName="buttons/Btn_close.xml" xy="1706,27" size="87,92" group="n70_dunj" controller="style,0">
|
||||
<gearDisplay controller="over" pages="1"/>
|
||||
</component>
|
||||
<image id="n74_p9qe" name="n74" src="ufu92n" fileName="component/clearing/image/aborted_game.png" xy="261,-2" group="n70_dunj">
|
||||
<image id="n74_p9qe" name="n74" src="ufu92n" fileName="component/clearing/image/aborted_game.png" xy="873,-2" size="809,125" group="n70_dunj">
|
||||
<gearDisplay controller="over" pages="2"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<image id="n84_rbpg" name="n84" src="ufu91s" fileName="component/clearing/images/banner1.png" xy="34,130" size="1260,279" group="n70_dunj" visible="false"/>
|
||||
<image id="n75_p9qe" name="show_win" src="ufu92o" fileName="component/Main/component/new_ui/niyimh.png" xy="145,1" size="809,125" group="n70_dunj" aspect="true">
|
||||
<image id="n75_p9qe" name="show_win" src="ufu92o" fileName="component/Main/component/new_ui/niyimh.png" xy="881,-1" size="809,125" group="n70_dunj" aspect="true">
|
||||
<gearDisplay controller="over" pages="0"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<image id="n85_rbpg" name="n85" src="ufu91t" fileName="component/clearing/images/banner2.png" xy="39,411" size="1247,283" group="n70_dunj" visible="false"/>
|
||||
<image id="n76_p9qe" name="show_low" src="ufu92p" fileName="component/clearing/image/zjzlbt.png" xy="144,0" group="n70_dunj" aspect="true" visible="false">
|
||||
<image id="n76_p9qe" name="show_low" src="ufu92p" fileName="component/clearing/image/zjzlbt.png" xy="882,-2" size="809,125" group="n70_dunj" aspect="true" visible="false">
|
||||
<gearDisplay controller="over" pages="0"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<component id="n80_p9qe" name="btn_showResult" src="ufu95" fileName="buttons/Btn_newYellow_comfirm.xml" xy="961,674" group="n70_dunj">
|
||||
<component id="n80_p9qe" name="btn_showResult" src="ufu95" fileName="buttons/Btn_newYellow_comfirm.xml" xy="2145,976" size="219,61" group="n70_dunj">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
<Button icon="ui://1utjt0r2ufu92q"/>
|
||||
</component>
|
||||
|
|
@ -84,11 +82,11 @@
|
|||
</image>
|
||||
<text id="n88_rbpg" name="WinerID" xy="106,451" size="151,62" group="n44_n1ry" fontSize="46" color="#43633d" align="center" vAlign="middle" autoSize="none" singleLine="true" text="id"/>
|
||||
<group id="n44_n1ry" name="n44" xy="30,216" size="339,297" group="n70_dunj"/>
|
||||
<image id="n33_n1ry" name="n33" src="ufu92r" fileName="component/clearing/di.png" xy="1265,495" size="1173,295" group="n45_n1ry" visible="false"/>
|
||||
<text id="n31_n1ry" name="111" xy="1217,114" size="115,59" group="n45_n1ry" font="Microsoft YaHei" fontSize="32" color="#ffffcc" vAlign="middle" autoSize="none" text="底牌:"/>
|
||||
<list id="n32_n1ry" name="dipai_list" xy="1343,114" size="1101,70" group="n45_n1ry" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" colGap="5" defaultItem="ui://1utjt0r2ufu92s" vAlign="middle"/>
|
||||
<text id="n39_n1ry" name="huxi" xy="2161,367" size="257,47" group="n45_n1ry" fontSize="28" color="#924e00" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<list id="n46_n1ry" name="fullname_list" xy="1983,191" size="166,266" group="n45_n1ry" selectionMode="none" lineGap="5" colGap="-10" defaultItem="ui://1utjt0r2ufu92t" autoClearItems="true">
|
||||
<image id="n33_n1ry" name="n33" src="ufu92r" fileName="component/clearing/di.png" xy="1246,495" size="1192,295" group="n45_n1ry" visible="false"/>
|
||||
<text id="n31_n1ry" name="111" xy="41,3" size="134,59" group="n45_n1ry" font="Microsoft YaHei" fontSize="32" color="#ffffcc" vAlign="middle" autoSize="none" text="底牌:"/>
|
||||
<list id="n32_n1ry" name="dipai_list" xy="43,64" size="889,51" group="n45_n1ry" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" colGap="5" defaultItem="ui://1utjt0r2ufu92s" vAlign="middle"/>
|
||||
<text id="n39_n1ry" name="huxi" xy="1739,368" size="360,74" group="n45_n1ry" fontSize="56" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<list id="n46_n1ry" name="fullname_list" xy="1273,138" size="410,446" group="n45_n1ry" selectionMode="none" lineGap="5" colGap="-10" defaultItem="ui://1utjt0r2ufu92t" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -96,13 +94,13 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<list id="n41_n1ry" name="card_list" xy="1380,176" pivot="0.5,0.5" size="605,282" group="n45_n1ry" rotation="180" layout="row" selectionMode="none" defaultItem="ui://1utjt0r2ufu92u" align="center" vAlign="bottom" autoClearItems="true">
|
||||
<list id="n41_n1ry" name="card_list" xy="404,210" pivot="0.5,0.5" size="624,214" group="n45_n1ry" layout="row" selectionMode="none" defaultItem="ui://1utjt0r2ufu92u" align="center" vAlign="bottom" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<text id="n42_n1ry" name="score" xy="2158,412" size="256,48" group="n45_n1ry" fontSize="30" color="#924e00" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n56_fnpw" name="222" xy="1939,615" size="82,42" group="n58_fnpw" fontSize="26" color="#b25116" vAlign="middle" text="弃牌:"/>
|
||||
<list id="n62_fnpw" name="qipai_list" xy="2127,527" size="298,163" group="n58_fnpw" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" vAlign="middle">
|
||||
<text id="n42_n1ry" name="score" xy="1737,442" size="364,74" group="n45_n1ry" fontSize="56" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<text id="n56_fnpw" name="222" xy="1920,615" size="101,36" group="n58_fnpw" fontSize="26" color="#b25116" vAlign="middle" text="弃牌:"/>
|
||||
<list id="n62_fnpw" name="qipai_list" xy="1865,250" size="317,163" group="n58_fnpw" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" vAlign="middle">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -111,43 +109,42 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<group id="n58_fnpw" name="n58" xy="1939,527" size="486,163" group="n45_n1ry" advanced="true">
|
||||
<group id="n58_fnpw" name="n58" xy="1865,250" size="317,401" group="n45_n1ry" advanced="true">
|
||||
<gearDisplay controller="qipai" pages="1"/>
|
||||
</group>
|
||||
<text id="n67_w06x" name="tili_score" xy="2155,310" size="253,55" group="n45_n1ry" visible="false" fontSize="36" color="#f6ff00" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n68_w06x" name="tili_title" xy="2158,398" size="75,47" group="n45_n1ry" visible="false" fontSize="28" color="#b25116" vAlign="middle" autoSize="none" bold="true" text=""/>
|
||||
<text id="n69_w06x" name="yidashangxian" xy="2159,443" size="164,36" group="n45_n1ry" fontSize="28" color="#893119" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n73_p9qe" name="n73" src="ufu91r" fileName="component/clearing/images/fengexian_js.png" xy="1238,458" size="1231,10" group="n45_n1ry"/>
|
||||
<text id="n89_rbpg" name="tili_fan" xy="2155,267" size="253,50" group="n45_n1ry" visible="false" fontSize="28" color="#924e00" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<group id="n45_n1ry" name="n45" xy="1217,114" size="1252,676" group="n70_dunj" advanced="true">
|
||||
<text id="n67_w06x" name="tili_score" xy="1740,309" size="272,55" group="n45_n1ry" visible="false" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<text id="n68_w06x" name="tili_title" xy="1738,193" size="94,49" group="n45_n1ry" visible="false" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" text="1"/>
|
||||
<text id="n69_w06x" name="yidashangxian" xy="1737,519" size="344,74" group="n45_n1ry" fontSize="56" color="#43633d" vAlign="middle" autoSize="none" text="1"/>
|
||||
<text id="n89_rbpg" name="tili_fan" xy="1740,253" size="272,51" group="n45_n1ry" visible="false" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="1"/>
|
||||
<group id="n45_n1ry" name="n45" xy="41,3" size="2397,787" group="n70_dunj" advanced="true">
|
||||
<gearDisplay controller="over" pages="0"/>
|
||||
</group>
|
||||
<component id="n83_gzvy" name="btn_xipai" src="ufu92v" fileName="component/clearing/btn_xp.xml" xy="1726,913" size="400,169" group="n64_pwj4"/>
|
||||
<component id="n4_fux2" name="btn_confirm1" src="ufu94" fileName="buttons/Btn_Yellow.xml" xy="1672,998" size="184,85" group="n64_pwj4" visible="false">
|
||||
<component id="n83_gzvy" name="btn_xipai" src="ufu92v" fileName="component/clearing/btn_xp.xml" xy="2059,931" size="400,169" group="n64_pwj4"/>
|
||||
<component id="n4_fux2" name="btn_confirm1" src="ufu94" fileName="buttons/Btn_Yellow.xml" xy="2005,1016" size="184,85" group="n64_pwj4" visible="false">
|
||||
<gearDisplay controller="button" pages="0"/>
|
||||
<Button icon="ui://1utjt0r2ufu92x"/>
|
||||
</component>
|
||||
<component id="n82_gzvy" name="btn_confirm" src="ufu92y" fileName="component/clearing/btn_zb.xml" xy="1252,921" size="400,169" group="n64_pwj4"/>
|
||||
<group id="n64_pwj4" name="n64" xy="1252,913" size="874,177" group="n70_dunj" advanced="true">
|
||||
<component id="n82_gzvy" name="btn_confirm" src="ufu92y" fileName="component/clearing/btn_zb.xml" xy="1585,939" size="400,169" group="n64_pwj4"/>
|
||||
<group id="n64_pwj4" name="n64" xy="1585,931" size="874,177" group="n70_dunj" advanced="true">
|
||||
<gearDisplay controller="button" pages="0"/>
|
||||
</group>
|
||||
<image id="n86_rbpg" name="n86" src="ufu91v" fileName="component/clearing/images/hu.png" xy="1695,517" size="399,392" group="n70_dunj">
|
||||
<image id="n86_rbpg" name="n86" src="ufu91v" fileName="component/clearing/images/hu.png" xy="2086,153" size="399,392" group="n70_dunj">
|
||||
<gearDisplay controller="hudianpao" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n87_rbpg" name="n87" src="ufu922" fileName="component/clearing/images/dianpao.png" xy="1463,655" size="157,97" group="n70_dunj">
|
||||
<image id="n87_rbpg" name="n87" src="ufu922" fileName="component/clearing/images/dianpao.png" xy="1674,733" size="157,97" group="n70_dunj">
|
||||
<gearDisplay controller="hudianpao" pages="2"/>
|
||||
</image>
|
||||
<text id="n92_uw33" name="huxi_shu" xy="1395,765" size="257,41" group="n70_dunj" visible="false" font="Microsoft YaHei" fontSize="28" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n93_uw33" name="score_shu" xy="1360,801" size="256,57" group="n70_dunj" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n90_dbve" name="fangpaoscore" xy="1366,735" size="310,72" group="n70_dunj" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="none" text="放炮扣息:-30">
|
||||
<text id="n92_uw33" name="huxi_shu" xy="1279,791" size="257,49" group="n70_dunj" visible="false" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n93_uw33" name="score_shu" xy="1277,857" size="256,57" group="n70_dunj" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" bold="true" singleLine="true" text=""/>
|
||||
<text id="n90_dbve" name="fangpaoscore" xy="1282,714" size="310,72" group="n70_dunj" font="Microsoft YaHei" fontSize="36" color="#43633d" vAlign="middle" autoSize="none" text="放炮扣息:-30">
|
||||
<gearDisplay controller="hudianpao" pages="2"/>
|
||||
</text>
|
||||
<list id="n52_rx2e" name="card_list_3" xy="2820,-501" size="261,198" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" vAlign="middle">
|
||||
<list id="n52_rx2e" name="card_list_3" xy="4270,-501" size="261,198" group="n55_rx2e" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" vAlign="middle">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<list id="n53_rx2e" name="card_list_2" xy="382,199" size="823,401" group="n55_rx2e" visible="false" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" align="right" vAlign="middle">
|
||||
<list id="n53_rx2e" name="card_list_2" xy="382,199" size="743,401" group="n55_rx2e" visible="false" layout="row" colGap="1" defaultItem="ui://1utjt0r2ufu929" align="right" vAlign="middle">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -178,16 +175,13 @@
|
|||
<group id="n61_fnpw" name="n61" xy="-41,141" size="323,220" group="n55_rx2e" advanced="true">
|
||||
<gearDisplay controller="qipai" pages="1"/>
|
||||
</group>
|
||||
<group id="n55_rx2e" name="n55" xy="-41,-501" size="3305,1101" group="n70_dunj" advanced="true">
|
||||
<group id="n55_rx2e" name="n55" xy="-41,-501" size="4572,1101" group="n70_dunj" advanced="true">
|
||||
<gearDisplay controller="over" pages="2"/>
|
||||
</group>
|
||||
<text id="n91_n7o4" name="n91" xy="1316,496" size="345,91" group="n70_dunj" font="Microsoft YaHei" fontSize="40" color="#000066" align="center" vAlign="middle" autoSize="none" bold="true" text="荒庄 : -10 胡息">
|
||||
<image id="n100_o0c1" name="n100" src="o0c191" fileName="images/over_line.png" xy="114,603" size="1991,8" group="n70_dunj"/>
|
||||
<text id="n91_n7o4" name="n91" xy="1316,496" size="345,91" group="n70_dunj" font="Microsoft YaHei" fontSize="40" color="#43663d" align="center" vAlign="middle" autoSize="none" bold="true" text="荒庄 : -10 胡息">
|
||||
<gearDisplay controller="over" pages="2"/>
|
||||
</text>
|
||||
<image id="n100_o0c1" name="n100" src="o0c191" fileName="images/over_line.png" xy="114,603" group="n70_dunj"/>
|
||||
<group id="n70_dunj" name="n70" xy="-112,-660" size="3376,2892" advanced="true">
|
||||
<gearDisplay controller="over" pages="0,1,2"/>
|
||||
</group>
|
||||
<component id="n71_dunj" name="big_result" src="ufu930" fileName="component/clearing/result_zipai_main.xml" xy="-10,4">
|
||||
<gearDisplay controller="over" pages="3"/>
|
||||
</component>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 6.4 KiB |
|
|
@ -1,16 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="92,400">
|
||||
<controller name="c1" pages="0,,1,,2," selected="2"/>
|
||||
<controller name="c1" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<loader id="n1_ey1o" name="card_1" xy="4,0" pivot="0.5,0.5" size="81,81" autoSize="true"/>
|
||||
<loader id="n5_ey1o" name="card_2" xy="4,80" pivot="0.5,0.5" size="81,81" autoSize="true"/>
|
||||
<loader id="n4_ey1o" name="card_3" xy="4,163" pivot="0.5,0.5" size="81,81" autoSize="true">
|
||||
<gearDisplay controller="c1" pages="1,2"/>
|
||||
</loader>
|
||||
<loader id="n3_ey1o" name="card_4" xy="4,244" pivot="0.5,0.5" size="81,81" autoSize="true">
|
||||
<loader id="n3_ey1o" name="card_4" xy="4,0" pivot="0.5,0.5" size="81,81" fill="scale" autoSize="true">
|
||||
<gearDisplay controller="c1" pages="2"/>
|
||||
</loader>
|
||||
<text id="n6_a81d" name="card_type" xy="13,332" pivot="0.5,0.5" size="67,62" fontSize="46" color="#43633d" align="center" vAlign="bottom" leading="0" autoSize="shrink" text="0"/>
|
||||
<text id="n7_a81d" name="card_huxi" xy="-2,-88" pivot="0.5,0.5" size="94,86" fontSize="66" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" text="跑"/>
|
||||
<loader id="n4_ey1o" name="card_3" xy="5,82" pivot="0.5,0.5" size="81,81" fill="scale" autoSize="true">
|
||||
<gearDisplay controller="c1" pages="1,2"/>
|
||||
</loader>
|
||||
<loader id="n5_ey1o" name="card_2" xy="4,164" pivot="0.5,0.5" size="81,81" fill="scale" autoSize="true"/>
|
||||
<loader id="n1_ey1o" name="card_1" xy="5,246" pivot="0.5,0.5" size="81,81" fill="scale" autoSize="true"/>
|
||||
<text id="n6_a81d" name="card_type" xy="13,314" pivot="0.5,0.5" size="67,86" fontSize="56" color="#43633d" align="center" vAlign="bottom" leading="0" autoSize="shrink" text=""/>
|
||||
<text id="n7_a81d" name="card_huxi" xy="-2,-76" pivot="0.5,0.5" size="94,86" fontSize="56" color="#43633d" align="center" vAlign="middle" leading="0" autoSize="shrink" strike="true" text=""/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,70 +1,68 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1334,750" initName="big_result" designImageLayer="1">
|
||||
<component size="2532,1170" initName="big_result" designImageLayer="1">
|
||||
<controller name="result" pages="0,,1," selected="0"/>
|
||||
<controller name="time" pages="0,,1," selected="0"/>
|
||||
<controller name="time" pages="0,,1," selected="1"/>
|
||||
<controller name="share" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<graph id="n30_m5rj" name="n30" xy="-427,-182" size="2189,1114" alpha="0.65" type="rect" fillColor="#ff000000"/>
|
||||
<image id="n35_aen8" name="n35" src="ufu931" fileName="component/clearing/image/底.png" xy="31,64" size="1269,643" group="n31_aen8">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<image id="n2_tjnv" name="n2" src="ufu932" fileName="component/clearing/image/sb.png" xy="303,-2" group="n4_tjnv" visible="false">
|
||||
<image id="n48_coat" name="n48" src="o0c18z" fileName="images/clearing_bg1.png" xy="0,0" size="2532,1170"/>
|
||||
<image id="n50_coat" name="n50" src="o0c190" fileName="images/clearing_bg2.png" xy="19,162" size="2490,1002"/>
|
||||
<image id="n2_tjnv" name="n2" src="ufu932" fileName="component/clearing/image/sb.png" xy="902,-2" group="n4_tjnv" visible="false">
|
||||
<gearDisplay controller="result" pages="0"/>
|
||||
</image>
|
||||
<image id="n3_tjnv" name="n3" src="ufu933" fileName="component/clearing/image/sl.png" xy="303,-2" group="n4_tjnv" visible="false">
|
||||
<image id="n3_tjnv" name="n3" src="ufu933" fileName="component/clearing/image/sl.png" xy="902,-2" group="n4_tjnv" visible="false">
|
||||
<gearDisplay controller="result" pages="1"/>
|
||||
</image>
|
||||
<image id="n37_aen8" name="n37" src="ufu934" fileName="component/clearing/image/shibai_zipai.png" xy="429,5" group="n4_tjnv">
|
||||
<image id="n37_aen8" name="n37" src="ufu934" fileName="component/clearing/image/shibai_zipai.png" xy="1028,5" group="n4_tjnv">
|
||||
<gearDisplay controller="result" pages="0"/>
|
||||
</image>
|
||||
<image id="n38_aen8" name="n38" src="ufu935" fileName="component/clearing/image/shengli_zipai.png" xy="429,0" group="n4_tjnv">
|
||||
<image id="n38_aen8" name="n38" src="ufu935" fileName="component/clearing/image/shengli_zipai.png" xy="1028,0" group="n4_tjnv">
|
||||
<gearDisplay controller="result" pages="1"/>
|
||||
</image>
|
||||
<group id="n4_tjnv" name="title" xy="303,-2" size="738,133" group="n31_aen8" advanced="true">
|
||||
<group id="n4_tjnv" name="title" xy="902,-2" size="738,133" group="n31_aen8" advanced="true">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</group>
|
||||
<component id="n6_tjnv" name="btn_result_share1" src="ufu936" fileName="component/result/component/btn_result_share.xml" xy="84,602" size="233,91" group="n7_tjnv" visible="false">
|
||||
<component id="n6_tjnv" name="btn_result_share1" src="ufu936" fileName="component/result/component/btn_result_share.xml" xy="84,1022" size="233,91" group="n7_tjnv" visible="false">
|
||||
<relation target="" sidePair="left-left,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n5_tjnv" name="btn_result_confirm1" src="ufu938" fileName="component/result/component/btn_result_confirm.xml" xy="1004,603" size="239,97" group="n7_tjnv" visible="false">
|
||||
<component id="n5_tjnv" name="btn_result_confirm1" src="ufu938" fileName="component/result/component/btn_result_confirm.xml" xy="2202,1023" size="239,97" group="n7_tjnv" visible="false">
|
||||
<relation target="" sidePair="right-right,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n41_aen8" name="btn_result_share" src="ufu93a" fileName="component/clearing/zipai_btn_result_share.xml" xy="86,590" group="n7_tjnv" touchable="false">
|
||||
<component id="n41_aen8" name="btn_result_share" src="ufu93a" fileName="component/clearing/zipai_btn_result_share.xml" xy="86,1010" group="n7_tjnv" touchable="false">
|
||||
<relation target="" sidePair="left-left,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n45_mj9f" name="btn_result_confirm" src="ufu93c" fileName="component/clearing/zipai_btn_queren_confirm.xml" xy="1010,590" group="n7_tjnv">
|
||||
<component id="n45_mj9f" name="btn_result_confirm" src="ufu93c" fileName="component/clearing/zipai_btn_queren_confirm.xml" xy="2208,590" group="n7_tjnv">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</component>
|
||||
<component id="n42_aen8" name="btn_continue_game" src="ufu93e" fileName="component/clearing/zipai_btn_result_confirm.xml" xy="1010,601" size="244,103" group="n7_tjnv" visible="false">
|
||||
<component id="n42_aen8" name="btn_continue_game" src="ufu93e" fileName="component/clearing/zipai_btn_result_confirm.xml" xy="2208,1021" size="244,103" group="n7_tjnv" visible="false">
|
||||
<relation target="" sidePair="right-right,bottom-bottom"/>
|
||||
</component>
|
||||
<group id="n7_tjnv" name="bottom" xy="84,590" size="1170,124" group="n31_aen8"/>
|
||||
<component id="n46_mj9f" name="btn_close" src="ufu93g" fileName="component/clearing/btn_result_close.xml" xy="1239,0" group="n31_aen8">
|
||||
<group id="n7_tjnv" name="bottom" xy="84,590" size="2368,544" group="n31_aen8"/>
|
||||
<component id="n46_mj9f" name="btn_close" src="ufu93g" fileName="component/clearing/btn_result_close.xml" xy="2437,0" group="n31_aen8">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
<image id="n36_aen8" name="n36" src="ufu93i" fileName="component/clearing/image/zipai_shuoming_di.png" xy="416,621" group="n11_tjnv"/>
|
||||
<image id="n9_tjnv" name="n9" src="ufu93j" fileName="component/clearing/image/hd.png" xy="294,623" size="749,92" group="n11_tjnv" visible="false"/>
|
||||
<text id="n10_tjnv" name="txt_play" xy="434,631" size="488,73" group="n11_tjnv" font="Microsoft YaHei" fontSize="24" color="#ffdabb" align="center" vAlign="middle" autoSize="shrink" text="玩法说明玩法 玩法说明玩法 玩法说明玩法法说明玩法 玩法说明玩法 法说明玩法 玩法说明玩法 明玩法"/>
|
||||
<group id="n11_tjnv" name="player" xy="294,621" size="749,94" group="n31_aen8" advanced="true">
|
||||
<image id="n36_aen8" name="n36" src="ufu93i" fileName="component/clearing/image/zipai_shuoming_di.png" xy="1015,1041" group="n11_tjnv"/>
|
||||
<image id="n9_tjnv" name="n9" src="ufu93j" fileName="component/clearing/image/hd.png" xy="893,1043" size="749,92" group="n11_tjnv" visible="false"/>
|
||||
<text id="n10_tjnv" name="txt_play" xy="1033,1051" size="488,73" group="n11_tjnv" font="Microsoft YaHei" fontSize="24" color="#ffdabb" align="center" vAlign="middle" autoSize="shrink" text="玩法说明玩法 玩法说明玩法 玩法说明玩法法说明玩法 玩法说明玩法 法说明玩法 玩法说明玩法 明玩法"/>
|
||||
<group id="n11_tjnv" name="player" xy="893,1041" size="749,94" group="n31_aen8" advanced="true">
|
||||
<relation target="" sidePair="center-center,bottom-bottom"/>
|
||||
</group>
|
||||
<text id="n28_tjnv" name="n28" xy="467,688" size="409,74" group="n31_aen8" fontSize="18" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="此页面仅用于娱乐竞技展示,禁止一切赌博行为!">
|
||||
<text id="n28_tjnv" name="n28" xy="1066,688" size="409,74" group="n31_aen8" fontSize="18" color="#ffffff" vAlign="middle" autoSize="none" singleLine="true" text="此页面仅用于娱乐竞技展示,禁止一切赌博行为!">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<text id="n27_tjnv" name="txt_game_name" xy="542,112" size="134,36" group="n34_aen8" fontSize="26" color="#a02808" align="center" vAlign="middle" text="娄底放炮罚"/>
|
||||
<text id="n29_tjnv" name="txt_game_data" xy="836,109" size="204,36" group="n34_aen8" fontSize="26" color="#a02808" align="center" vAlign="middle" text="2019-12-12 18:28"/>
|
||||
<text id="n15_tjnv" name="txt_room_id" xy="205,113" size="173,36" group="n34_aen8" fontSize="26" color="#a02808" align="center" vAlign="middle" text="房间号:888888"/>
|
||||
<group id="n34_aen8" name="n34" xy="205,109" size="923,41" group="n31_aen8" advanced="true">
|
||||
<text id="n27_tjnv" name="txt_game_name" xy="1141,112" size="134,36" group="n34_aen8" fontSize="26" color="#a02808" align="center" vAlign="middle" text="娄底放炮罚"/>
|
||||
<text id="n29_tjnv" name="txt_game_data" xy="1435,109" size="204,36" group="n34_aen8" fontSize="26" color="#a02808" align="center" vAlign="middle" text="2019-12-12 18:28"/>
|
||||
<text id="n15_tjnv" name="txt_room_id" xy="804,113" size="173,36" group="n34_aen8" fontSize="26" color="#a02808" align="center" vAlign="middle" text="房间号:888888"/>
|
||||
<group id="n34_aen8" name="n34" xy="804,109" size="923,41" group="n31_aen8" advanced="true">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
<list id="n26_tjnv" name="player_list" xy="0,150" size="1321,471" group="n31_aen8" touchable="false" layout="row" overflow="scroll" scroll="horizontal" defaultItem="ui://1utjt0r2ufu93k" align="center" vAlign="middle">
|
||||
<list id="n26_tjnv" name="player_list" xy="0,150" size="2519,891" group="n31_aen8" touchable="false" layout="row" overflow="scroll" scroll="horizontal" defaultItem="ui://1utjt0r2ufu93k" align="center" vAlign="middle">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<group id="n31_aen8" name="n31" xy="0,-2" size="1321,764" advanced="true"/>
|
||||
<group id="n31_aen8" name="n31" xy="0,-2" size="2519,1137" advanced="true"/>
|
||||
<image id="n12_tjnv" name="n12" src="ufu93z" fileName="component/clearing/image/jfd.png" xy="47,97" size="139,59" group="n14_tjnv"/>
|
||||
<text id="n13_tjnv" name="txt_time" xy="52,109" size="134,37" group="n14_tjnv" fontSize="28" color="#ffffff" vAlign="middle" autoSize="shrink" text="倍数:5"/>
|
||||
<group id="n14_tjnv" name="group_times" xy="47,97" size="139,59" advanced="true">
|
||||
|
|
@ -86,5 +84,6 @@
|
|||
<group id="n17_tjnv" name="group_share" xy="160,149" size="1044,411" advanced="true">
|
||||
<gearDisplay controller="share" pages="1"/>
|
||||
</group>
|
||||
<image id="n47_coat" name="n47" src="coat7ivz" fileName="buttons/亲友圈 (1).png" pkg="27vd145b" xy="1856,-1264" alpha="0.5"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 56 KiB |
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="2532,1172" designImage="ui://3vytbifonu0l2f" designImageOffsetX="-200" designImageOffsetY="-100">
|
||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="1"/>
|
||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="0"/>
|
||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||
<controller name="action" pages="2,空,0,准备,1,开始" selected="0"/>
|
||||
<controller name="jushu" pages="0,,1," selected="1"/>
|
||||
<controller name="jushu" pages="0,,1," selected="0"/>
|
||||
<controller name="bg_state" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n196_h5b1" name="n196" src="h5b1rn" fileName="component/Main/images/floorTop.png" xy="951,1" size="636,77"/>
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
<group id="n150_8th3" name="n150" xy="957,1" size="620,110" advanced="true">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</group>
|
||||
<component id="n149_qpk6" name="btn_reset" src="peuq3v" fileName="component/Main/component/Folder/component/phone_info/Btn_reset.xml" xy="58,563" size="109,109">
|
||||
<component id="n149_qpk6" name="btn_reset" src="peuq3v" fileName="component/Main/component/Folder/component/phone_info/Btn_reset.xml" xy="61,536" size="109,109">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
<relation target="" sidePair="middle-middle"/>
|
||||
</component>
|
||||
<image id="n177_cbxl" name="n177" src="peuq72" fileName="component/Main/images/zipai3.png" xy="1186,244">
|
||||
<image id="n177_cbxl" name="n177" src="peuq72" fileName="component/Main/images/zipai3.png" xy="1149,310">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
|
|
@ -43,8 +43,8 @@
|
|||
<relation target="" sidePair="rightext-left,topext-top,bottomext-top,leftext-left"/>
|
||||
</component>
|
||||
<component id="n194_syh3" name="gcm_chat" src="syh3rk" fileName="component/Main/Main_2_chat.xml" xy="2380,453"/>
|
||||
<component id="n7" name="player_info1" src="peuq6e" fileName="component/Main/component/PlayerHead_1.xml" xy="45,721" size="200,300">
|
||||
<gearXY controller="state" pages="0,1,2,3" values="44,712|45,721|48,771|8,570"/>
|
||||
<component id="n7" name="player_info1" src="peuq6e" fileName="component/Main/component/PlayerHead_1.xml" xy="44,712" size="200,300">
|
||||
<gearXY controller="state" pages="0,1,2,3" values="44,712|49,707|54,675|48,570"/>
|
||||
<relation target="" sidePair="rightext-left,topext-bottom%,bottomext-bottom,leftext-left"/>
|
||||
</component>
|
||||
<component id="n34_k3io" name="btn_ready1" src="peuq39" fileName="buttons/Btn_Yellow.xml" xy="1090,873" group="n36_k3io" visible="false">
|
||||
|
|
@ -93,23 +93,23 @@
|
|||
<gearDisplay controller="state" pages="3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</component>
|
||||
<image id="n174_fgao" name="zipai1" src="peuq2u" fileName="component/images/zipaic2.png" xy="1207,271" visible="false">
|
||||
<image id="n174_fgao" name="zipai1" src="peuq2u" fileName="component/images/zipaic2.png" xy="1170,337" visible="false">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<image id="n175_fgao" name="zipai2" src="peuq2u" fileName="component/images/zipaic2.png" xy="1203,268" visible="false">
|
||||
<image id="n175_fgao" name="zipai2" src="peuq2u" fileName="component/images/zipaic2.png" xy="1166,334" visible="false">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<text id="n27" name="remaining_card" xy="1212,262" size="165,45" fontSize="32" color="#ffffff" align="center" autoSize="none" text="剩余20张">
|
||||
<text id="n27" name="remaining_card" xy="1172,328" size="165,45" fontSize="32" color="#ffffff" align="center" autoSize="none" text="剩余20张">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<component id="n162_o49p" name="btn_getRoomNum" src="peuq91" fileName="component/room/btn_invite.xml" xy="1123,286" group="n163_o49p" visible="false" touchable="false">
|
||||
<component id="n162_o49p" name="btn_getRoomNum" src="peuq91" fileName="component/room/btn_invite.xml" xy="1120,380" group="n163_o49p" visible="false" touchable="false">
|
||||
<Button icon="ui://lkq9ne9speuq93"/>
|
||||
</component>
|
||||
<component id="n178_cbxl" name="btn_wxyqhy" src="peuq7a" fileName="component/Main/new_ui/Btn_newYellow_yaoqing.xml" xy="1153,267" group="n163_o49p" visible="false" touchable="false">
|
||||
<component id="n178_cbxl" name="btn_wxyqhy" src="peuq7a" fileName="component/Main/new_ui/Btn_newYellow_yaoqing.xml" xy="1150,361" group="n163_o49p" visible="false" touchable="false">
|
||||
<Button icon="ui://lkq9ne9speuq75"/>
|
||||
</component>
|
||||
<group id="n163_o49p" name="333" xy="1123,267" size="292,124" visible="false" advanced="true">
|
||||
<group id="n163_o49p" name="333" xy="1120,361" size="292,124" visible="false" advanced="true">
|
||||
<gearDisplay controller="state" pages="0"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<list id="n36_lr5d" name="windcard_list" xy="1331,215" size="283,81" rotation="180" layout="flow_hz" lineGap="1" colGap="1" defaultItem="ui://lkq9ne9speuq2">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</list>
|
||||
<list id="n35_lr5d" name="area_fz_list" xy="464,-910" pivot="0.5,0.5" size="416,231" rotation="180" layout="row" selectionMode="none" lineGap="3" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" align="right" vAlign="middle" autoClearItems="true">
|
||||
<list id="n35_lr5d" name="area_fz_list" xy="205,-763" pivot="0.5,0.5" size="416,231" rotation="180" layout="row" selectionMode="none" lineGap="3" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" align="right" vAlign="middle" autoClearItems="true">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</list>
|
||||
<component id="n25" name="area_handcard_list" src="peuq59" fileName="component/Component1.xml" xy="123,98" size="1039,118">
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
<component id="n38_ey1o" name="n38" src="peuq5b" fileName="component/Main/component/PromptOutCard.xml" xy="-298,-177" size="1891,170">
|
||||
<gearDisplay controller="chupai" pages="1"/>
|
||||
</component>
|
||||
<component id="n27" name="area_outcard_list" src="peuq59" fileName="component/Component1.xml" xy="1113,-664" size="65,84">
|
||||
<component id="n27" name="area_outcard_list" src="peuq59" fileName="component/Component1.xml" xy="206,-533" size="218,155">
|
||||
<relation target="n35_lr5d" sidePair="right-right"/>
|
||||
</component>
|
||||
<component id="n39_j34t" name="piao0" src="peuq5f" fileName="component/piao/btn_nopiao.xml" xy="226,-126" group="n45_j34t">
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 38 KiB |
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="2532,690">
|
||||
<controller name="bipai" pages="0,,1,,2,,3," selected="2"/>
|
||||
<controller name="bipai" pages="0,,1,,2,,3," selected="0"/>
|
||||
<displayList>
|
||||
<component id="n62_j5c2" name="dibtn" src="peuq9o" fileName="component/option/dibutton.xml" xy="0,0" size="2538,694"/>
|
||||
<component id="n62_j5c2" name="dibtn" src="peuq9o" fileName="component/option/dibutton.xml" xy="0,2" size="2538,694"/>
|
||||
<image id="n78_h5b1" name="di1" src="h5b1rr" fileName="image/main_2/main_2_choice.png" xy="1462,103" size="369,373" group="n66_j4og">
|
||||
<relation target="" sidePair=""/>
|
||||
</image>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 525 KiB After Width: | Height: | Size: 544 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.8 MiB |