fangpaofa
|
|
@ -1,2 +1,2 @@
|
|||
|
||||
/wb_unity_pro_2/
|
||||
/wb_unity_pro/
|
||||
|
|
@ -198,7 +198,7 @@ function M:EventInit()
|
|||
if tex_round ~= nil then
|
||||
tex_round.text = '第 ' .. _room.curren_round .. ' 局'
|
||||
end
|
||||
self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. '/' .. _room.room_config.round .. ' 局'
|
||||
self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. ' 局 百息结算 '
|
||||
|
||||
self._state.selectedIndex = 1
|
||||
self:closeTipOnTuoguan()
|
||||
|
|
@ -254,7 +254,7 @@ function M:EventInit()
|
|||
if tex_round ~= nil then
|
||||
tex_round.text = '第 ' .. _room.curren_round .. ' 局'
|
||||
end
|
||||
self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. '/' .. _room.room_config.round .. ' 局'
|
||||
self._view:GetChild('tex_round').text = '第 ' .. _room.curren_round .. ' 局 百息结算'
|
||||
|
||||
self._state.selectedIndex = 1
|
||||
self:closeTipOnTuoguan()
|
||||
|
|
@ -630,8 +630,8 @@ function M:EventInit()
|
|||
local seat = arg[1]
|
||||
local card = arg[2]
|
||||
--禁牌 把手上的牌都禁掉
|
||||
local card_info = self._player_card_info[self:GetPos(seat)]
|
||||
card_info:banHandCards(self._room.self_player.card_list)
|
||||
-- local card_info = self._player_card_info[self:GetPos(seat)]
|
||||
-- card_info:banHandCards(self._room.self_player.card_list)
|
||||
|
||||
end
|
||||
)
|
||||
|
|
@ -1137,7 +1137,7 @@ function M:ReloadRoom()
|
|||
if tex_round ~= nil then
|
||||
tex_round.text = '第 ' .. room.curren_round .. ' 局'
|
||||
end
|
||||
self._view:GetChild('tex_round').text = '第 ' .. room.curren_round .. '/' .. room.room_config.round .. ' 局'
|
||||
self._view:GetChild('tex_round').text = '第 ' .. room.curren_round .. ' 局 百息结算'
|
||||
end
|
||||
|
||||
function M:PlayChatSound(sex, chat_index)
|
||||
|
|
|
|||
|
|
@ -52,14 +52,19 @@ function M:InitData(over, room, result, total_result, callback)
|
|||
local xipai=self._view:GetChild("btn_xipai")
|
||||
xipai.touchable=true
|
||||
xipai.onClick:Add(function()
|
||||
local xiPaiCallBack=function ()
|
||||
xipai.touchable=false
|
||||
self.xiPaiCtr.selectedIndex=0
|
||||
ViewUtil.ErrorTip(1000000,"申请洗牌成功")
|
||||
end
|
||||
local _gamectr = ControllerManager.GetController(GameController)
|
||||
_gamectr:SendXiPaiAction(xiPaiCallBack)
|
||||
end)
|
||||
local xiPaiCallBack=function ()
|
||||
xipai.touchable=false
|
||||
self.xiPaiCtr.selectedIndex=0
|
||||
ViewUtil.ErrorTip(1000000,"申请洗牌成功")
|
||||
|
||||
local _gamectr = ControllerManager.GetController(GameController)
|
||||
_gamectr:PlayerReady()
|
||||
self:Close()
|
||||
|
||||
end
|
||||
local _gamectr = ControllerManager.GetController(GameController)
|
||||
_gamectr:SendXiPaiAction(xiPaiCallBack)
|
||||
end)
|
||||
if result and result.xipai_score then
|
||||
xipai.text="洗牌 积分x"..result.xipai_score
|
||||
end
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@ end
|
|||
|
||||
|
||||
function M:UpdateFzList( fz_list ,ispaly,seat)
|
||||
|
||||
print("lingmeng UpdateFzList")
|
||||
pt(fz_list)
|
||||
self._area_fz_list:RemoveChildren(0,-1,true)
|
||||
for i = 1,#fz_list do
|
||||
local fzitem = nil
|
||||
|
|
@ -47,19 +48,27 @@ function M:UpdateFzList( fz_list ,ispaly,seat)
|
|||
elseif fz_list[i].type == RB_FZType.Wei then
|
||||
|
||||
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
|
||||
-- for j=1,3 do
|
||||
-- fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
-- end
|
||||
-- fzcards:GetChild("card_"..3).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)--jefe
|
||||
for j=1,3 do
|
||||
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
end
|
||||
fzcards:GetChild("card_"..3).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)--jefe
|
||||
fzcards:GetChild("card_"..1).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)--jefe
|
||||
fzcards.x,fzcards.y = 0,0
|
||||
self:playAnim(fzitem,fzcards,#fz_list,i,ispaly,seat)
|
||||
|
||||
elseif fz_list[i].type == RB_FZType.ChouWei then
|
||||
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
|
||||
for j=1,2 do
|
||||
-- for j=1,2 do
|
||||
-- fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
-- end
|
||||
-- fzcards:GetChild("card_"..3).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
for j=2,3 do
|
||||
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
end
|
||||
fzcards:GetChild("card_"..3).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
fzcards:GetChild("card_"..1).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
fzcards.x,fzcards.y = 0,0
|
||||
self:playAnim(fzitem,fzcards,#fz_list,i,ispaly,seat)
|
||||
|
||||
|
|
@ -79,8 +88,15 @@ function M:UpdateFzList( fz_list ,ispaly,seat)
|
|||
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
end
|
||||
else
|
||||
-- for j=1,4 do
|
||||
-- if j==4 then
|
||||
-- fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
-- else
|
||||
-- fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
-- end
|
||||
-- end
|
||||
for j=1,4 do
|
||||
if j==4 then
|
||||
if j==1 then
|
||||
fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
else
|
||||
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
|
|
@ -187,6 +203,7 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
|||
outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
|
||||
else
|
||||
outcards:GetChild("icon").icon =self:getCardItem("ui://Main_RunBeard/203_",outcard)
|
||||
self._bgview.selectedIndex=1
|
||||
end
|
||||
outcards.x,outcards.y = 0,0
|
||||
local show_di_bg = outcards:GetChild("show_di_bg")
|
||||
|
|
@ -223,13 +240,15 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
|||
show_di_bg.visible = false
|
||||
end
|
||||
self._area_outcard_list:AddChild(outcards)
|
||||
|
||||
end
|
||||
|
||||
--弃牌
|
||||
function M:UpdateQiPai( qi_list,ispaly,seat)
|
||||
self._area_qipai_list:RemoveChildren(0,-1,true)
|
||||
for i=1,#qi_list do
|
||||
local qicards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Qipai")
|
||||
local qicards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Qipais")
|
||||
pt(qicards)
|
||||
qicards:GetChild("icon").icon = self:getCardItem("ui://Main_RunBeard/202_",qi_list[i])
|
||||
if(ispaly)then
|
||||
if(i == #qi_list) then
|
||||
|
|
|
|||
|
|
@ -302,6 +302,7 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
|||
show_di_bg.visible = false
|
||||
end
|
||||
self._area_outcard_list:AddChild(outcards)
|
||||
self._bgview.selectedIndex = 1
|
||||
end
|
||||
|
||||
--弃牌
|
||||
|
|
@ -323,11 +324,14 @@ end
|
|||
function M:PlayingOutCardAnima( card)
|
||||
coroutine.start(function()
|
||||
coroutine.wait(0.1)
|
||||
self._bgview.selectedIndex = 1
|
||||
self:ClearOutCard()
|
||||
end)
|
||||
end
|
||||
|
||||
function M:UpdateFzList( fz_list ,ispaly)
|
||||
|
||||
printlog("UpdateFzList area_fz_list2")
|
||||
self._area_fz_list:RemoveChildren(0,-1,true)
|
||||
for i = 1,#fz_list do
|
||||
local fzitem=nil
|
||||
|
|
@ -336,7 +340,9 @@ function M:UpdateFzList( fz_list ,ispaly)
|
|||
if(ispaly == false)then
|
||||
fzitem:RemoveChildren(0,-1,true)
|
||||
end
|
||||
printlog(fzitem.width)printlog(fzitem.height)
|
||||
end
|
||||
|
||||
if fz_list[i].type == RB_FZType.Chi or fz_list[i].type == RB_FZType.Bi then
|
||||
|
||||
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
|
||||
|
|
@ -345,6 +351,7 @@ function M:UpdateFzList( fz_list ,ispaly)
|
|||
fzcards:GetChild("card_"..2).icon = self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].opcard[1])
|
||||
fzcards:GetChild("card_"..3).icon = self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].opcard[2])
|
||||
fzcards.x,fzcards.y = 0,0
|
||||
|
||||
self:playAnim(fzitem,fzcards,#fz_list,i,ispaly)
|
||||
|
||||
elseif fz_list[i].type == RB_FZType.Peng then
|
||||
|
|
@ -361,7 +368,11 @@ function M:UpdateFzList( fz_list ,ispaly)
|
|||
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_3")
|
||||
fzcards:GetController("c1").selectedIndex=1
|
||||
for j=1,3 do
|
||||
fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
if j==1 then
|
||||
fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
else
|
||||
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
end
|
||||
end
|
||||
fzcards.x,fzcards.y = 0,0
|
||||
self:playAnim(fzitem,fzcards,#fz_list,i,ispaly)
|
||||
|
|
@ -387,7 +398,7 @@ function M:UpdateFzList( fz_list ,ispaly)
|
|||
|
||||
local fzcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Fz_0_4")
|
||||
for j=1,4 do
|
||||
if j==4 then
|
||||
if j==1 then
|
||||
fzcards:GetChild("card_"..j).icon =self:getCardItem("ui://Main_RunBeard/202_",fz_list[i].card)
|
||||
else
|
||||
fzcards:GetChild("card_"..j).icon ="ui://Main_RunBeard/202_1_300"
|
||||
|
|
|
|||
|
|
@ -786,7 +786,7 @@ function M:tryPendulumRule2()
|
|||
--pt(cards_map)
|
||||
--printlog("11111111111111111111")
|
||||
local mapCount=#cards_map
|
||||
if mapCount>12 then
|
||||
if mapCount>10 then
|
||||
local tempCardMpList1={}
|
||||
local tempCardMpList2={}
|
||||
local tempCardMpList3={}
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ function M:init()
|
|||
local view = self._view
|
||||
self._room = DataManager.CurrenRoom
|
||||
self._area_outcard_list = view:GetChild("area_outcard_list")
|
||||
self._bgview = view:GetController("bgview")
|
||||
self._area_handcard_list = view:GetChild("area_handcard_list")
|
||||
self._area_fz_list = view:GetChild("area_fz_list")
|
||||
self._area_qipai_list = view:GetChild("windcard_list")
|
||||
|
|
@ -60,6 +61,7 @@ end
|
|||
|
||||
function M:Clear()
|
||||
self._area_outcard_list:RemoveChildren(0, -1, true)
|
||||
self._bgview.selectedIndex=0
|
||||
self._area_fz_list:RemoveChildren(0, -1, true)
|
||||
self._area_handcard_list:RemoveChildren(0, -1, true)
|
||||
self._area_qipai_list:RemoveChildren(0, -1, true)
|
||||
|
|
@ -74,7 +76,7 @@ end
|
|||
|
||||
function M:ClearOutCard()
|
||||
self._area_outcard_list:RemoveChildren(0, -1, true)
|
||||
|
||||
self._bgview.selectedIndex = 0
|
||||
end
|
||||
|
||||
--弃牌
|
||||
|
|
@ -90,8 +92,6 @@ end
|
|||
|
||||
--放字
|
||||
function M:UpdateFzList( fz_list )
|
||||
printlog("jefe UpdateFzList=======")
|
||||
pt(fz_list)
|
||||
self._area_fz_list:RemoveChildren(0,-1,true)
|
||||
for i = 1,#fz_list do
|
||||
local fzitem = nil
|
||||
|
|
@ -251,6 +251,7 @@ function M:UpdateOutCardList(outcard)
|
|||
end
|
||||
outcards.x,outcards.y = 0,0
|
||||
self._area_outcard_list:AddChild(outcards)
|
||||
self._bgview.selectedIndex=1
|
||||
end
|
||||
|
||||
--摸牌动画
|
||||
|
|
|
|||
|
|
@ -58,9 +58,9 @@ function M:init()
|
|||
self.card_hight = 110
|
||||
self.outcard_button = nil
|
||||
self._room = DataManager.CurrenRoom
|
||||
printlog("zp init")
|
||||
self._area_handcard_list = view:GetChild('area_handcard_list')
|
||||
self._area_outcard_list = view:GetChild('area_outcard_list')
|
||||
self._bgview = view:GetController("bgview")
|
||||
self._area_fz_list = view:GetChild('area_fz_list')
|
||||
self._area_qipai_list = view:GetChild('windcard_list')
|
||||
self._mask_liangpai = view:GetChild('mask_liangpai')
|
||||
|
|
@ -73,9 +73,7 @@ end
|
|||
|
||||
|
||||
function M:ShwoDaNiao(niao)
|
||||
printlog("main daniao ShwoDaNiao",self.ctr_niao)
|
||||
self.ctr_niao.selectedIndex = 1
|
||||
printlog("main daniao ShwoDaNiao1")
|
||||
end
|
||||
|
||||
function M:HideDaNiao()
|
||||
|
|
@ -137,6 +135,7 @@ end
|
|||
function M:Clear()
|
||||
self.outcard_button = nil
|
||||
self._area_outcard_list:RemoveChildren(0, -1, true)
|
||||
self._bgview.selectedIndex = 0
|
||||
self._area_fz_list:RemoveChildren(0, -1, true)
|
||||
self._area_handcard_list:RemoveChildren(0, -1, true)
|
||||
self._area_qipai_list:RemoveChildren(0, -1, true)
|
||||
|
|
@ -347,14 +346,17 @@ function M:banHandCards(list)
|
|||
for i = 1, #list do
|
||||
local card_code = list[i].card_item
|
||||
pt(card_code)
|
||||
local btn_card = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Btn_Card')
|
||||
btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/201_', card_code)
|
||||
btn_card:GetChild('icon'):SetScale(self:getCardSize(), self:getCardSize())
|
||||
btn_card:GetChild('n6'):SetScale(self:getCardSize(), self:getCardSize())
|
||||
self.card_width = 87 * self:getCardSize()
|
||||
self.card_hight = 110 * self:getCardSize()
|
||||
local card_view = NewCardView(btn_card, card_code, list[i].index_X, list[i].index_Y)
|
||||
card_view.btn_card.touchable = false
|
||||
-- local btn_card = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Btn_Card')
|
||||
-- btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/201_', card_code)
|
||||
-- btn_card:GetChild('icon'):SetScale(self:getCardSize(), self:getCardSize())
|
||||
-- btn_card:GetChild('n6'):SetScale(self:getCardSize(), self:getCardSize())
|
||||
-- self.card_width = 87 * self:getCardSize()
|
||||
-- self.card_hight = 110 * self:getCardSize()
|
||||
|
||||
-- local card_view = NewCardView(btn_card, card_code, list[i].index_X, list[i].index_Y)
|
||||
-- btn_card.data = card_view
|
||||
-- btn_card.touchable = false
|
||||
self:UpdateKan(card_code)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
@ -773,6 +775,7 @@ end
|
|||
|
||||
--更新 吃碰
|
||||
function M:UpdateFzList(fz_list)
|
||||
printlog("UpdateFzList area_fz_list1")
|
||||
self._area_fz_list:RemoveChildren(0, -1, true)
|
||||
for i = 1, #fz_list do
|
||||
local fzitem = nil
|
||||
|
|
@ -801,7 +804,11 @@ function M:UpdateFzList(fz_list)
|
|||
local fzcards = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Fz_0_3')
|
||||
fzcards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
fzcards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_', fz_list[i].card)
|
||||
if j == 1 then
|
||||
fzcards:GetChild('card_' .. j).icon = 'ui://Main_RunBeard/202_1_300'
|
||||
else
|
||||
fzcards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_', fz_list[i].card)
|
||||
end
|
||||
end
|
||||
fzcards.x, fzcards.y = 0, 0
|
||||
fzitem:AddChildAt(fzcards, 0)
|
||||
|
|
@ -810,7 +817,11 @@ function M:UpdateFzList(fz_list)
|
|||
local fzcards = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Fz_0_3')
|
||||
fzcards:GetController('c1').selectedIndex = 1
|
||||
for j = 1, 3 do
|
||||
fzcards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_', fz_list[i].card)
|
||||
if j == 1 then
|
||||
fzcards:GetChild('card_' .. j).icon = 'ui://Main_RunBeard/202_1_300'
|
||||
else
|
||||
fzcards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_', fz_list[i].card)
|
||||
end
|
||||
end
|
||||
fzcards.x, fzcards.y = 0, 0
|
||||
fzitem:AddChildAt(fzcards, 0)
|
||||
|
|
@ -826,7 +837,7 @@ function M:UpdateFzList(fz_list)
|
|||
elseif fz_list[i].type == RB_FZType.Ti then
|
||||
local fzcards = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Fz_0_4')
|
||||
for j = 1, 4 do
|
||||
if j == 4 then
|
||||
if j == 1 then
|
||||
fzcards:GetChild('card_' .. j).icon = self:getCardItem('ui://Main_RunBeard/202_', fz_list[i].card)
|
||||
else
|
||||
fzcards:GetChild('card_' .. j).icon = 'ui://Main_RunBeard/202_1_300'
|
||||
|
|
@ -841,6 +852,7 @@ end
|
|||
|
||||
function M:ClearOutCard()
|
||||
self._area_outcard_list:RemoveChildren(0, -1, true)
|
||||
self._bgview.selectedIndex = 0
|
||||
end
|
||||
--出牌
|
||||
function M:UpdateOutCardList(outcard)
|
||||
|
|
@ -853,6 +865,7 @@ function M:UpdateOutCardList(outcard)
|
|||
end
|
||||
outcards.x, outcards.y = 0, 0
|
||||
self._area_outcard_list:AddChild(outcards)
|
||||
self._bgview.selectedIndex = 1
|
||||
end
|
||||
|
||||
--弃牌
|
||||
|
|
@ -870,10 +883,12 @@ function M:PlayingOutCardAnima(card)
|
|||
if (self._area_outcard_list ~= nil and self._area_outcard_list.numChildren > 0) then
|
||||
self._area_outcard_list:GetChildAt(0):GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/202_', card)
|
||||
self._view:GetTransition('t0'):Play()
|
||||
|
||||
end
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.1)
|
||||
self._bgview.selectedIndex = 1
|
||||
self:ClearOutCard()
|
||||
end
|
||||
)
|
||||
|
|
@ -882,7 +897,6 @@ end
|
|||
--得到设置的牌字体
|
||||
function M:getCardItem(card_1, card_2)
|
||||
if self._room.change_card_display ~= nil then
|
||||
--printlog("===========",self._room.change_card_display)
|
||||
return card_1 .. self._room.change_card_display .. card_2
|
||||
else
|
||||
return card_1 .. '6_' .. card_2
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 969 KiB |
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n28_o49p": {
|
||||
"hidden": true
|
||||
},
|
||||
"n29_o49p": {
|
||||
"hidden": true
|
||||
},
|
||||
"n27_o49p": {
|
||||
"hidden": true
|
||||
},
|
||||
"n24_mk2u": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,3 +1,8 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n45_j34t": {
|
||||
"collapsed": true
|
||||
}
|
||||
},
|
||||
"fitScreen": "FitSize"
|
||||
}
|
||||
|
|
@ -3,9 +3,6 @@
|
|||
"n39_e7qn": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n49_lr5d": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n38_e7qn": {
|
||||
"hidden": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@
|
|||
"hidden": true,
|
||||
"collapsed": true
|
||||
},
|
||||
"n152_8th3": {
|
||||
"hidden": true
|
||||
},
|
||||
"n170_o49p": {
|
||||
"hidden": true
|
||||
},
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n4_rfcn": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"libview.firstColumnWidth": 522,
|
||||
"libview.firstColumnWidth": 297,
|
||||
"expanded_nodes": [
|
||||
"27vd145b",
|
||||
"/",
|
||||
|
|
@ -8,15 +8,33 @@
|
|||
],
|
||||
"libview.iconScale": 0,
|
||||
"doc.openedDocs": [
|
||||
"ui://ppu1wv76j4mf9j"
|
||||
"ui://ppu1wv76j4mf9j",
|
||||
"ui://v6yvqp7wf55qwa",
|
||||
"ui://v6yvqp7wf55qw7",
|
||||
"ui://v6yvqp7wf55qvx",
|
||||
"ui://v6yvqp7wf55qvw",
|
||||
"ui://v6yvqp7wddb914i",
|
||||
"ui://v6yvqp7wcyprww",
|
||||
"ui://v6yvqp7wcyprwy",
|
||||
"ui://v6yvqp7wcyprwu",
|
||||
"ui://v6yvqp7wcyprwt",
|
||||
"ui://m7iejg46kwi0hkb",
|
||||
"ui://m7iejg46mpllhv2",
|
||||
"ui://m7iejg46kwi0hkl",
|
||||
"ui://v6yvqp7wf55qw5",
|
||||
"ui://v6yvqp7wf55qw4"
|
||||
],
|
||||
"packageGroup.mine": [],
|
||||
"test.device": "720p Phone",
|
||||
"canvasColor": 10066329,
|
||||
"auxline2": true,
|
||||
"doc.activeDoc": "ui://ppu1wv76j4mf9j",
|
||||
"doc.activeDoc": "ui://v6yvqp7wf55qw4",
|
||||
"libview.twoColumn": false,
|
||||
"libview.expandedNodes": [
|
||||
"27vd145b",
|
||||
"/",
|
||||
"27vd145b",
|
||||
"/component/",
|
||||
"egnzysm7",
|
||||
"/",
|
||||
"egnzysm7",
|
||||
|
|
@ -30,13 +48,25 @@
|
|||
"ppu1wv76",
|
||||
"/component/",
|
||||
"ppu1wv76",
|
||||
"/component/cards/",
|
||||
"ppu1wv76",
|
||||
"/component/clearing/",
|
||||
"ppu1wv76",
|
||||
"/component/clearing/image/",
|
||||
"/images/",
|
||||
"v6yvqp7w",
|
||||
"/",
|
||||
"v6yvqp7w",
|
||||
"/component/"
|
||||
"/component/",
|
||||
"v6yvqp7w",
|
||||
"/component/Main/",
|
||||
"v6yvqp7w",
|
||||
"/component/Main/component/",
|
||||
"v6yvqp7w",
|
||||
"/component/cards/",
|
||||
"v6yvqp7w",
|
||||
"/images/",
|
||||
"v6yvqp7w",
|
||||
"/images/cards/"
|
||||
],
|
||||
"auxline1": true,
|
||||
"snapToGrid": true,
|
||||
|
|
|
|||
|
|
@ -1,41 +1,37 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1334,750" designImage="ui://3vytbifonu0l2f" designImageOffsetX="-200" designImageOffsetY="-100">
|
||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="0"/>
|
||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="2"/>
|
||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||
<controller name="action" pages="2,空,0,准备,1,开始" selected="0"/>
|
||||
<controller name="jushu" pages="0,,1," selected="0"/>
|
||||
<controller name="bg_state" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n176_fgao" name="di_text" xy="308,168" size="965,42" fontSize="30" color="#49925d" align="center" vAlign="middle" autoSize="none" bold="true" strokeColor="#296137" text="123456789">
|
||||
<text id="n176_fgao" name="di_text" xy="442,10" size="450,51" font="LiSu" fontSize="32" color="#330000" align="center" vAlign="middle" autoSize="none" strokeColor="#296137" text="123456789">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<gearColor controller="bg_state" pages="0,1" values="#49925d,#296137|#655c6a,#322e34" default="#367c7d,#235557"/>
|
||||
<gearColor controller="bg_state" pages="0,1" values="#330000,#296137|#655c6a,#322e34" default="#367c7d,#235557"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<image id="n177_cbxl" name="n177" src="60xf1g2" fileName="component/Main/images/zipai3.png" xy="574,84">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<text id="n27" name="remaining_card" xy="575,90" 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>
|
||||
<loader id="n156_mk2u" name="jiang" xy="456,85" size="65,75" fill="scaleFree"/>
|
||||
<component id="n151_8th3" name="player_card_info2" src="f55qw5" fileName="component/Main/component/Player_card_info_2.xml" xy="198,2">
|
||||
<component id="n151_8th3" name="player_card_info2" src="f55qw5" fileName="component/Main/component/Player_card_info_2.xml" xy="153,6" size="447,405">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="n147_nu0l" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n61_jali" name="player_card_info1" src="f55qvx" fileName="component/Main/component/Player_card_info_1.xml" xy="0,530" size="1334,221">
|
||||
<component id="n61_jali" name="player_card_info1" src="f55qvx" fileName="component/Main/component/Player_card_info_1.xml" xy="136,529" size="1193,228">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="width-width"/>
|
||||
<relation target="" sidePair="width-width,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n147_nu0l" name="player_info2" src="f55qw7" fileName="component/Main/component/PlayerHead_2.xml" xy="48,35">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</component>
|
||||
<component id="n7" name="player_info1" src="f55qw4" fileName="component/Main/component/PlayerHead_1.xml" xy="6,560" size="189,67">
|
||||
<gearXY controller="state" pages="0,1,2,3" values="6,560|8,570|8,570|8,570"/>
|
||||
<component id="n147_nu0l" name="player_info2" src="f55qw7" fileName="component/Main/component/PlayerHead_2.xml" xy="21,96">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n32_h1uu" name="gcm_chat" src="h1uu2p" fileName="Gcm_chat.xml" pkg="l0ds4ys6" xy="1241,279">
|
||||
<component id="n7" name="player_info1" src="f55qw4" fileName="component/Main/component/PlayerHead_1.xml" xy="8,570" size="189,67">
|
||||
<gearXY controller="state" pages="0,1,2,3" values="20,524|8,515|8,570|8,570"/>
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n32_h1uu" name="gcm_chat" src="h1uu2p" fileName="Gcm_chat.xml" pkg="l0ds4ys6" xy="1243,342">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</component>
|
||||
|
|
@ -62,60 +58,49 @@
|
|||
<gearDisplay controller="state" pages="0"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
<text id="n58_zzcq" name="tex_version" xy="1200,704" size="130,38" fontSize="30" color="#ffffff" align="center" autoSize="none" text="v2.0.0">
|
||||
<text id="n58_zzcq" name="tex_version" xy="1203,709" size="130,38" visible="false" fontSize="30" color="#ffffff" align="center" autoSize="none" text="v2.0.0">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<text id="n146_lr5d" name="time" xy="655,294" size="10,6" visible="false" fontSize="0" color="#cccccc" align="center" leading="0" autoSize="none" text="">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
</text>
|
||||
<component id="n149_qpk6" name="btn_reset" src="f55qvr" fileName="component/Main/component/Folder/component/phone_info/Btn_reset.xml" xy="8,332" size="80,80">
|
||||
<component id="n149_qpk6" name="btn_reset" src="f55qvr" fileName="component/Main/component/Folder/component/phone_info/Btn_reset.xml" xy="8,312" size="80,80">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n24" name="right_panel" src="f55qvt" fileName="component/Main/component/Folder/RightPanel.xml" xy="400,3" size="869,107" group="n150_8th3">
|
||||
<component id="n24" name="right_panel" src="f55qvt" fileName="component/Main/component/Folder/RightPanel.xml" xy="0,-19" size="862,82" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="0,1,2,3"/>
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n37_kba2" name="roominfo_panel1" src="f55qwb" fileName="component/Main/RoomInfoPanel1.xml" xy="568,7" size="332,80" group="n150_8th3" visible="false" touchable="false"/>
|
||||
<component id="n31_h1uu" name="roominfo_panel" src="f55qwb" fileName="component/Main/RoomInfoPanel1.xml" xy="972,71" size="322,80" group="n150_8th3" visible="false" touchable="false"/>
|
||||
<component id="n46_u4l2" name="btn_rule1" src="f55qvn" fileName="component/Main/component/Folder/component/phone_info/Btn_log.xml" xy="802,29" size="106,29" group="n150_8th3" visible="false"/>
|
||||
<component id="n166_o49p" name="btn_back_lobby" src="f55qvp" fileName="component/Main/component/Folder/component/phone_info/Btn_back_lobby.xml" xy="1147,2" size="61,89" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="0,3"/>
|
||||
</component>
|
||||
<component id="n167_o49p" name="Btn_jiesan_lobby" src="oynr1ag" fileName="component/Main/component/Folder/component/phone_info/Btn_jiesan_lobby.xml" xy="1147,2" size="61,89" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
</component>
|
||||
<component id="n181_r1z9" name="btn_leave_lobby" src="r1z91gx" fileName="component/Main/component/Folder/component/phone_info/Btn_leave_lobby.xml" xy="1291,17" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="0,3"/>
|
||||
</component>
|
||||
<component id="n168_o49p" name="btn_setting" src="f55qva" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="1207,4" size="72,89" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
</component>
|
||||
<group id="n150_8th3" name="n150" xy="400,2" size="948,149" advanced="true">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
<component id="n37_kba2" name="roominfo_panel1" src="f55qwb" fileName="component/Main/RoomInfoPanel1.xml" xy="819,-76" size="221,43" group="n150_8th3" visible="false" touchable="false"/>
|
||||
<component id="n31_h1uu" name="roominfo_panel" src="f55qwb" fileName="component/Main/RoomInfoPanel1.xml" xy="437,-73" size="403,92" group="n150_8th3" visible="false" touchable="false"/>
|
||||
<component id="n46_u4l2" name="btn_rule1" src="f55qvn" fileName="component/Main/component/Folder/component/phone_info/Btn_log.xml" xy="537,-97" size="99,4" group="n150_8th3" visible="false"/>
|
||||
<group id="n150_8th3" name="n150" xy="0,-97" size="1040,160" advanced="true">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</group>
|
||||
<image id="n152_8th3" name="n152" src="f55qvu" fileName="component/Main/images/di00.png" xy="377,6" size="580,86" visible="false">
|
||||
<image id="n152_8th3" name="n152" src="f55qvu" fileName="component/Main/images/di00.png" xy="377,-91" size="580,86" visible="false">
|
||||
<gearDisplay controller="state" pages="3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<text id="n42_lryk" name="tex_round" xy="527,150" size="267,27" group="n154_r1mo" fontSize="20" color="#ffffff" align="center" autoSize="none" text="剩余 5 张牌 1/8局">
|
||||
<text id="n42_lryk" name="tex_round" xy="527,150" size="267,36" group="n154_r1mo" fontSize="24" color="#ffffff" align="center" autoSize="none" text="剩余 5 张牌 1/8局">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<group id="n154_r1mo" name="n154" xy="527,150" size="267,27" advanced="true">
|
||||
<group id="n154_r1mo" name="n154" xy="527,150" size="267,36" advanced="true">
|
||||
<gearDisplay controller="jushu" pages="1"/>
|
||||
</group>
|
||||
<loader id="n153_8th3" name="cardAnima" xy="625,86" size="50,30" visible="false" touchable="false" url="ui://3bfrwj0h8th37l" autoSize="true">
|
||||
<gearDisplay controller="state" pages="1"/>
|
||||
</loader>
|
||||
<component id="n57_rayb" name="panel_record" src="rayb5j" fileName="component/record/Record.xml" pkg="27vd145b" xy="379,435" alpha="0.5">
|
||||
<component id="n57_rayb" name="panel_record" src="rayb5j" fileName="component/record/Record.xml" pkg="27vd145b" xy="397,375" alpha="0.5">
|
||||
<gearDisplay controller="state" pages="3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</component>
|
||||
<image id="n174_fgao" name="zipai1" src="fgao1db" fileName="component/images/zipaic2.png" xy="573,114" visible="false">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<image id="n175_fgao" name="zipai2" src="fgao1db" fileName="component/images/zipaic2.png" xy="582,110" visible="false">
|
||||
<image id="n175_fgao" name="zipai2" src="fgao1db" fileName="component/images/zipaic2.png" xy="572,111" visible="false">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<component id="n162_o49p" name="btn_getRoomNum" src="f7zu1aw" fileName="component/room/btn_invite.xml" xy="524,286" group="n163_o49p" visible="false" touchable="false">
|
||||
|
|
@ -128,9 +113,28 @@
|
|||
<gearDisplay controller="state" pages="0"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
<component id="n179_kxwj" name="btn_distance" src="kxwjhyc" fileName="component/gps/btn_distance_new.xml" pkg="27vd145b" xy="720,-3" visible="false" touchable="false">
|
||||
<component id="n179_kxwj" name="btn_distance" src="kxwjhyc" fileName="component/gps/btn_distance_new.xml" pkg="27vd145b" xy="1248,262" visible="false" touchable="false">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
</component>
|
||||
<text id="n27" name="remaining_card" xy="575,90" 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="n166_o49p" name="btn_back_lobby" src="f55qvp" fileName="component/Main/component/Folder/component/phone_info/Btn_back_lobby.xml" xy="1282,82" size="54,89" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="0,3"/>
|
||||
</component>
|
||||
<component id="n167_o49p" name="Btn_jiesan_lobby" src="oynr1ag" fileName="component/Main/component/Folder/component/phone_info/Btn_jiesan_lobby.xml" xy="1203,3" size="54,89" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
</component>
|
||||
<component id="n181_r1z9" name="btn_leave_lobby" src="r1z91gx" fileName="component/Main/component/Folder/component/phone_info/Btn_leave_lobby.xml" xy="1199,9" size="50,77" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="0,3"/>
|
||||
</component>
|
||||
<component id="n168_o49p" name="btn_setting" src="f55qva" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="1268,5" size="65,89" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
</component>
|
||||
<group id="n183_yfzf" name="n183" xy="1199,3" size="137,168" advanced="true">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</group>
|
||||
</displayList>
|
||||
<transition name="outcard1">
|
||||
<item time="0" type="XY" target="n153_8th3" tween="true" startValue="625.3,86.3" endValue="494.58,177.69" duration="4"/>
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="42,42">
|
||||
<displayList>
|
||||
<loader id="n0_lr5d" name="icon" xy="0,0" size="42,42" autoSize="true"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="42,42">
|
||||
<displayList>
|
||||
<loader id="n0_lr5d" name="icon" xy="0,0" pivot="0.5,0.5" size="42,42" autoSize="true"/>
|
||||
</displayList>
|
||||
<transition name="t0">
|
||||
<item time="0" type="Scale" target="n0_lr5d" tween="true" startValue="1.5,1.5" endValue="1,1" duration="6"/>
|
||||
<item time="0" type="XY" target="n0_lr5d" tween="true" startValue="-134.05,-27.92" endValue="0,0" duration="6"/>
|
||||
</transition>
|
||||
<transition name="t1">
|
||||
<item time="0" type="Scale" target="n0_lr5d" tween="true" startValue="1.5,1.5" endValue="1,1" duration="6"/>
|
||||
<item time="0" type="XY" target="n0_lr5d" tween="true" startValue="107.99,-16.24" endValue="0,0" duration="6"/>
|
||||
</transition>
|
||||
</component>
|
||||
|
|
@ -3,28 +3,28 @@
|
|||
<controller name="xinhao" pages="0,,1," selected="0"/>
|
||||
<controller name="log" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n31_o49p" name="n31" src="o49p1ca" fileName="component/Main/component/new_ui/up_bg_img.png" xy="12,17" size="711,56" group="n19_qpk6"/>
|
||||
<image id="n21_mk2u" name="n21" src="mk2u14b" fileName="component/Main/component/Folder/images/new_sd_bg.png" xy="0,0" group="n19_qpk6" visible="false"/>
|
||||
<image id="n22_mk2u" name="n22" src="mk2u14a" fileName="component/Main/component/Folder/images/new_bg_hd.png" xy="91,7" size="398,35" group="n19_qpk6" visible="false"/>
|
||||
<component id="n20_qpk6" name="btn_log" src="f55qvn" fileName="component/Main/component/Folder/component/phone_info/Btn_log.xml" xy="393,29" size="126,73" group="n19_qpk6"/>
|
||||
<component id="n1" name="btn_setting" src="f55qva" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="608,-8" size="71,94" group="n19_qpk6" visible="false"/>
|
||||
<component id="n5" name="pb_batteryLevel" src="f55qvc" fileName="component/Main/component/Folder/component/phone_info/ProgressBar2.xml" xy="590,37" size="34,15" group="n19_qpk6" touchable="false">
|
||||
<image id="n31_o49p" name="n31" src="o49p1ca" fileName="component/Main/component/new_ui/up_bg_img.png" xy="12,17" size="739,56" group="n19_qpk6" visible="false"/>
|
||||
<image id="n21_mk2u" name="n21" src="mk2u14b" fileName="component/Main/component/Folder/images/new_sd_bg.png" xy="-7,-2" size="679,96" group="n19_qpk6" visible="false"/>
|
||||
<image id="n22_mk2u" name="n22" src="mk2u14a" fileName="component/Main/component/Folder/images/new_bg_hd.png" xy="13,129" size="426,35" group="n19_qpk6" visible="false"/>
|
||||
<component id="n20_qpk6" name="btn_log" src="f55qvn" fileName="component/Main/component/Folder/component/phone_info/Btn_log.xml" xy="319,22" size="154,51" group="n19_qpk6"/>
|
||||
<component id="n1" name="btn_setting" src="f55qva" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="690,-5" size="99,94" group="n19_qpk6" visible="false"/>
|
||||
<component id="n5" name="pb_batteryLevel" src="f55qvc" fileName="component/Main/component/Folder/component/phone_info/ProgressBar2.xml" xy="118,34" size="62,15" group="n19_qpk6" touchable="false">
|
||||
<ProgressBar value="62" max="100"/>
|
||||
</component>
|
||||
<component id="n25_oynr" name="gcm_xinhao" src="oynr1aj" fileName="component/Main/component/Folder/component/phone_info/Component3(1).xml" xy="629,32" group="n19_qpk6" touchable="false"/>
|
||||
<component id="n9" name="gcm_wifi" src="f55qvj" fileName="component/Main/component/Folder/component/phone_info/Component3.xml" xy="280,49" group="n19_qpk6" aspect="true" touchable="false">
|
||||
<component id="n25_oynr" name="gcm_xinhao" src="oynr1aj" fileName="component/Main/component/Folder/component/phone_info/Component3(1).xml" xy="174,32" group="n19_qpk6" touchable="false"/>
|
||||
<component id="n9" name="gcm_wifi" src="f55qvj" fileName="component/Main/component/Folder/component/phone_info/Component3.xml" xy="321,2" size="55,20" group="n19_qpk6" aspect="true" visible="false" touchable="false">
|
||||
<gearDisplay controller="xinhao" pages="1"/>
|
||||
</component>
|
||||
<text id="n7" name="tex_data" xy="154,11" size="46,34" group="n19_qpk6" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="2017-07-09"/>
|
||||
<text id="n12_yyhx" name="tex_time" xy="521,28" size="67,36" group="n19_qpk6" fontSize="26" color="#cbcfb3" vAlign="middle" text="19:30"/>
|
||||
<text id="n24_mk2u" name="tex_gametype" xy="20,29" size="145,34" group="n19_qpk6" fontSize="26" color="#cbcfb3" vAlign="middle" leading="0" autoSize="none" bold="true" text="衡阳十胡卡"/>
|
||||
<text id="n27_o49p" name="tex_roomid" xy="148,29" size="106,36" group="n19_qpk6" fontSize="26" color="#a4af57" vAlign="middle" autoSize="shrink" text="2345672">
|
||||
<text id="n7" name="tex_data" xy="519,2" size="74,32" group="n19_qpk6" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="2017-07-09"/>
|
||||
<text id="n12_yyhx" name="tex_time" xy="26,26" size="98,36" group="n19_qpk6" fontSize="26" color="#cbcfb3" vAlign="middle" autoSize="none" text="19:30"/>
|
||||
<text id="n24_mk2u" name="tex_gametype" xy="20,29" size="173,34" group="n19_qpk6" visible="false" fontSize="26" color="#cbcfb3" vAlign="middle" leading="0" autoSize="none" bold="true" text="衡阳十胡卡"/>
|
||||
<text id="n27_o49p" name="tex_roomid" xy="161,29" size="134,36" group="n19_qpk6" visible="false" fontSize="26" color="#a4af57" vAlign="middle" autoSize="shrink" text="2345672">
|
||||
<relation target="n24_mk2u" sidePair="left-left"/>
|
||||
</text>
|
||||
<text id="n28_o49p" name="tex_round22" xy="253,29" size="56,36" group="n19_qpk6" fontSize="26" color="#cbcfb3" vAlign="middle" leading="0" text="局数"/>
|
||||
<text id="n29_o49p" name="tex_round" xy="308,29" size="118,33" group="n19_qpk6" fontSize="26" color="#a4af57" vAlign="middle" leading="0" autoSize="none" text="">
|
||||
<text id="n28_o49p" name="tex_round22" xy="290,29" size="56,37" group="n19_qpk6" visible="false" fontSize="26" color="#cbcfb3" vAlign="middle" leading="0" text="局数"/>
|
||||
<text id="n29_o49p" name="tex_round" xy="312,31" size="146,33" group="n19_qpk6" visible="false" fontSize="26" color="#a4af57" vAlign="middle" leading="0" autoSize="none" text="">
|
||||
<relation target="n28_o49p" sidePair="left-left"/>
|
||||
</text>
|
||||
<group id="n19_qpk6" name="n19" xy="0,-8" size="732,110"/>
|
||||
<group id="n19_qpk6" name="n19" xy="-7,-5" size="796,169"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="125,52">
|
||||
<displayList>
|
||||
<image id="n3_e54q" name="n3" src="e54q3x" fileName="images/head/head_name_bg.png" pkg="27vd145b" xy="0,0" visible="false"/>
|
||||
<text id="n1_e54q" name="tex_score" xy="0,29" size="125,31" fontSize="26" color="#dac44a" align="center" vAlign="middle" autoSize="none" text="22222"/>
|
||||
<text id="n2_e54q" name="tex_player_name" xy="-1,-16" size="126,31" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="的大幅度微"/>
|
||||
<text id="n4_rfcn" name="tex_player_id" xy="-1,9" size="126,32" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="的大幅度微"/>
|
||||
<image id="n3_e54q" name="n3" src="e54q3x" fileName="font/images/head/head_name_bg.png" pkg="27vd145b" xy="-6,0" visible="false"/>
|
||||
<text id="n1_e54q" name="tex_score" xy="0,23" size="125,31" fontSize="26" color="#dac44a" align="center" vAlign="middle" autoSize="none" text="22222"/>
|
||||
<text id="n2_e54q" name="tex_player_name" xy="-1,-10" size="126,31" fontSize="24" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="的大幅度微"/>
|
||||
<text id="n4_rfcn" name="tex_player_id" xy="-1,9" size="126,32" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="的大幅度微"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -63,22 +63,22 @@
|
|||
<component id="n41_jali" name="n41" src="h1uu2j" fileName="component/VoiceMask(1).xml" pkg="l0ds4ys6" xy="-8,-128">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</component>
|
||||
<image id="n73_o49p" name="n73" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="-2,98" size="130,35" group="n51_m25s" aspect="true"/>
|
||||
<text id="n49_m25s" name="huxi" xy="52,98" size="77,31" group="n51_m25s" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" singleLine="true" text="11111"/>
|
||||
<text id="n50_m25s" name="n50" xy="2,101" size="47,27" group="n51_m25s" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n51_m25s" name="n51" xy="-2,98" size="132,35" advanced="true">
|
||||
<image id="n73_o49p" name="n73" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="-2,93" size="130,35" group="n51_m25s" aspect="true"/>
|
||||
<text id="n49_m25s" name="huxi" xy="52,93" size="77,31" group="n51_m25s" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" singleLine="true" text="11111"/>
|
||||
<text id="n50_m25s" name="n50" xy="2,96" size="47,27" group="n51_m25s" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n51_m25s" name="n51" xy="-2,93" size="132,35" advanced="true">
|
||||
<gearDisplay controller="huxi" pages="1"/>
|
||||
</group>
|
||||
<image id="n52_nu0l" name="n52" src="f55qw3" fileName="component/Main/images/c00.png" xy="-2,4" visible="false">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<image id="n54_r1mo" name="n54" src="r1mown" fileName="images/di(1)(1).png" xy="-11,0" group="n56_r1mo">
|
||||
<image id="n54_r1mo" name="n54" src="r1mown" fileName="images/di(1)(1).png" xy="-11,-108" group="n56_r1mo">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</image>
|
||||
<text id="n55_r1mo" name="piaotext" xy="26,10" size="69,31" group="n56_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<text id="n55_r1mo" name="piaotext" xy="26,-98" size="69,31" group="n56_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</text>
|
||||
<group id="n56_r1mo" name="n56" xy="-11,0" size="148,42"/>
|
||||
<group id="n56_r1mo" name="n56" xy="-11,-108" size="148,42"/>
|
||||
<image id="n58_mk2u" name="n58" src="mk2u14g" fileName="component/Main/images/hand.png" xy="83,-24" size="56,59">
|
||||
<gearDisplay controller="jushou" pages="1"/>
|
||||
</image>
|
||||
|
|
@ -94,20 +94,20 @@
|
|||
<image id="n71_o49p" name="n71" src="f7zuchj" fileName="font/images/game/game_new_fonts_01.png" pkg="27vd145b" xy="134,-60">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<image id="n74_o49p" name="n74" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="-2,133" size="126,33" group="n76_o49p"/>
|
||||
<text id="n60_seby" name="tex_jifen" xy="60,129" size="77,39" group="n76_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="22222"/>
|
||||
<text id="n75_o49p" name="tex_jifen_text" xy="-8,135" size="69,29" group="n76_o49p" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" text="战绩"/>
|
||||
<group id="n76_o49p" name="n76" xy="-8,129" size="145,39" advanced="true">
|
||||
<image id="n74_o49p" name="n74" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="-2,128" size="126,33" group="n76_o49p"/>
|
||||
<text id="n60_seby" name="tex_jifen" xy="60,124" size="77,39" group="n76_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="22222"/>
|
||||
<text id="n75_o49p" name="tex_jifen_text" xy="-8,130" size="69,29" group="n76_o49p" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" text="战绩"/>
|
||||
<group id="n76_o49p" name="n76" xy="-8,124" size="145,39" advanced="true">
|
||||
<gearDisplay controller="zhanji" pages="1"/>
|
||||
</group>
|
||||
<text id="n84_nkur" name="tuoguanTips" xy="5,-123" size="302,48" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间"/>
|
||||
<text id="n84_nkur" name="tuoguanTips" xy="122,-106" size="302,48" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间"/>
|
||||
<text id="n85_j34t" name="piao" xy="130,-50" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n87_ybf5" name="niao8" src="r1mown" fileName="images/di(1)(1).png" xy="-9,-13" group="n89_ybf5">
|
||||
<image id="n87_ybf5" name="niao8" src="r1mown" fileName="images/di(1)(1).png" xy="-9,-105" group="n89_ybf5">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</image>
|
||||
<text id="n88_ybf5" name="niaotext" xy="18,-7" size="89,32" group="n89_ybf5" fontSize="22" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="打鸟">
|
||||
<text id="n88_ybf5" name="niaotext" xy="17,-102" size="89,34" group="n89_ybf5" font="LiSu" fontSize="24" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="打鸟">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</text>
|
||||
<group id="n89_ybf5" name="n89" xy="-9,-13" size="148,42"/>
|
||||
<group id="n89_ybf5" name="n89" xy="-9,-105" size="148,42"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -6,108 +6,108 @@
|
|||
<controller name="offline" pages="0,,1," selected="0"/>
|
||||
<controller name="mask_voice" pages="0,,1," selected="0"/>
|
||||
<controller name="time" pages="0,,1," selected="0"/>
|
||||
<controller name="huxi" pages="0,,1," selected="0"/>
|
||||
<controller name="huxi" pages="0,,1," selected="1"/>
|
||||
<controller name="tuo" pages="0,,1," selected="0"/>
|
||||
<controller name="piao" pages="0,,1," selected="0"/>
|
||||
<controller name="jushou" pages="0,,1," selected="0"/>
|
||||
<controller name="chui" pages="0,,1,,2," selected="0"/>
|
||||
<controller name="sishou" pages="0,,1," selected="0"/>
|
||||
<controller name="zhanji" pages="0,,1," selected="1"/>
|
||||
<controller name="niao" pages="0,,1," selected="0"/>
|
||||
<controller name="niao" pages="0,,1," selected="1"/>
|
||||
<displayList>
|
||||
<image id="n76_o49p" name="n76" src="o49p1cj" fileName="component/Main/component/new_ui/touxiang_img.png" xy="13,-26" size="123,172"/>
|
||||
<image id="n34_e7qn" name="n34" src="lwcl2m" fileName="font/images/head/index_bg_01.png" pkg="27vd145b" xy="18,0" size="100,98" group="n39_e7qn" aspect="true" visible="false"/>
|
||||
<image id="n38_e7qn" name="zhuang1" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="22,-19" group="n39_e7qn" aspect="true" visible="false">
|
||||
<image id="n76_o49p" name="n76" src="o49p1cj" fileName="component/Main/component/new_ui/touxiang_img.png" xy="12,-26" size="123,172"/>
|
||||
<image id="n34_e7qn" name="n34" src="lwcl2m" fileName="font/images/head/index_bg_01.png" pkg="27vd145b" xy="17,0" size="100,98" group="n39_e7qn" aspect="true" visible="false"/>
|
||||
<image id="n38_e7qn" name="zhuang1" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="21,-19" group="n39_e7qn" aspect="true" visible="false">
|
||||
<gearDisplay controller="time" pages="1"/>
|
||||
</image>
|
||||
<component id="n81_g4bl" name="btn_head" src="g4bl1gg" fileName="component/Main/Head4.xml" xy="27,-19" group="n39_e7qn"/>
|
||||
<image id="n79_cbxl" name="n79" src="o49p1cl" fileName="component/Main/component/new_ui/touxiangkuang_img.png" xy="24,-22" size="98,98" group="n39_e7qn">
|
||||
<component id="n81_g4bl" name="btn_head" src="g4bl1gg" fileName="component/Main/Head4.xml" xy="26,-19" group="n39_e7qn"/>
|
||||
<image id="n79_cbxl" name="n79" src="o49p1cl" fileName="component/Main/component/new_ui/touxiangkuang_img.png" xy="23,-22" size="98,98" group="n39_e7qn">
|
||||
<gearDisplay controller="time" pages="1"/>
|
||||
</image>
|
||||
<image id="n78_cbxl" name="n78" src="cbxl1ge" fileName="component/Main/component/new_ui/zhuang_img.png" xy="72,-27" group="n39_e7qn">
|
||||
<image id="n78_cbxl" name="n78" src="cbxl1ge" fileName="component/Main/component/new_ui/zhuang_img.png" xy="71,-27" group="n39_e7qn">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<graph id="n62_vt54" name="sishou" xy="21,-23" size="105,105" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<graph id="n62_vt54" name="sishou" xy="20,-23" size="105,105" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<gearDisplay controller="sishou" pages="1"/>
|
||||
</graph>
|
||||
<text id="n63_vt54" name="n63" xy="44,14" size="64,41" group="n39_e7qn" fontSize="30" color="#ffffff" text="死手">
|
||||
<text id="n63_vt54" name="n63" xy="43,14" size="64,41" group="n39_e7qn" fontSize="30" color="#ffffff" text="死手">
|
||||
<gearDisplay controller="sishou" pages="1"/>
|
||||
</text>
|
||||
<graph id="n36_e7qn" name="offLine" xy="20,-23" size="107,107" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<graph id="n36_e7qn" name="offLine" xy="19,-23" size="107,107" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<gearDisplay controller="offline" pages="1"/>
|
||||
</graph>
|
||||
<image id="n37_e7qn" name="fangzhu" src="fnpwwo" fileName="component/Main/images/owner.png" xy="10,-26" group="n39_e7qn" visible="false">
|
||||
<image id="n37_e7qn" name="fangzhu" src="fnpwwo" fileName="component/Main/images/owner.png" xy="9,-26" group="n39_e7qn" visible="false">
|
||||
<gearDisplay controller="room_owner" pages="1"/>
|
||||
</image>
|
||||
<text id="n42_aawn" name="n42" xy="42,14" size="64,41" group="n39_e7qn" fontSize="30" color="#ffffff" text="离线">
|
||||
<text id="n42_aawn" name="n42" xy="41,14" size="64,41" group="n39_e7qn" fontSize="30" color="#ffffff" text="离线">
|
||||
<gearDisplay controller="offline" pages="1"/>
|
||||
</text>
|
||||
<image id="n58_fnpw" name="n58" src="fnpwwp" fileName="component/Main/images/niuniu_icon_12.png" xy="83,1" group="n39_e7qn" visible="false">
|
||||
<image id="n58_fnpw" name="n58" src="fnpwwp" fileName="component/Main/images/niuniu_icon_12.png" xy="82,1" group="n39_e7qn" visible="false">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<image id="n66_o49p" name="n66" pkg="3bfrwj0h" src="kd7ro6" fileName="component/Main/new_ui/jiatuo_img.png" xy="15,37" size="100,102" group="n39_e7qn">
|
||||
<image id="n66_o49p" name="n66" pkg="3bfrwj0h" src="kd7ro6" fileName="component/Main/new_ui/jiatuo_img.png" xy="14,37" size="100,102" group="n39_e7qn">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<image id="n70_o49p" name="n70" pkg="3bfrwj0h" src="o49ppl" fileName="component/Main/new_ui/jiachui_img.png" xy="13,41" group="n39_e7qn">
|
||||
<image id="n70_o49p" name="n70" pkg="3bfrwj0h" src="o49ppl" fileName="component/Main/new_ui/jiachui_img.png" xy="12,41" group="n39_e7qn">
|
||||
<gearDisplay controller="chui" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n80_cbxl" name="n80" src="cbxl1gf" fileName="component/Main/component/new_ui/房主.png" xy="15,-23" group="n39_e7qn" visible="false">
|
||||
<image id="n80_cbxl" name="n80" src="cbxl1gf" fileName="component/Main/component/new_ui/房主.png" xy="14,-23" group="n39_e7qn" visible="false">
|
||||
<gearDisplay controller="room_owner" pages="1"/>
|
||||
</image>
|
||||
<group id="n39_e7qn" name="n39" xy="10,-27" size="127,168"/>
|
||||
<group id="n39_e7qn" name="n39" xy="9,-27" size="127,168"/>
|
||||
<image id="n8" name="ready1" src="kba23z" fileName="font/images/game/game_fonts_01.png" pkg="27vd145b" xy="160,50" visible="false">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<image id="n65_o49p" name="ready" src="f7zuchj" fileName="font/images/game/game_new_fonts_01.png" pkg="27vd145b" xy="160,48">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<component id="n77_fgao" name="info" src="fgao1dk" fileName="component/Main/component/HeadNameBG.xml" xy="13,86" size="124,54"/>
|
||||
<loader id="n44_oqwm" name="icon" xy="35,-12" size="78,80" visible="false" align="center" vAlign="middle"/>
|
||||
<component id="n77_fgao" name="info" src="fgao1dk" fileName="component/Main/component/HeadNameBG.xml" xy="12,86" size="124,54"/>
|
||||
<loader id="n44_oqwm" name="icon" xy="34,-12" size="78,80" visible="false" align="center" vAlign="middle"/>
|
||||
<image id="n46_jali" name="n46" src="e54q2s" fileName="images/game_icon_07.png" pkg="l0ds4ys6" xy="-22,-89">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</image>
|
||||
<component id="n45_jali" name="n45" src="h1uu2j" fileName="component/VoiceMask(1).xml" pkg="l0ds4ys6" xy="27,-63">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</component>
|
||||
<image id="n75_o49p" name="n75" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="11,150" size="127,35" group="n49_lr5d" aspect="true"/>
|
||||
<text id="n48_lr5d" name="huxi" xy="62,151" size="80,29" group="n49_lr5d" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="none" singleLine="true" text="11111"/>
|
||||
<text id="n53_m25s" name="n53" xy="10,153" size="59,27" group="n49_lr5d" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n49_lr5d" name="n49" xy="10,150" size="132,35" advanced="true">
|
||||
<image id="n75_o49p" name="n75" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="10,143" size="127,35" group="n49_lr5d" aspect="true"/>
|
||||
<text id="n48_lr5d" name="huxi" xy="64,139" size="80,36" group="n49_lr5d" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="none" singleLine="true" text="11111"/>
|
||||
<text id="n53_m25s" name="n53" xy="9,144" size="59,27" group="n49_lr5d" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n49_lr5d" name="n49" xy="9,139" size="135,39" advanced="true">
|
||||
<gearDisplay controller="huxi" pages="1"/>
|
||||
</group>
|
||||
<image id="n54_nu0l" name="n54" src="f55qw3" fileName="component/Main/images/c00.png" xy="160,3" visible="false">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<component id="n31_e54q" name="chat" src="h1uu22" fileName="component/MsgBubble1.xml" pkg="l0ds4ys6" xy="150,6" alpha="0"/>
|
||||
<component id="n27_e54q" name="face" src="e54q2v" fileName="component/Face3.xml" pkg="l0ds4ys6" xy="140,2" alpha="0"/>
|
||||
<image id="n55_r1mo" name="n55" src="r1mown" fileName="images/di(1)(1).png" xy="3,44" group="n57_r1mo">
|
||||
<component id="n31_e54q" name="chat" src="h1uu22" fileName="component/MsgBubble1.xml" pkg="l0ds4ys6" xy="149,6" alpha="0"/>
|
||||
<component id="n27_e54q" name="face" src="e54q2v" fileName="component/Face3.xml" pkg="l0ds4ys6" xy="139,2" alpha="0"/>
|
||||
<image id="n55_r1mo" name="n55" src="r1mown" fileName="images/di(1)(1).png" xy="2,-70" group="n57_r1mo">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</image>
|
||||
<text id="n56_r1mo" name="piaotext" xy="40,49" size="69,37" group="n57_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<text id="n56_r1mo" name="piaotext" xy="39,-65" size="69,37" group="n57_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</text>
|
||||
<group id="n57_r1mo" name="n57" xy="3,44" size="148,42"/>
|
||||
<group id="n57_r1mo" name="n57" xy="2,-70" size="148,42"/>
|
||||
<image id="n59_mk2u" name="n59" src="mk2u14g" fileName="component/Main/images/hand.png" xy="130,46" size="56,59">
|
||||
<gearDisplay controller="jushou" pages="1"/>
|
||||
</image>
|
||||
<image id="n60_enxu" name="n60" src="enxu14r" fileName="images/jiachui.png" xy="130,-1">
|
||||
<gearDisplay controller="chui" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n71_o49p" name="n71" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="11,185" size="136,35" group="n74_o49p" aspect="true"/>
|
||||
<text id="n72_o49p" name="tex_jifen" xy="74,185" size="77,36" group="n74_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" text="22222"/>
|
||||
<text id="n73_o49p" name="tex_jifen_text" xy="5,185" size="69,29" group="n74_o49p" fontSize="18" color="#512e06" align="center" vAlign="middle" leading="0" autoSize="none" text="战绩"/>
|
||||
<group id="n74_o49p" name="n74" xy="5,185" size="146,36" advanced="true">
|
||||
<image id="n71_o49p" name="n71" src="o49p1cw" fileName="component/Main/new_ui/jifen_bg_img.png" xy="8,181" size="136,35" group="n74_o49p" aspect="true"/>
|
||||
<text id="n72_o49p" name="tex_jifen" xy="71,179" size="77,36" group="n74_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" text="22222"/>
|
||||
<text id="n73_o49p" name="tex_jifen_text" xy="2,183" size="69,29" group="n74_o49p" fontSize="18" color="#512e06" align="center" vAlign="middle" leading="0" autoSize="none" text="战绩"/>
|
||||
<group id="n74_o49p" name="n74" xy="2,179" size="146,37" advanced="true">
|
||||
<gearDisplay controller="zhanji" pages="1"/>
|
||||
</group>
|
||||
<text id="n82_nkur" name="tuoguanTips" xy="160,-32" size="237,48" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间90S"/>
|
||||
<text id="n83_j34t" name="piao" xy="130,3" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n84_ybf5" name="n84" src="r1mown" fileName="images/di(1)(1).png" xy="3,44" group="n86_ybf5">
|
||||
<text id="n82_nkur" name="tuoguanTips" xy="151,45" size="237,46" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间90S"/>
|
||||
<text id="n83_j34t" name="piao" xy="129,3" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n84_ybf5" name="n84" src="r1mown" fileName="images/di(1)(1).png" xy="0,-34" group="n86_ybf5">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</image>
|
||||
<text id="n85_ybf5" name="niaotext" xy="40,49" size="69,37" group="n86_ybf5" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<text id="n85_ybf5" name="niaotext" xy="20,-32" size="104,37" group="n86_ybf5" font="LiSu" fontSize="24" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</text>
|
||||
<group id="n86_ybf5" name="n86" xy="3,44" size="148,42"/>
|
||||
<group id="n86_ybf5" name="n86" xy="0,-34" size="148,42"/>
|
||||
</displayList>
|
||||
<transition name="t0" autoPlay="true" autoPlayRepeat="-1"/>
|
||||
</component>
|
||||
|
|
@ -3,62 +3,75 @@
|
|||
<controller name="chupai" pages="0,,1," selected="0"/>
|
||||
<controller name="piao" pages="0,,1,,3,,4," selected="0"/>
|
||||
<controller name="piaovalue" pages="0,0,1,1,2,2,3,3,4,5,5,8" selected="0"/>
|
||||
<controller name="niao" pages="0,,1," selected="0"/>
|
||||
<controller name="niao" pages="0,,1," selected="1"/>
|
||||
<controller name="bgview" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<list id="n36_lr5d" name="windcard_list" xy="950,-116" size="369,81" layout="flow_hz" lineGap="1" colGap="1" defaultItem="ui://v6yvqp7wf55qvw" align="right" vAlign="middle">
|
||||
<list id="n36_lr5d" name="windcard_list" xy="1331,217" size="283,81" rotation="180" layout="flow_hz" lineGap="1" colGap="1" defaultItem="ui://v6yvqp7wlr5d31">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</list>
|
||||
<list id="n35_lr5d" name="area_fz_list" xy="570,-327" size="200,135" layout="row" selectionMode="none" lineGap="3" colGap="5" defaultItem="ui://v6yvqp7wlr5d30">
|
||||
<list id="n35_lr5d" name="area_fz_list" xy="787,-169" size="242,135" rotation="180" layout="row" selectionMode="none" lineGap="3" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" align="right" vAlign="middle" renderOrder="descent">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
<item url="ui://v6yvqp7wcyprwy"/>
|
||||
<item url="ui://v6yvqp7wcyprww"/>
|
||||
<item url="ui://v6yvqp7wcyprwy"/>
|
||||
</list>
|
||||
<component id="n25" name="area_handcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="160,110" size="1039,131">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
<component id="n25" name="area_handcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="147,90" size="1039,131">
|
||||
<relation target="" sidePair="center-center,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n37_n1ry" name="mask_liangpai" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="600,-250" size="5,5"/>
|
||||
<component id="n38_ey1o" name="n38" src="f55qvy" fileName="component/Main/component/PromptOutCard.xml" xy="116,-155">
|
||||
<component id="n38_ey1o" name="n38" src="f55qvy" fileName="component/Main/component/PromptOutCard.xml" xy="116,-158">
|
||||
<gearDisplay controller="chupai" pages="1"/>
|
||||
</component>
|
||||
<component id="n27" name="area_outcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="480,-400" size="65,84">
|
||||
<relation target="n35_lr5d" sidePair="right-right"/>
|
||||
</component>
|
||||
<component id="n39_j34t" name="piao0" src="j34t1gj" fileName="component/piao/btn_nopiao.xml" xy="215,-159" group="n45_j34t">
|
||||
<component id="n39_j34t" name="piao0" src="j34t1gj" fileName="component/piao/btn_nopiao.xml" xy="226,-126" group="n45_j34t">
|
||||
<gearDisplay controller="piao" pages="1,3,4"/>
|
||||
<Button controller="piaovalue" page="0"/>
|
||||
</component>
|
||||
<component id="n40_j34t" name="piao1" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="448,-159" group="n45_j34t">
|
||||
<component id="n40_j34t" name="piao1" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="459,-126" group="n45_j34t">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
<Button icon="ui://v6yvqp7wj34t1gq" selectedIcon="ui://v6yvqp7wj34t1gq" controller="piaovalue" page="1"/>
|
||||
</component>
|
||||
<component id="n41_j34t" name="piao2" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="686,-159" group="n45_j34t">
|
||||
<component id="n41_j34t" name="piao2" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="697,-126" group="n45_j34t">
|
||||
<gearDisplay controller="piao" pages="1,3,4"/>
|
||||
<gearXY controller="piao" pages="3,4" values="448,-159|448,-159" default="686,-159"/>
|
||||
<gearXY controller="piao" pages="0,3,4" values="697,-126|448,-159|448,-159" default="686,-159"/>
|
||||
<Button icon="ui://v6yvqp7wj34t1gr" selectedIcon="ui://v6yvqp7wj34t1gr" controller="piaovalue" page="2"/>
|
||||
</component>
|
||||
<component id="n42_j34t" name="piao3" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="946,-159" group="n45_j34t">
|
||||
<component id="n42_j34t" name="piao3" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="957,-126" group="n45_j34t">
|
||||
<gearDisplay controller="piao" pages="1,3"/>
|
||||
<gearXY controller="piao" pages="3" values="686,-159" default="946,-159"/>
|
||||
<gearXY controller="piao" pages="0,3" values="957,-126|686,-159" default="946,-159"/>
|
||||
<Button icon="ui://v6yvqp7wj34t1gs" selectedIcon="ui://v6yvqp7wj34t1gs" controller="piaovalue" page="3"/>
|
||||
</component>
|
||||
<component id="n43_j34t" name="piao5" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="686,-159" group="n45_j34t">
|
||||
<component id="n43_j34t" name="piao5" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="697,-126" group="n45_j34t">
|
||||
<gearDisplay controller="piao" pages="3,4"/>
|
||||
<gearXY controller="piao" pages="3" values="946,-159" default="686,-159"/>
|
||||
<gearXY controller="piao" pages="0,3" values="697,-126|946,-159" default="686,-159"/>
|
||||
<Button icon="ui://v6yvqp7wj34t1gt" selectedIcon="ui://v6yvqp7wj34t1gt" controller="piaovalue" page="4"/>
|
||||
</component>
|
||||
<component id="n44_j34t" name="piao8" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="946,-159" group="n45_j34t">
|
||||
<component id="n44_j34t" name="piao8" src="j34t1gm" fileName="component/piao/btn_piao.xml" xy="957,-126" group="n45_j34t">
|
||||
<gearDisplay controller="piao" pages="4"/>
|
||||
<Button icon="ui://v6yvqp7wj34t1go" selectedIcon="ui://v6yvqp7wj34t1go" controller="piaovalue" page="5"/>
|
||||
</component>
|
||||
<group id="n45_j34t" name="piao" xy="215,-159" size="949,103"/>
|
||||
<component id="n46_cphv" name="daniao" src="99we1h1" fileName="component/niao/btn_niao.xml" xy="331,-170" group="n48_cphv">
|
||||
<group id="n45_j34t" name="piao" xy="226,-126" size="949,103"/>
|
||||
<component id="n46_cphv" name="daniao" src="99we1h1" fileName="component/niao/btn_niao.xml" xy="323,-170" group="n48_cphv">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</component>
|
||||
<component id="n47_cphv" name="budaniao" src="99we1h2" fileName="component/niao/btn_noniao.xml" xy="769,-183" group="n48_cphv">
|
||||
<component id="n47_cphv" name="budaniao" src="99we1h2" fileName="component/niao/btn_noniao.xml" xy="761,-170" group="n48_cphv">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</component>
|
||||
<group id="n48_cphv" name="niao" xy="331,-183" size="688,103"/>
|
||||
<group id="n48_cphv" name="niao" xy="323,-170" size="688,90" advanced="true">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
<image id="n49_aqd2" name="n49" src="aqd21h3" fileName="component/images/bgcard.png" xy="908,-465" size="177,350" group="n50_aqd2">
|
||||
<gearDisplay controller="bgview" pages="1"/>
|
||||
<relation target="n27" sidePair="left-left,top-top"/>
|
||||
</image>
|
||||
<component id="n27" name="area_outcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="955,-399" size="65,84" group="n50_aqd2">
|
||||
<relation target="n35_lr5d" sidePair="right-right"/>
|
||||
</component>
|
||||
<group id="n50_aqd2" name="n50" xy="908,-465" size="177,350"/>
|
||||
</displayList>
|
||||
<transition name="t0">
|
||||
<item time="0" type="XY" target="n27" tween="true" startValue="490,-350" endValue="1136.53,-161.41" duration="4"/>
|
||||
<item time="0" type="XY" target="n49_aqd2" tween="true" startValue="490,-350" endValue="1136.53,-161.41" duration="4"/>
|
||||
<item time="7" type="XY" target="n27" value="490,-350"/>
|
||||
<item time="7" type="XY" target="n49_aqd2" value="490,-350"/>
|
||||
</transition>
|
||||
</component>
|
||||
|
|
@ -1,11 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="200,750" opaque="false" initName="player_card_info">
|
||||
<controller name="bgview" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<component id="n52_oske" name="area_handcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="-186,384" size="300,175" touchable="false"/>
|
||||
<list id="n47_lr5d" name="area_fz_list" xy="-110,45" size="315,173" layout="row" scroll="horizontal" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" align="right"/>
|
||||
<list id="n48_lr5d" name="windcard_list" xy="3,255" size="339,78" layout="flow_hz" selectionMode="none" scroll="horizontal" lineGap="1" colGap="1" defaultItem="ui://v6yvqp7wf55qvw" align="right"/>
|
||||
<component id="n25" name="area_outcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="-63,105" size="67,182" touchable="false"/>
|
||||
<component id="n50_n1ry" name="mask_liangpai" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="-100,150" size="5,5"/>
|
||||
<list id="n47_lr5d" name="area_fz_list" xy="16,2" pivot="0.5,0.5" size="315,173" rotation="180" layout="row" scroll="horizontal" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" align="right" vAlign="bottom"/>
|
||||
<list id="n48_lr5d" name="windcard_list" xy="16,196" size="280,78" layout="flow_hz" selectionMode="none" scroll="horizontal" lineGap="1" colGap="1" defaultItem="ui://v6yvqp7wf55qvw" vAlign="bottom"/>
|
||||
<component id="n50_n1ry" name="mask_liangpai" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="200,150" size="5,5"/>
|
||||
<image id="n53_aqd2" name="n53" src="aqd21h3" fileName="component/images/bgcard.png" xy="283,-26" size="177,350">
|
||||
<gearDisplay controller="bgview" pages="1"/>
|
||||
<relation target="n25" sidePair="left-left,top-top"/>
|
||||
</image>
|
||||
<component id="n25" name="area_outcard_list" src="djzo18" fileName="component/Component1.xml" pkg="27vd145b" xy="322,19" size="67,182" touchable="false"/>
|
||||
</displayList>
|
||||
<transition name="t0">
|
||||
<item time="0" type="XY" target="n25" tween="true" startValue="-63,105" endValue="121.45,295" duration="4"/>
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="42,126">
|
||||
<controller name="c1" pages="0,,1," selected="0"/>
|
||||
<controller name="c2" pages="0,,1," selected="1"/>
|
||||
<controller name="c2" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<loader id="n1_lr5d" name="card_1" xy="0,0" size="50,30" group="n4_lr5d" url="ui://v6yvqp7wos7u53" autoSize="true"/>
|
||||
<loader id="n2_lr5d" name="card_2" xy="0,42" size="50,30" group="n4_lr5d" url="ui://v6yvqp7wos7u53" autoSize="true"/>
|
||||
<loader id="n3_lr5d" name="card_3" xy="0,84" size="50,30" group="n4_lr5d" url="ui://v6yvqp7wos7u53" autoSize="true"/>
|
||||
<loader id="n3_lr5d" name="card_3" xy="0,0" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" autoSize="true" clearOnPublish="true"/>
|
||||
<loader id="n2_lr5d" name="card_2" xy="0,42" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" autoSize="true"/>
|
||||
<loader id="n1_lr5d" name="card_1" xy="0,84" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" autoSize="true"/>
|
||||
<group id="n4_lr5d" name="n4" xy="0,0" size="42,126"/>
|
||||
<graph id="n5_m25s" name="n5" xy="0,0" size="42,126" type="rect" lineColor="#00000000" fillColor="#4d000000">
|
||||
<gearDisplay controller="c1" pages="1"/>
|
||||
<relation target="n4_lr5d" sidePair="width-width,height-height"/>
|
||||
</graph>
|
||||
<graph id="n6_jl3i" name="n6" xy="0,0" size="42,42" type="rect" lineColor="#00000000" fillColor="#4d000000" corner="3">
|
||||
<graph id="n6_jl3i" name="n6" xy="0,84" size="42,42" type="rect" lineColor="#00000000" fillColor="#4d000000" corner="3">
|
||||
<gearDisplay controller="c2" pages="1"/>
|
||||
</graph>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="42,168">
|
||||
<displayList>
|
||||
<loader id="n1_lr5d" name="card_1" xy="0,0" size="42,42" group="n4_lr5d" url="ui://v6yvqp7wos7u50" autoSize="true"/>
|
||||
<loader id="n2_lr5d" name="card_2" xy="0,42" size="42,42" group="n4_lr5d" url="ui://v6yvqp7wos7u50" autoSize="true"/>
|
||||
<loader id="n3_lr5d" name="card_3" xy="0,84" size="42,42" group="n4_lr5d" url="ui://v6yvqp7wos7u50" autoSize="true"/>
|
||||
<loader id="n5_lr5d" name="card_4" xy="0,126" size="42,42" group="n4_lr5d" url="ui://v6yvqp7wos7u4z" autoSize="true"/>
|
||||
<loader id="n5_lr5d" name="card_4" xy="0,0" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" url="ui://v6yvqp7wfgao1d7" autoSize="true" clearOnPublish="true"/>
|
||||
<loader id="n3_lr5d" name="card_3" xy="0,42" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" url="ui://v6yvqp7wfgao1d7" autoSize="true" clearOnPublish="true"/>
|
||||
<loader id="n2_lr5d" name="card_2" xy="0,84" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" url="ui://v6yvqp7wfgao1d7" autoSize="true" clearOnPublish="true"/>
|
||||
<loader id="n1_lr5d" name="card_1" xy="0,126" pivot="0.5,0.5" size="42,42" group="n4_lr5d" rotation="180" url="ui://v6yvqp7wfgao1d7" autoSize="true" clearOnPublish="true"/>
|
||||
<group id="n4_lr5d" name="n4" xy="0,0" size="42,168"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="42,42">
|
||||
<displayList>
|
||||
<loader id="n0_lr5d" name="icon" xy="0,0" size="42,42" autoSize="true"/>
|
||||
<loader id="n0_lr5d" name="icon" xy="0,0" pivot="0.5,0.5" size="42,42" rotation="180" autoSize="true"/>
|
||||
</displayList>
|
||||
<transition name="t0">
|
||||
<item time="0" type="Scale" target="n0_lr5d" tween="true" startValue="1.5,1.5" endValue="1,1" duration="6"/>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 116 KiB |
|
|
@ -296,7 +296,6 @@
|
|||
<component id="f55qvt" name="RightPanel.xml" path="/component/Main/component/Folder/" exported="true"/>
|
||||
<image id="f55qvu" name="di00.png" path="/component/Main/images/" scale="9grid" scale9grid="53,3,31,48"/>
|
||||
<component id="f55qvv" name="Player_card_info_3.xml" path="/component/Main/component/" exported="true"/>
|
||||
<component id="f55qvw" name="Qipai.xml" path="/component/Main/" exported="true"/>
|
||||
<component id="f55qvx" name="Player_card_info_1.xml" path="/component/Main/component/" exported="true"/>
|
||||
<component id="f55qvy" name="PromptOutCard.xml" path="/component/Main/component/"/>
|
||||
<image id="f55qvz" name="xuxian.png" path="/component/Main/images/"/>
|
||||
|
|
@ -853,6 +852,8 @@
|
|||
<image id="99we1h0" name="daniao.png" path="/component/Main/images/"/>
|
||||
<component id="99we1h1" name="btn_niao.xml" path="/component/niao/" exported="true"/>
|
||||
<component id="99we1h2" name="btn_noniao.xml" path="/component/niao/" exported="true"/>
|
||||
<image id="aqd21h3" name="bgcard.png" path="/component/images/"/>
|
||||
<component id="yfzf1h4" name="Qipais.xml" path="/component/Main/" exported="true"/>
|
||||
</resources>
|
||||
<publish name="Main_RunBeard" path="..\wb_unity_pro\Assets\ART\base\main_zipai\ui" packageCount="2"/>
|
||||
</packageDescription>
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
<ProductVersion>10.0.20506</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<RootNamespace></RootNamespace>
|
||||
<ProjectGuid>{1BB6E50B-97AB-98D4-5DE7-DC96E627827E}</ProjectGuid>
|
||||
<ProjectGuid>{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<AssemblyName>Assembly-CSharp-Editor</AssemblyName>
|
||||
|
|
@ -292,9 +292,6 @@
|
|||
<Reference Include="UnityEditor">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/Managed/UnityEditor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.VR">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.Graphs">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/Managed/UnityEditor.Graphs.dll</HintPath>
|
||||
</Reference>
|
||||
|
|
@ -307,6 +304,9 @@
|
|||
<Reference Include="UnityEditor.Android.Extensions">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.UWP.Extensions">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.iOS.Extensions">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll</HintPath>
|
||||
</Reference>
|
||||
|
|
@ -314,31 +314,31 @@
|
|||
<HintPath>C:/Program Files (x86)/Microsoft Visual Studio Tools for Unity/16.0/Editor/SyntaxTree.VisualStudio.Unity.Bridge.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CString">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Assets/Plugins/CString.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/CString.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Debugger">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Assets/Plugins/Debugger.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/Debugger.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="taurus">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Assets/Plugins/taurus.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/taurus.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="taurus.unity">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Assets/Plugins/taurus.unity.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/taurus.unity.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="zxing.unity">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Assets/Plugins/zxing.unity.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/zxing.unity.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.Tracker">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Tracker.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Tracker.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.StandardEvents">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/PackageCache/com.unity.analytics@3.3.5/AnalyticsStandardEvents/Unity.Analytics.StandardEvents.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.analytics@3.3.5/AnalyticsStandardEvents/Unity.Analytics.StandardEvents.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="nunit.framework">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.iOS.Extensions.Xcode">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll</HintPath>
|
||||
|
|
@ -701,84 +701,84 @@
|
|||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.TestRunner">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEditor.TestRunner.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.TestRunner.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.TestRunner">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.TestRunner.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.TestRunner.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Timeline.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.Monetization">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.Monetization.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.Monetization.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="com.unity.multiplayer-hlapi.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.VSCode.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.Advertisements">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.Advertisements.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.Advertisements.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.Purchasing">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.Purchasing.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.Purchasing.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.Purchasing">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEditor.Purchasing.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.Purchasing.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.TextMeshPro.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.UI">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Timeline">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.CollabProxy.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="com.unity.multiplayer-weaver.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.XR.LegacyInputHelpers">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Rider.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.2D.Sprite.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.2D.Tilemap.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.SpatialTracking">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.SpatialTracking">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.TextMeshPro">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.DataPrivacy">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.XR.LegacyInputHelpers">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.UI">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="com.unity.multiplayer-hlapi.Runtime">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="Assembly-CSharp.csproj">
|
||||
<Project>{088872C2-E3F4-794F-0243-B19515B0AED0}</Project>
|
||||
<Project>{447B58C1-7AFB-29A7-57FF-8787F9E109CD}</Project>
|
||||
<Name>Assembly-CSharp</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<ProductVersion>10.0.20506</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<RootNamespace></RootNamespace>
|
||||
<ProjectGuid>{088872C2-E3F4-794F-0243-B19515B0AED0}</ProjectGuid>
|
||||
<ProjectGuid>{447B58C1-7AFB-29A7-57FF-8787F9E109CD}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<AssemblyName>Assembly-CSharp</AssemblyName>
|
||||
|
|
@ -64,7 +64,386 @@
|
|||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\BlendMode.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\CaptureCamera.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Container.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\DisplayObject.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\DisplayOptions.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\GoWrapper.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\BoxColliderHitTest.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\ColliderHitTest.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\HitTestContext.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\IHitTest.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\MeshColliderHitTest.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\PixelHitTest.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\HitTest\RectHitTest.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Image.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\MaterialManager.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\CompositeMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\EllipseMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\FillMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\LineMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\MeshFactory.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\PlaneMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\PolygonMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\RectMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\RegularPolygonMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\RoundedRectMesh.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Mesh\VertexBuffer.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\MovieClip.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\NAudioClip.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\NGraphics.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\NMaterial.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\NTexture.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\ShaderConfig.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Shape.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Stage.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\StageCamera.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\StageEngine.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Stats.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\BaseFont.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\BitmapFont.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\CopyPastePatch.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\DynamicFont.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\Emoji.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\FontManager.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\IKeyboard.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\InputTextField.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\RTLSupport.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\RichTextField.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\SelectionShape.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\TextField.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\TextFormat.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\TouchScreenKeyboard.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\Text\TypingEffect.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Core\UpdateContext.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Event\EventBridge.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Event\EventContext.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Event\EventDispatcher.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Event\EventListener.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Event\IEventDispatcher.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Event\InputEvent.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Filter\BlurFilter.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Filter\ColorFilter.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Filter\IFilter.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Gesture\LongPressGesture.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Gesture\PinchGesture.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Gesture\RotationGesture.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Gesture\SwipeGesture.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\EaseManager.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\EaseType.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\GPath.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\GTween.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\GTweener.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\TweenManager.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\TweenPropType.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Tween\TweenValue.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Action\ChangePageAction.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Action\ControllerAction.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Action\PlayTransitionAction.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\AsyncCreationHelper.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Controller.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\DragDropManager.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\EMRenderSupport.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\FieldTypes.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GButton.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GComboBox.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GComponent.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GGraph.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GGroup.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GImage.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GLabel.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GList.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GLoader.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GMovieClip.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GObject.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GObjectPool.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GProgressBar.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GRichTextField.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GRoot.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GScrollBar.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GSlider.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GTextField.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\GTextInput.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearAnimation.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearBase.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearColor.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearDisplay.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearIcon.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearLook.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearSize.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearText.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\GearXY.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\IAnimationGear.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Gears\IColorGear.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\IUISource.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Margin.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\PackageItem.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\PageOption.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\PopupMenu.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\RelationItem.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Relations.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\ScrollPane.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Transition.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\TranslationHelper.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Tree\ITreeListener.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Tree\TreeNode.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Tree\TreeView.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\UIConfig.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\UIContentScaler.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\UIObjectFactory.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\UIPackage.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\UIPainter.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\UIPanel.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\UI\Window.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\ByteBuffer.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlButton.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlElement.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlImage.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlInput.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlLink.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlPageContext.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlParseOptions.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlParser.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\HtmlSelect.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\IHtmlObject.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Html\IHtmlPageContext.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\Timers.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\ToolSet.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\UBBParser.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\XML.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\XMLIterator.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\XMLList.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\XMLUtils.cs" />
|
||||
<Compile Include="Assets\Modules\FairyGUI\Scripts\Utils\ZipReader.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\LuaInterface_EventObjectWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\LuaInterface_LuaConstructorWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\LuaInterface_LuaFieldWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\LuaInterface_LuaMethodWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\LuaInterface_LuaOutWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\LuaInterface_LuaPropertyWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_ArrayWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_Generic_DictionaryWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_Generic_Dictionary_KeyCollectionWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_Generic_Dictionary_ValueCollectionWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_Generic_KeyValuePairWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_Generic_ListWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_IEnumeratorWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_Collections_ObjectModel_ReadOnlyCollectionWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_DelegateWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_EnumWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_NullObjectWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_ObjectWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_StringWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\System_TypeWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\UnityEngine_CoroutineWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\BaseType\UnityEngine_ObjectWrap.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaAttributes.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaBaseRef.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaBeatEvent.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaDLL.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaEvent.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaException.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaFileUtils.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaFunction.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaMatchType.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaMethodCache.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaMisc.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaStackOp.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaState.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaStatePtr.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaStatic.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaTable.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaThread.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaUnityLibs.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\LuaValueType.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\ObjectPool.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\ObjectTranslator.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\ToLua.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\TypeChecker.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Core\TypeTraits.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Injection\LuaInjectionStation.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Misc\LuaClient.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Misc\LuaCoroutine.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Misc\LuaLooper.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Misc\LuaProfiler.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Misc\LuaResLoader.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Reflection\LuaConstructor.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Reflection\LuaField.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Reflection\LuaMethod.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Reflection\LuaProperty.cs" />
|
||||
<Compile Include="Assets\Modules\ToLua\Reflection\LuaReflection.cs" />
|
||||
<Compile Include="Assets\Scripts\AppVest.cs" />
|
||||
<Compile Include="Assets\Scripts\Core\AssetConfig.cs" />
|
||||
<Compile Include="Assets\Scripts\Core\DSAnimationCurve.cs" />
|
||||
<Compile Include="Assets\Scripts\Core\LuaNetClient.cs" />
|
||||
<Compile Include="Assets\Scripts\Core\ResourcesManager.cs" />
|
||||
<Compile Include="Assets\Scripts\DSLuaClient.cs" />
|
||||
<Compile Include="Assets\Scripts\DxyVest.cs" />
|
||||
<Compile Include="Assets\Scripts\Game\ExceptionReporter.cs" />
|
||||
<Compile Include="Assets\Scripts\Game\TestConsole.cs" />
|
||||
<Compile Include="Assets\Scripts\Game\Utils.cs" />
|
||||
<Compile Include="Assets\Scripts\GameApplication.cs" />
|
||||
<Compile Include="Assets\Scripts\HotUpdate.cs" />
|
||||
<Compile Include="Assets\Scripts\Log\FileManager.cs" />
|
||||
<Compile Include="Assets\Scripts\Log\Log.cs" />
|
||||
<Compile Include="Assets\Scripts\Log\LogManager.cs" />
|
||||
<Compile Include="Assets\Scripts\Log\MonoSingleton.cs" />
|
||||
<Compile Include="Assets\Scripts\Log\PathDefine.cs" />
|
||||
<Compile Include="Assets\Scripts\Log\Singleton.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\BuglyPlugins\BuglyAgent.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\BuglyPlugins\BuglyCallback.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\BuglyPlugins\BuglyInit.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\GPSAddress.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\PlatformAndroid.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\PlatformIOS.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\PlatformWindows.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\SDKCallBack.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\ShareQRCodePicture.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\TakeScreenShot.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\Voice.cs" />
|
||||
<Compile Include="Assets\Scripts\Platform\WXData.cs" />
|
||||
<Compile Include="Assets\Scripts\VerCheck.cs" />
|
||||
<Compile Include="Assets\Source\Generate\DSAnimationCurveWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\DelegateFactory.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_BaseFontWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_BlurFilterWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_ColorFilterWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_ContainerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_ControllerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_DisplayObjectWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_DynamicFontWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_EventContextWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_EventDispatcherWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_EventListenerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_FontManagerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GButtonWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GComboBoxWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GComponentWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GGraphWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GGroupWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GImageWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GLabelWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GListWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GLoaderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GMovieClipWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GObjectPoolWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GObjectWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GProgressBarWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GRichTextFieldWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GRootWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GSliderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GTextFieldWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GTextInputWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GTweenerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearAnimationWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearBaseWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearColorWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearDisplayWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearIconWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearLookWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearSizeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearTextWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GearXYWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_GoWrapperWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_ImageWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_InputEventWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_NAudioClipWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_NTextureWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_PopupMenuWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_RelationTypeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_RelationsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_ScrollPaneWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_StageWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_TextFieldWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_TextFormatWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_TimersWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_TransitionWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_UIConfigWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_UIObjectFactoryWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_UIPackageWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\FairyGUI_WindowWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\GameApplicationWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\Game_UtilsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\HotupdateWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\LuaBinder.cs" />
|
||||
<Compile Include="Assets\Source\Generate\QRCodePictureWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\System_IO_DirectoryWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\System_IO_FileWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\TakeScreenShotWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AnimationBlendModeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AnimationClipWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AnimationStateWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AnimationWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AnimatorWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ApplicationWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AssetBundleWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AsyncOperationWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AudioBehaviourWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AudioClipWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_AudioSourceWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_BehaviourWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_BoxColliderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_CameraClearFlagsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_CameraWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_CapsuleColliderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_CharacterControllerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ColliderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ComponentWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_GameObjectWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_InputWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_KeyCodeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_LightTypeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_LightWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_MaterialWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_MeshColliderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_MeshRendererWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_MonoBehaviourWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_NetworkReachabilityWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ParticleSystemWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_PhysicsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_PlayModeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_PlayerPrefsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_QualitySettingsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_QueueModeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_RenderSettingsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_RenderTextureWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_RendererWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ResourcesWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_RigidbodyWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_RuntimePlatformWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ScreenWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ScriptableObjectWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_ShaderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_SkinWeightsWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_SkinnedMeshRendererWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_SleepTimeoutWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_SpaceWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_SphereColliderWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_SystemInfoWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_Texture2DWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_TextureWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_TimeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_TrackedReferenceWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_TransformWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_WWWWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\UnityEngine_WrapModeWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\VersionWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\VoiceWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\taurus_client_NetManagerWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\taurus_unity_LuaNetClientWrap.cs" />
|
||||
<Compile Include="Assets\Source\Generate\taurus_unity_ResourcesManagerWrap.cs" />
|
||||
<Compile Include="Assets\Source\LuaConst.cs" />
|
||||
<None Include="Assets\Modules\ToLua\Injection\InjectionBlackList.txt" />
|
||||
<None Include="Assets\Modules\FairyGUI\Resources\Shaders\FairyGUI-Text.shader" />
|
||||
<None Include="Assets\bin\Data\Managed\etc\mono\mconfig\config.xml" />
|
||||
<None Include="Assets\Modules\FairyGUI\Resources\Shaders\FairyGUI-Image.shader" />
|
||||
<None Include="Assets\link.xml" />
|
||||
<None Include="Assets\Modules\ToLua\readme.txt" />
|
||||
<None Include="Assets\Modules\FairyGUI\Resources\Shaders\AddOn\FairyGUI-BlurFilter.shader" />
|
||||
<None Include="Assets\Modules\ToLua\Injection\InjectionBridgeEditorInfo.xml" />
|
||||
<None Include="Assets\Modules\ToLua\Injection\LuaInjectionSkipPaths.txt" />
|
||||
<None Include="Assets\Modules\FairyGUI\Resources\Shaders\FairyGUI-BMFont.shader" />
|
||||
<Reference Include="UnityEngine">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
|
||||
</Reference>
|
||||
|
|
@ -242,6 +621,30 @@
|
|||
<Reference Include="UnityEditor">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/Managed/UnityEditor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CString">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/CString.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Debugger">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/Debugger.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="taurus">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/taurus.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="taurus.unity">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/taurus.unity.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="zxing.unity">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Assets/Plugins/zxing.unity.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.Editor">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.Tracker">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Tracker.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.StandardEvents">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/PackageCache/com.unity.analytics@3.3.5/AnalyticsStandardEvents/Unity.Analytics.StandardEvents.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.iOS.Extensions.Xcode">
|
||||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll</HintPath>
|
||||
</Reference>
|
||||
|
|
@ -603,31 +1006,73 @@
|
|||
<HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Timeline.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.Monetization">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.Monetization.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="com.unity.multiplayer-hlapi.Editor">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.VSCode.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.Advertisements">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.Advertisements.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.Purchasing">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.Purchasing.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.Purchasing">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.Purchasing.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.TextMeshPro.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.UI">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Timeline">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.CollabProxy.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="com.unity.multiplayer-weaver.Editor">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.XR.LegacyInputHelpers">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Rider.Editor">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.2D.Sprite.Editor">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.2D.Tilemap.Editor">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.SpatialTracking">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEngine.SpatialTracking">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.TextMeshPro">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Analytics.DataPrivacy">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.XR.LegacyInputHelpers">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="UnityEditor.UI">
|
||||
<HintPath>D:/game2/fk101/wb_unity_pro_2/Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="com.unity.multiplayer-hlapi.Runtime">
|
||||
<HintPath>D:/project/yunque/wb_unity_pro/Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup></ItemGroup>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 7.0 KiB |