Commit d2bd6394 d2bd63943686ebf483894488767761ebf2fa19e4 by jinwawa

0513

1 parent 50f2e36f
Showing 37 changed files with 248 additions and 207 deletions
This diff could not be displayed because it is too large.
<?xml version="1.0" encoding="UTF-8"?>
<VSPerformanceSession Version="1.00">
<Options>
<Solution>xhx.sln</Solution>
<CollectionMethod>Sampling</CollectionMethod>
<AllocationMethod>None</AllocationMethod>
<AddReport>true</AddReport>
<ResourceBasedAnalysisSelected>true</ResourceBasedAnalysisSelected>
<UniqueReport>Timestamp</UniqueReport>
<SamplingMethod>Cycles</SamplingMethod>
<CycleCount>10000000</CycleCount>
<PageFaultCount>10</PageFaultCount>
<SysCallCount>10</SysCallCount>
<SamplingCounter Name="" ReloadValue="00000000000f4240" DisplayName="" />
<RelocateBinaries>false</RelocateBinaries>
<HardwareCounters EnableHWCounters="false" />
<EtwSettings />
<PdhSettings>
<PdhCountersEnabled>false</PdhCountersEnabled>
<PdhCountersRate>500</PdhCountersRate>
<PdhCounters>
<PdhCounter>\Memory\Pages/sec</PdhCounter>
<PdhCounter>\PhysicalDisk(_Total)\Avg. Disk Queue Length</PdhCounter>
<PdhCounter>\Processor(_Total)\% Processor Time</PdhCounter>
</PdhCounters>
</PdhSettings>
</Options>
<ExcludeSmallFuncs>true</ExcludeSmallFuncs>
<InteractionProfilingEnabled>false</InteractionProfilingEnabled>
<JScriptProfilingEnabled>false</JScriptProfilingEnabled>
<PreinstrumentEvent>
<InstrEventExclude>false</InstrEventExclude>
</PreinstrumentEvent>
<PostinstrumentEvent>
<InstrEventExclude>false</InstrEventExclude>
</PostinstrumentEvent>
<Binaries>
<Binary>
<Path>..\..\runtime\win32\GuandanAndroid.exe</Path>
<ArgumentTimestamp>01/01/0001 00:00:00</ArgumentTimestamp>
<Instrument>true</Instrument>
<Sample>true</Sample>
<ExternalWebsite>false</ExternalWebsite>
<InteractionProfilingEnabled>false</InteractionProfilingEnabled>
<IsLocalJavascript>false</IsLocalJavascript>
<IsWindowsStoreApp>false</IsWindowsStoreApp>
<IsWWA>false</IsWWA>
<LaunchProject>true</LaunchProject>
<OverrideProjectSettings>false</OverrideProjectSettings>
<LaunchMethod>Executable</LaunchMethod>
<ExecutablePath>..\..\runtime\win32\GuandanAndroid.exe</ExecutablePath>
<StartupDirectory>
</StartupDirectory>
<Arguments>
</Arguments>
<NetAppHost>IIS</NetAppHost>
<NetBrowser>InternetExplorer</NetBrowser>
<ExcludeSmallFuncs>true</ExcludeSmallFuncs>
<JScriptProfilingEnabled>false</JScriptProfilingEnabled>
<PreinstrumentEvent>
<InstrEventExclude>false</InstrEventExclude>
</PreinstrumentEvent>
<PostinstrumentEvent>
<InstrEventExclude>false</InstrEventExclude>
</PostinstrumentEvent>
</Binary>
</Binaries>
<Reports>
<Report>
<Path>GuandanAndroid190513.vspx</Path>
</Report>
</Reports>
<Launches>
<Binary>
<Path>..\..\runtime\win32\GuandanAndroid.exe</Path>
</Binary>
</Launches>
</VSPerformanceSession>
\ No newline at end of file
No preview for this file type
call xcopy %cd%\res D:\AndroidProject\XhxAndroid_ws\assets\res /E/I/Y
call cocos luacompile -s %cd%\src -d D:\AndroidProject\XhxAndroid_ws\assets\src -e -k tpdrawgdanjue -b tpdrawgd
call xcopy %cd%\src D:\AndroidProject\XhxAndroid_ws\assets\src /E/I/Y
xcopy %cd%\res D:\AndroidProject\XhxAndroid_ws\assets\res /E/I/Y
cocos luacompile -s %cd%\src -d D:\AndroidProject\XhxAndroid_ws\assets\src -e -k tpdrawgdanjue -b tpdrawgd
xcopy %cd%\src D:\AndroidProject\XhxAndroid_ws\assets\src /E/I/Y
......
This diff could not be displayed because it is too large.

21.2 KB | W: | H:

10.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.4 KB | W: | H:

4.75 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.87 KB | W: | H:

4.72 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.06 KB | W: | H:

2.21 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
......@@ -90,7 +90,8 @@ function MainScene:onCreate(params)
self.nodes[2] = {self.btn_role};
self:updateSelectedState(self.btn_task);
--self:updateSelectedState(self.btn_task);
self:updateSelectedState(self.btn_ylc); --修改光标为游乐场
local function onNodeEventHandler(event)
if event == "enter" then
......
......@@ -65,8 +65,11 @@ function FriendView:init()
if self.uid ~= UserModel.user_info.uid then
local game_score = self.user_home.game_score;
self.btn_back:getChildByName("txt"):setString("回家");
self.btn_back:getChildByName("selected"):getChildByName("txt"):setString("回家");
--self.btn_back:getChildByName("txt"):setString("回家");
--self.btn_back:getChildByName("selected"):getChildByName("txt"):setString("回家");
self.btn_back:loadTextureNormal("res/ui/friend/bg_friend_back.png");
self.btn_back:loadTexturePressed("res/ui/dress/bg_friend_back.png");
self.btn_back:getChildByName("selected"):setSpriteFrame(cc.Sprite:create("res/ui/friend/bg_friend_back.png"):getSpriteFrame());
table.sort(game_score,function (aa,bb)
return aa.val1 > bb.val1;
......@@ -322,10 +325,14 @@ function FriendView:onItemOver(ref,event)
local children = self.scrollView:getChildren();
for i,v in ipairs(children) do
local btn_del = v:getChildByName("btn_del");
local title_tip=v:getChildByName("tip");
if btn_del then
btn_del:setVisible(false);
table.removebyvalue(self.nodes[#self.nodes],btn_del);
end
if title_tip then
title_tip:setVisible(false);
end
if v == item then
v:setLocalZOrder(1);
else
......@@ -334,6 +341,7 @@ function FriendView:onItemOver(ref,event)
end
local btn_del = item:getChildByName("btn_del");
local title_tip=item:getChildByName("tip");
btn_del.uid = ref.uid;
if btn_del then
btn_del:setVisible(true);
......@@ -345,6 +353,9 @@ function FriendView:onItemOver(ref,event)
self:updatePage();
end
end
if title_tip then
title_tip:setVisible(true);
end
end
function FriendView:onFriendItemOut()
......@@ -355,6 +366,10 @@ function FriendView:onFriendItemOut()
btn_del:setVisible(false);
table.removebyvalue(self.nodes[#self.nodes],btn_del);
end
local title_tip=v:getChildByName("tip");
if title_tip then
title_tip:setVisible(false);
end
end
end
......
......@@ -19,4 +19,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(Performance) = preSolution
HasPerformanceSessions = true
EndGlobalSection
EndGlobal
......
......@@ -47,7 +47,7 @@
<FileData Type="Normal" Path="ui/Activity/bg_welfare.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="Image_56" ActionTag="-523748571" Tag="981" IconVisible="False" LeftMargin="-76.0279" RightMargin="409.0279" TopMargin="73.0198" BottomMargin="-45.0199" LeftEage="157" RightEage="157" TopEage="172" BottomEage="172" Scale9OriginX="157" Scale9OriginY="172" Scale9Width="163" Scale9Height="178" ctype="ImageViewObjectData">
<AbstractNodeData Name="Image_56" ActionTag="-523748571" Tag="981" IconVisible="False" LeftMargin="-76.0279" RightMargin="409.0279" TopMargin="73.0199" BottomMargin="-45.0199" LeftEage="157" RightEage="157" TopEage="172" BottomEage="172" Scale9OriginX="157" Scale9OriginY="172" Scale9Width="163" Scale9Height="178" ctype="ImageViewObjectData">
<Size X="477.0000" Y="522.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="162.4721" Y="215.9801" />
......@@ -67,7 +67,7 @@
<PreSize X="0.5160" Y="0.9491" />
<FileData Type="Normal" Path="ui/Activity/bg_gift_one_year.png" Plist="" />
</AbstractNodeData>
<AbstractNodeData Name="btn_vip_month" ActionTag="853368770" Tag="333" IconVisible="False" LeftMargin="-64.2716" RightMargin="670.2716" TopMargin="465.5510" BottomMargin="9.4491" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="174" Scale9Height="53" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_vip_month" ActionTag="853368770" Tag="333" IconVisible="False" LeftMargin="-64.2716" RightMargin="670.2716" TopMargin="465.5509" BottomMargin="9.4491" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="174" Scale9Height="53" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="204.0000" Y="75.0000" />
<Children>
<AbstractNodeData Name="selected" Visible="False" ActionTag="455281612" Tag="222" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
......@@ -95,7 +95,7 @@
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="btn_vip_lianxu" ActionTag="518028505" Tag="69" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="191.5784" RightMargin="418.4216" TopMargin="456.3756" BottomMargin="12.6244" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="170" Scale9Height="59" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_vip_lianxu" ActionTag="518028505" Tag="69" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="191.6000" RightMargin="418.4000" TopMargin="456.3756" BottomMargin="12.6244" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="170" Scale9Height="59" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="200.0000" Y="81.0000" />
<Children>
<AbstractNodeData Name="selected" Visible="False" ActionTag="-330155765" Tag="70" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
......@@ -111,7 +111,7 @@
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="291.5784" Y="53.1244" />
<Position X="291.6000" Y="53.1244" />
<Scale ScaleX="0.7000" ScaleY="0.7000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.3600" Y="0.0966" />
......@@ -123,7 +123,7 @@
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="btn_vip_month_single" ActionTag="-1238527809" Tag="79" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="77.2625" RightMargin="570.7374" TopMargin="467.6008" BottomMargin="22.3992" TouchEnable="True" FontSize="26" ButtonText="9.9元包月" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="132" Scale9Height="38" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_vip_month_single" ActionTag="-1238527809" Tag="79" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="77.2740" RightMargin="570.7260" TopMargin="467.6008" BottomMargin="22.3992" TouchEnable="True" FontSize="26" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="132" Scale9Height="38" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="162.0000" Y="60.0000" />
<Children>
<AbstractNodeData Name="selected" Visible="False" ActionTag="-203226842" Tag="80" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
......@@ -137,9 +137,21 @@
<FileData Type="Normal" Path="common/btn_green02_s.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="Text_1" ActionTag="1111239047" Tag="667" IconVisible="False" LeftMargin="22.9947" RightMargin="23.0053" TopMargin="13.1593" BottomMargin="15.8407" FontSize="26" LabelText="9.9元包月" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="116.0000" Y="31.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="80.9947" Y="31.3407" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="165" G="42" B="42" />
<PrePosition X="0.5000" Y="0.5223" />
<PreSize X="0.7160" Y="0.5167" />
<FontResource Type="Normal" Path="ui/font/fangzhengcuyuan.ttf" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="158.2625" Y="52.3992" />
<Position X="158.2740" Y="52.3992" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.1954" Y="0.0953" />
......@@ -202,7 +214,7 @@
<FileData Type="Normal" Path="ui/Activity/achievement_yilingqu.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="btn_vip_year" ActionTag="1349290642" Tag="485" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="561.6376" RightMargin="86.3624" TopMargin="470.3174" BottomMargin="19.6826" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="132" Scale9Height="38" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_vip_year" ActionTag="1349290642" Tag="485" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="561.6540" RightMargin="86.3460" TopMargin="470.3174" BottomMargin="19.6826" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="132" Scale9Height="38" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="162.0000" Y="60.0000" />
<Children>
<AbstractNodeData Name="selected" Visible="False" ActionTag="806992118" Tag="223" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
......@@ -241,7 +253,7 @@
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="642.6376" Y="49.6826" />
<Position X="642.6540" Y="49.6826" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.7934" Y="0.0903" />
......@@ -341,7 +353,7 @@
<EndColor A="255" R="255" G="255" B="255" />
<ColorVector ScaleY="1.0000" />
</AbstractNodeData>
<AbstractNodeData Name="m_item_2" ActionTag="1456758804" Tag="224" IconVisible="False" LeftMargin="187.9820" RightMargin="522.0181" TopMargin="212.9589" BottomMargin="237.0411" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData">
<AbstractNodeData Name="m_item_2" ActionTag="1456758804" Tag="224" IconVisible="False" LeftMargin="187.9820" RightMargin="522.0180" TopMargin="212.9589" BottomMargin="237.0411" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData">
<Size X="100.0000" Y="100.0000" />
<Children>
<AbstractNodeData Name="icon" ActionTag="1085027278" Tag="237" IconVisible="False" LeftMargin="11.3585" RightMargin="8.6415" TopMargin="7.2833" BottomMargin="12.7167" ctype="SpriteObjectData">
......@@ -455,7 +467,7 @@
<EndColor A="255" R="255" G="255" B="255" />
<ColorVector ScaleY="1.0000" />
</AbstractNodeData>
<AbstractNodeData Name="y_item_3" ActionTag="42590575" Tag="233" IconVisible="False" LeftMargin="559.5492" RightMargin="150.4508" TopMargin="249.6339" BottomMargin="200.3662" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData">
<AbstractNodeData Name="y_item_3" ActionTag="42590575" Tag="233" IconVisible="False" LeftMargin="559.5492" RightMargin="150.4508" TopMargin="249.6338" BottomMargin="200.3662" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData">
<Size X="100.0000" Y="100.0000" />
<Children>
<AbstractNodeData Name="icon" ActionTag="1181012539" Tag="240" IconVisible="False" LeftMargin="9.9999" RightMargin="10.0001" TopMargin="7.2831" BottomMargin="12.7169" ctype="SpriteObjectData">
......
......@@ -19,24 +19,24 @@
<EndColor A="255" R="255" G="255" B="255" />
<ColorVector ScaleY="1.0000" />
</AbstractNodeData>
<AbstractNodeData Name="bg_login" ActionTag="1058243631" Tag="24" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="617.0000" RightMargin="617.0000" TopMargin="337.0000" BottomMargin="337.0000" ctype="SpriteObjectData">
<AbstractNodeData Name="bg_login" ActionTag="1058243631" Tag="24" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="1280.0000" Y="720.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="640.0000" Y="360.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="0.0359" Y="0.0639" />
<PreSize X="1.0000" Y="1.0000" />
<FileData Type="Normal" Path="bg/bg_loading.jpg" Plist="" />
<BlendFunc Src="770" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="panel" ActionTag="-1040660810" Tag="20" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData">
<Size X="1280.0000" Y="720.0000" />
<Children>
<AbstractNodeData Name="btn_login_yk" ActionTag="1043641405" Tag="84" IconVisible="False" LeftMargin="290.5952" RightMargin="668.4048" TopMargin="430.3244" BottomMargin="163.6756" TouchEnable="True" FontSize="26" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="291" Scale9Height="104" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_login_yk" ActionTag="1043641405" Tag="84" IconVisible="False" LeftMargin="290.5955" RightMargin="668.4045" TopMargin="565.3218" BottomMargin="28.6782" TouchEnable="True" FontSize="26" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="291" Scale9Height="104" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="321.0000" Y="126.0000" />
<Children>
<AbstractNodeData Name="selected" ActionTag="-1190160652" Tag="983" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<AbstractNodeData Name="selected" Visible="False" ActionTag="-1190160652" Tag="983" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="321.0000" Y="126.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="160.5000" Y="63.0000" />
......@@ -49,10 +49,10 @@
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="451.0952" Y="226.6756" />
<Position X="451.0955" Y="91.6782" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.3524" Y="0.3148" />
<PrePosition X="0.3524" Y="0.1273" />
<PreSize X="0.2508" Y="0.1750" />
<FontResource Type="Normal" Path="ui/font/yuanti.ttf" Plist="" />
<TextColor A="255" R="96" G="41" B="0" />
......@@ -62,7 +62,7 @@
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="btn_login_wx" ActionTag="512061869" Tag="28" IconVisible="False" LeftMargin="679.2761" RightMargin="279.7239" TopMargin="430.3235" BottomMargin="163.6765" TouchEnable="True" FontSize="26" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="291" Scale9Height="104" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_login_wx" ActionTag="512061869" Tag="28" IconVisible="False" LeftMargin="680.3325" RightMargin="278.6675" TopMargin="565.1310" BottomMargin="28.8690" TouchEnable="True" FontSize="26" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="291" Scale9Height="104" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="321.0000" Y="126.0000" />
<Children>
<AbstractNodeData Name="selected" Visible="False" ActionTag="1750464100" Tag="984" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
......@@ -78,10 +78,10 @@
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="839.7761" Y="226.6765" />
<Position X="840.8325" Y="91.8690" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.6561" Y="0.3148" />
<PrePosition X="0.6569" Y="0.1276" />
<PreSize X="0.2508" Y="0.1750" />
<FontResource Type="Normal" Path="ui/font/yuanti.ttf" Plist="" />
<TextColor A="255" R="96" G="41" B="0" />
......
......@@ -2,6 +2,9 @@
<Properties>
<Item Key="GuidesList">
<Value ctype="GuidesData">
<HorizontalList>
<Guides Direction="Horizontal" Position="154.8665" />
</HorizontalList>
<VerticalList>
<Guides Position="639.5614" />
</VerticalList>
......
......@@ -20,25 +20,25 @@
<AbstractNodeData Name="btn" ActionTag="672695197" Tag="61" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="70" Scale9Height="83" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="160.0000" Y="180.0000" />
<Children>
<AbstractNodeData Name="bg" ActionTag="432026145" Tag="72" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="-15.0000" RightMargin="-15.0000" TopMargin="-16.0000" BottomMargin="-16.0000" ctype="SpriteObjectData">
<Size X="190.0000" Y="212.0000" />
<AbstractNodeData Name="bg" ActionTag="432026145" Tag="72" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="-13.0000" RightMargin="-13.0000" TopMargin="-15.0000" BottomMargin="-15.0000" ctype="SpriteObjectData">
<Size X="186.0000" Y="210.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="80.0000" Y="90.0000" />
<Scale ScaleX="0.8500" ScaleY="0.8500" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="1.1875" Y="1.1778" />
<PreSize X="1.1625" Y="1.1667" />
<FileData Type="Normal" Path="ui/friend/bg_friend_item.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="selected" ActionTag="-1222914437" Tag="53" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="-15.0000" RightMargin="-15.0000" TopMargin="-16.0000" BottomMargin="-16.0000" ctype="SpriteObjectData">
<Size X="190.0000" Y="212.0000" />
<AbstractNodeData Name="selected" ActionTag="-1222914437" Tag="53" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="-13.0000" RightMargin="-13.0000" TopMargin="-15.0000" BottomMargin="-15.0000" ctype="SpriteObjectData">
<Size X="186.0000" Y="210.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="80.0000" Y="90.0000" />
<Scale ScaleX="0.8500" ScaleY="0.8500" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="1.1875" Y="1.1778" />
<PreSize X="1.1625" Y="1.1667" />
<FileData Type="Normal" Path="ui/friend/bg_friend_item_s.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
......@@ -81,28 +81,28 @@
<EndColor A="255" R="255" G="255" B="255" />
<ColorVector ScaleY="1.0000" />
</AbstractNodeData>
<AbstractNodeData Name="bg_lv" ActionTag="-1472653543" Tag="554" IconVisible="False" LeftMargin="-4.9912" RightMargin="110.9912" TopMargin="-5.0749" BottomMargin="131.0749" ctype="SpriteObjectData">
<Size X="54.0000" Y="54.0000" />
<AbstractNodeData Name="bg_lv" ActionTag="-1472653543" Tag="554" IconVisible="False" LeftMargin="-7.9912" RightMargin="107.9912" TopMargin="-8.0749" BottomMargin="128.0749" ctype="SpriteObjectData">
<Size X="60.0000" Y="60.0000" />
<Children>
<AbstractNodeData Name="Text_3" ActionTag="1608330979" Tag="58" IconVisible="False" LeftMargin="17.9304" RightMargin="16.0696" TopMargin="3.7995" BottomMargin="30.2005" FontSize="20" LabelText="Lv" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<AbstractNodeData Name="Text_3" ActionTag="1608330979" Tag="58" IconVisible="False" LeftMargin="18.9304" RightMargin="21.0696" TopMargin="9.7995" BottomMargin="30.2005" FontSize="20" LabelText="Lv" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="20.0000" Y="20.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="27.9304" Y="40.2005" />
<Position X="28.9304" Y="40.2005" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5172" Y="0.7445" />
<PreSize X="0.3704" Y="0.3704" />
<CColor A="255" R="255" G="165" B="0" />
<PrePosition X="0.4822" Y="0.6700" />
<PreSize X="0.3333" Y="0.3333" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="txt_lv" ActionTag="1330375788" Tag="59" IconVisible="False" LeftMargin="22.1008" RightMargin="21.8992" TopMargin="25.0632" BottomMargin="8.9368" FontSize="20" LabelText="0" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<AbstractNodeData Name="txt_lv" ActionTag="1330375788" Tag="59" IconVisible="False" LeftMargin="24.1009" RightMargin="25.8991" TopMargin="29.0631" BottomMargin="10.9369" FontSize="20" LabelText="0" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="10.0000" Y="20.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="27.1008" Y="18.9368" />
<Position X="29.1009" Y="20.9369" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5019" Y="0.3507" />
<PreSize X="0.1852" Y="0.3704" />
<PrePosition X="0.4850" Y="0.3489" />
<PreSize X="0.1667" Y="0.3333" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
......@@ -112,37 +112,45 @@
<Scale ScaleX="0.8500" ScaleY="0.8500" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.1376" Y="0.8782" />
<PreSize X="0.3375" Y="0.3000" />
<PreSize X="0.3750" Y="0.3333" />
<FileData Type="Normal" Path="ui/friend/bg_friend_lv.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="btn_del" ActionTag="-1211988783" VisibleForFrame="False" Tag="223" IconVisible="False" LeftMargin="0.6466" RightMargin="3.3534" TopMargin="187.5382" BottomMargin="-65.5382" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="126" Scale9Height="36" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="tip" ActionTag="1389603593" Tag="431" IconVisible="False" LeftMargin="-21.9916" RightMargin="-22.0084" TopMargin="176.4960" BottomMargin="-35.4960" LeftEage="67" RightEage="67" TopEage="12" BottomEage="12" Scale9OriginX="67" Scale9OriginY="12" Scale9Width="70" Scale9Height="15" ctype="ImageViewObjectData">
<Size X="204.0000" Y="39.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="80.0084" Y="-15.9960" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5001" Y="-0.0889" />
<PreSize X="1.2750" Y="0.2167" />
<FileData Type="Normal" Path="ui/friend/bg_friend_tip_title.png" Plist="" />
</AbstractNodeData>
<AbstractNodeData Name="btn_del" ActionTag="-1211988783" Tag="223" IconVisible="False" LeftMargin="1.6505" RightMargin="2.3495" TopMargin="216.5365" BottomMargin="-94.5365" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="126" Scale9Height="36" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="156.0000" Y="58.0000" />
<Children>
<AbstractNodeData Name="txt" ActionTag="363492436" Tag="225" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="28.5000" RightMargin="28.5000" TopMargin="13.0000" BottomMargin="13.0000" FontSize="24" LabelText="删除好友" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="99.0000" Y="32.0000" />
<AbstractNodeData Name="txt" ActionTag="363492436" Tag="225" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="30.0000" RightMargin="30.0000" TopMargin="17.0000" BottomMargin="17.0000" FontSize="24" LabelText="删除好友" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="96.0000" Y="24.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="78.0000" Y="29.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="22" G="105" B="0" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="0.6346" Y="0.5517" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.6154" Y="0.4138" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="selected" ActionTag="-1214811307" Tag="224" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<AbstractNodeData Name="selected" Visible="False" ActionTag="-1214811307" Tag="224" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="156.0000" Y="58.0000" />
<Children>
<AbstractNodeData Name="txt" ActionTag="1735446362" Tag="226" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="28.5000" RightMargin="28.5000" TopMargin="13.0000" BottomMargin="13.0000" FontSize="24" LabelText="删除好友" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="99.0000" Y="32.0000" />
<AbstractNodeData Name="txt" ActionTag="1735446362" Tag="226" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="30.0000" RightMargin="30.0000" TopMargin="17.0000" BottomMargin="17.0000" FontSize="24" LabelText="删除好友" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="96.0000" Y="24.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="78.0000" Y="29.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="179" G="61" B="0" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="0.6346" Y="0.5517" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.6154" Y="0.4138" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
......@@ -158,10 +166,10 @@
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="78.6466" Y="-36.5382" />
<Position X="79.6505" Y="-65.5365" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.4915" Y="-0.2030" />
<PrePosition X="0.4978" Y="-0.3641" />
<PreSize X="0.9750" Y="0.3222" />
<TextColor A="255" R="65" G="65" B="70" />
<DisabledFileData Type="Normal" Path="common/btn_green.png" Plist="" />
......
<UserData Version="3.10.0.0">
<Properties>
<Item Key="GuidesList">
<Value ctype="GuidesData" />
<Value ctype="GuidesData">
<VerticalList>
<Guides Position="80.4615" />
</VerticalList>
</Value>
</Item>
</Properties>
</UserData>
\ No newline at end of file
......
......@@ -89,14 +89,14 @@
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="bg" ActionTag="541846746" Tag="31" IconVisible="False" PositionPercentYEnabled="True" LeftMargin="0.0001" RightMargin="17.9999" BottomMargin="16.0000" ctype="SpriteObjectData">
<Size X="1262.0000" Y="244.0000" />
<AbstractNodeData Name="bg" ActionTag="541846746" Tag="31" IconVisible="False" PositionPercentYEnabled="True" LeftMargin="0.0001" RightMargin="-8.0001" BottomMargin="12.0000" ctype="SpriteObjectData">
<Size X="1288.0000" Y="248.0000" />
<AnchorPoint ScaleY="1.0000" />
<Position X="0.0001" Y="260.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition Y="1.0000" />
<PreSize X="0.9859" Y="0.9385" />
<PrePosition X="0.0000" Y="1.0000" />
<PreSize X="1.0063" Y="0.9538" />
<FileData Type="Normal" Path="ui/friend/bg_friend.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
......@@ -114,155 +114,59 @@
<ColorVector ScaleY="1.0000" />
<InnerNodeSize Width="1170" Height="300" />
</AbstractNodeData>
<AbstractNodeData Name="btn_add" ActionTag="-1978456630" Tag="46" IconVisible="False" LeftMargin="1046.7616" RightMargin="77.2384" TopMargin="294.7275" BottomMargin="-92.7275" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="126" Scale9Height="36" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="156.0000" Y="58.0000" />
<AbstractNodeData Name="btn_add" ActionTag="-1978456630" Tag="46" IconVisible="False" LeftMargin="1065.7617" RightMargin="112.2383" TopMargin="281.7274" BottomMargin="-121.7274" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="72" Scale9Height="78" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="102.0000" Y="100.0000" />
<Children>
<AbstractNodeData Name="btn_add_1" CanEdit="False" ActionTag="1716810418" Tag="54" IconVisible="False" LeftMargin="23.4146" RightMargin="104.5854" TopMargin="14.0000" BottomMargin="16.0000" ctype="SpriteObjectData">
<Size X="28.0000" Y="28.0000" />
<AbstractNodeData Name="selected" Visible="False" ActionTag="-566355595" Tag="48" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="102.0000" Y="100.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="37.4146" Y="30.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.2398" Y="0.5172" />
<PreSize X="0.1795" Y="0.4828" />
<FileData Type="Normal" Path="ui/friend/btn_add_1.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="txt" CanEdit="False" ActionTag="-1693575684" Tag="47" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="56.5056" RightMargin="24.4944" TopMargin="12.9700" BottomMargin="17.0300" FontSize="24" LabelText="加好友" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="75.0000" Y="28.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="94.0056" Y="31.0300" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="22" G="105" B="0" />
<PrePosition X="0.6026" Y="0.5350" />
<PreSize X="0.4808" Y="0.4828" />
<FontResource Type="Normal" Path="" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="selected" CanEdit="False" ActionTag="-566355595" Tag="48" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="156.0000" Y="58.0000" />
<Children>
<AbstractNodeData Name="btn_add_2" CanEdit="False" ActionTag="-1206678325" Tag="55" IconVisible="False" LeftMargin="23.5000" RightMargin="104.5000" TopMargin="15.0000" BottomMargin="15.0000" ctype="SpriteObjectData">
<Size X="28.0000" Y="28.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="37.5000" Y="29.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.2404" Y="0.5000" />
<PreSize X="0.1795" Y="0.4828" />
<FileData Type="Normal" Path="ui/friend/btn_add_2.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="txt" CanEdit="False" ActionTag="1147200229" Tag="49" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="56.5056" RightMargin="24.4944" TopMargin="12.9700" BottomMargin="17.0300" FontSize="24" LabelText="加好友" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="75.0000" Y="28.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="94.0056" Y="31.0300" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="179" G="61" B="0" />
<PrePosition X="0.6026" Y="0.5350" />
<PreSize X="0.4808" Y="0.4828" />
<FontResource Type="Normal" Path="" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="78.0000" Y="29.0000" />
<Position X="51.0000" Y="50.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="1.0000" Y="1.0000" />
<FileData Type="Normal" Path="common/btn_green_s.png" Plist="" />
<FileData Type="Normal" Path="ui/friend/bg_friend_add.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="1124.7616" Y="-63.7275" />
<Position X="1116.7617" Y="-71.7274" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.8787" Y="-0.2451" />
<PreSize X="0.1219" Y="0.2231" />
<PrePosition X="0.8725" Y="-0.2759" />
<PreSize X="0.0797" Y="0.3846" />
<TextColor A="255" R="65" G="65" B="70" />
<DisabledFileData Type="Normal" Path="common/btn_green.png" Plist="" />
<PressedFileData Type="Normal" Path="common/btn_green.png" Plist="" />
<NormalFileData Type="Normal" Path="common/btn_green.png" Plist="" />
<DisabledFileData Type="Normal" Path="ui/friend/bg_friend_add.png" Plist="" />
<PressedFileData Type="Normal" Path="ui/friend/bg_friend_add.png" Plist="" />
<NormalFileData Type="Normal" Path="ui/friend/bg_friend_add.png" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="btn_back" ActionTag="572208383" Tag="50" IconVisible="False" LeftMargin="1046.7616" RightMargin="77.2384" TopMargin="363.9063" BottomMargin="-161.9063" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="126" Scale9Height="36" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="156.0000" Y="58.0000" />
<AbstractNodeData Name="btn_back" ActionTag="572208383" Tag="50" IconVisible="False" LeftMargin="1065.7617" RightMargin="112.2383" TopMargin="383.9058" BottomMargin="-223.9058" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="72" Scale9Height="78" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="102.0000" Y="100.0000" />
<Children>
<AbstractNodeData Name="btn_back_1" ActionTag="1121950015" Tag="56" IconVisible="False" LeftMargin="22.5000" RightMargin="95.5000" TopMargin="11.0000" BottomMargin="13.0000" ctype="SpriteObjectData">
<Size X="38.0000" Y="34.0000" />
<AbstractNodeData Name="selected" Visible="False" ActionTag="-971363265" Tag="52" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="102.0000" Y="100.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="41.5000" Y="30.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.2660" Y="0.5172" />
<PreSize X="0.2436" Y="0.5862" />
<FileData Type="Normal" Path="ui/friend/btn_back_1.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="txt" ActionTag="-1919310417" Tag="51" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="68.6000" RightMargin="37.4000" TopMargin="12.9700" BottomMargin="17.0300" FontSize="24" LabelText="退出" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="50.0000" Y="28.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="93.6000" Y="31.0300" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="22" G="105" B="0" />
<PrePosition X="0.6000" Y="0.5350" />
<PreSize X="0.3205" Y="0.4828" />
<FontResource Type="Normal" Path="" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="selected" ActionTag="-971363265" Tag="52" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" ctype="SpriteObjectData">
<Size X="156.0000" Y="58.0000" />
<Children>
<AbstractNodeData Name="btn_back_2" ActionTag="-78526477" Tag="57" IconVisible="False" LeftMargin="22.5000" RightMargin="95.5000" TopMargin="11.0000" BottomMargin="13.0000" ctype="SpriteObjectData">
<Size X="38.0000" Y="34.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="41.5000" Y="30.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.2660" Y="0.5172" />
<PreSize X="0.2436" Y="0.5862" />
<FileData Type="Normal" Path="ui/friend/btn_back_2.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="txt" ActionTag="-1346403750" Tag="53" IconVisible="False" PositionPercentXEnabled="True" PositionPercentYEnabled="True" LeftMargin="68.6000" RightMargin="37.4000" TopMargin="12.9700" BottomMargin="17.0300" FontSize="24" LabelText="退出" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="50.0000" Y="28.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="93.6000" Y="31.0300" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="179" G="61" B="0" />
<PrePosition X="0.6000" Y="0.5350" />
<PreSize X="0.3205" Y="0.4828" />
<FontResource Type="Normal" Path="" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="78.0000" Y="29.0000" />
<Position X="51.0000" Y="50.0000" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5000" Y="0.5000" />
<PreSize X="1.0000" Y="1.0000" />
<FileData Type="Normal" Path="common/btn_green_s.png" Plist="" />
<FileData Type="Normal" Path="ui/friend/bg_friend_exit.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="1124.7616" Y="-132.9063" />
<Position X="1116.7617" Y="-173.9058" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.8787" Y="-0.5112" />
<PreSize X="0.1219" Y="0.2231" />
<PrePosition X="0.8725" Y="-0.6689" />
<PreSize X="0.0797" Y="0.3846" />
<TextColor A="255" R="65" G="65" B="70" />
<DisabledFileData Type="Normal" Path="common/btn_green.png" Plist="" />
<PressedFileData Type="Normal" Path="common/btn_green.png" Plist="" />
<NormalFileData Type="Normal" Path="common/btn_green.png" Plist="" />
<DisabledFileData Type="Normal" Path="ui/friend/bg_friend_exit.png" Plist="" />
<PressedFileData Type="Normal" Path="ui/friend/bg_friend_exit.png" Plist="" />
<NormalFileData Type="Normal" Path="ui/friend/bg_friend_exit.png" Plist="" />
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
......@@ -302,27 +206,25 @@
<FileData Type="Normal" Path="ui/friend/pk_game_10.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="txt" ActionTag="1794889472" Tag="547" IconVisible="False" LeftMargin="25.4222" RightMargin="95.5778" TopMargin="43.8113" BottomMargin="15.1887" FontSize="18" LabelText="火箭小象" OutlineEnabled="True" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="76.0000" Y="23.0000" />
<AbstractNodeData Name="txt" ActionTag="1794889472" Tag="547" IconVisible="False" LeftMargin="27.4222" RightMargin="97.5778" TopMargin="46.3113" BottomMargin="17.6887" FontSize="18" LabelText="火箭小象" OutlineEnabled="True" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="72.0000" Y="18.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="63.4222" Y="26.6887" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.3219" Y="0.3255" />
<PreSize X="0.3858" Y="0.2805" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.3655" Y="0.2195" />
<OutlineColor A="255" R="30" G="144" B="255" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="txt_score" ActionTag="-1566487833" Tag="34" IconVisible="False" LeftMargin="142.3414" RightMargin="21.6586" TopMargin="8.5602" BottomMargin="52.4398" FontSize="18" LabelText="300" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="33.0000" Y="21.0000" />
<AbstractNodeData Name="txt_score" ActionTag="-1566487833" Tag="34" IconVisible="False" LeftMargin="145.3414" RightMargin="24.6586" TopMargin="10.0602" BottomMargin="53.9398" FontSize="18" LabelText="300" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="27.0000" Y="18.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="158.8414" Y="62.9398" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="139" G="105" B="20" />
<PrePosition X="0.8063" Y="0.7676" />
<PreSize X="0.1675" Y="0.2561" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.1371" Y="0.2195" />
<OutlineColor A="255" R="30" G="144" B="255" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
......@@ -354,27 +256,25 @@
<FileData Type="Normal" Path="ui/friend/pk_game_10.png" Plist="" />
<BlendFunc Src="1" Dst="771" />
</AbstractNodeData>
<AbstractNodeData Name="txt" ActionTag="-182859835" Tag="30" IconVisible="False" LeftMargin="25.4222" RightMargin="95.5778" TopMargin="43.8113" BottomMargin="15.1887" FontSize="18" LabelText="火箭小象" OutlineEnabled="True" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="76.0000" Y="23.0000" />
<AbstractNodeData Name="txt" ActionTag="-182859835" Tag="30" IconVisible="False" LeftMargin="27.4222" RightMargin="97.5778" TopMargin="46.3113" BottomMargin="17.6887" FontSize="18" LabelText="火箭小象" OutlineEnabled="True" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="72.0000" Y="18.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="63.4222" Y="26.6887" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.3219" Y="0.3255" />
<PreSize X="0.3858" Y="0.2805" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.3655" Y="0.2195" />
<OutlineColor A="255" R="30" G="144" B="255" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="txt_score" ActionTag="1222885378" Tag="35" IconVisible="False" LeftMargin="141.7362" RightMargin="22.2638" TopMargin="8.7807" BottomMargin="52.2193" FontSize="18" LabelText="300" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="33.0000" Y="21.0000" />
<AbstractNodeData Name="txt_score" ActionTag="1222885378" Tag="35" IconVisible="False" LeftMargin="144.7362" RightMargin="25.2638" TopMargin="10.2807" BottomMargin="53.7193" FontSize="18" LabelText="300" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="27.0000" Y="18.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="158.2362" Y="62.7193" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="139" G="105" B="20" />
<PrePosition X="0.8032" Y="0.7649" />
<PreSize X="0.1675" Y="0.2561" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.1371" Y="0.2195" />
<OutlineColor A="255" R="30" G="144" B="255" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
......@@ -392,27 +292,26 @@
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="btn_hua" ActionTag="-1012991750" Tag="31" IconVisible="False" LeftMargin="1068.3582" RightMargin="110.6418" TopMargin="580.5000" BottomMargin="-423.5000" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="71" Scale9Height="81" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_hua" ActionTag="-1012991750" Tag="31" IconVisible="False" LeftMargin="1068.3582" RightMargin="110.6418" TopMargin="610.5005" BottomMargin="-453.5005" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="71" Scale9Height="81" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="101.0000" Y="103.0000" />
<Children>
<AbstractNodeData Name="txt" ActionTag="-70247522" Tag="33" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="33.5000" RightMargin="33.5000" TopMargin="-27.1887" BottomMargin="107.1887" FontSize="18" LabelText="300" OutlineEnabled="True" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="34.0000" Y="23.0000" />
<AbstractNodeData Name="txt" ActionTag="-70247522" Tag="33" IconVisible="False" PositionPercentXEnabled="True" LeftMargin="37.0000" RightMargin="37.0000" TopMargin="-24.6887" BottomMargin="109.6887" FontSize="18" LabelText="300" OutlineEnabled="True" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="TextObjectData">
<Size X="27.0000" Y="18.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="50.5000" Y="118.6887" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.5000" Y="1.1523" />
<PreSize X="0.3366" Y="0.2233" />
<FontResource Type="Normal" Path="" Plist="" />
<PreSize X="0.2673" Y="0.1748" />
<OutlineColor A="255" R="165" G="42" B="42" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
</Children>
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="1118.8582" Y="-372.0000" />
<Position X="1118.8582" Y="-402.0005" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.8741" Y="-1.4308" />
<PrePosition X="0.8741" Y="-1.5462" />
<PreSize X="0.0789" Y="0.3962" />
<TextColor A="255" R="65" G="65" B="70" />
<DisabledFileData Type="Normal" Path="ui/friend/friend_send_hua.png" Plist="" />
......@@ -421,13 +320,13 @@
<OutlineColor A="255" R="255" G="0" B="0" />
<ShadowColor A="255" R="110" G="110" B="110" />
</AbstractNodeData>
<AbstractNodeData Name="btn_record" ActionTag="-2005653882" Tag="114" IconVisible="False" LeftMargin="1064.0731" RightMargin="113.9269" TopMargin="442.5169" BottomMargin="-282.5169" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="72" Scale9Height="78" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<AbstractNodeData Name="btn_record" ActionTag="-2005653882" Tag="114" IconVisible="False" LeftMargin="1064.0731" RightMargin="113.9269" TopMargin="484.5169" BottomMargin="-324.5169" TouchEnable="True" FontSize="14" Scale9Enable="True" LeftEage="15" RightEage="15" TopEage="11" BottomEage="11" Scale9OriginX="15" Scale9OriginY="11" Scale9Width="72" Scale9Height="78" ShadowOffsetX="2.0000" ShadowOffsetY="-2.0000" ctype="ButtonObjectData">
<Size X="102.0000" Y="100.0000" />
<AnchorPoint ScaleX="0.5000" ScaleY="0.5000" />
<Position X="1115.0731" Y="-232.5169" />
<Position X="1115.0731" Y="-274.5169" />
<Scale ScaleX="1.0000" ScaleY="1.0000" />
<CColor A="255" R="255" G="255" B="255" />
<PrePosition X="0.8712" Y="-0.8943" />
<PrePosition X="0.8712" Y="-1.0558" />
<PreSize X="0.0797" Y="0.3846" />
<TextColor A="255" R="65" G="65" B="70" />
<DisabledFileData Type="Normal" Path="ui/friend/btn_jilu.png" Plist="" />
......
<UserData Version="3.10.0.0">
<Properties>
<Item Key="GuidesList">
<Value ctype="GuidesData" />
<Value ctype="GuidesData">
<VerticalList>
<Guides Position="1073.0090" />
</VerticalList>
</Value>
</Item>
</Properties>
</UserData>
\ No newline at end of file
......

21.2 KB | W: | H:

10.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.4 KB | W: | H:

4.75 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.06 KB | W: | H:

2.21 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
......@@ -669,9 +669,13 @@
</Folder>
<Folder Name="friend">
<Image Name="bg_friend.png" />
<Image Name="bg_friend_add.png" />
<Image Name="bg_friend_back.png" />
<Image Name="bg_friend_exit.png" />
<Image Name="bg_friend_item.png" />
<Image Name="bg_friend_item_s.png" />
<Image Name="bg_friend_lv.png" />
<Image Name="bg_friend_tip_title.png" />
<Image Name="btn_add_1.png" />
<Image Name="btn_add_2.png" />
<Image Name="btn_back_1.png" />
......
......@@ -28,5 +28,15 @@
<LastRunType Value="Windows" />
</Value>
</Item>
<Item Key="TabsParamsKey">
<Value ctype="TabsInfo">
<OpenedDocuments>
<FilePathData Path="ui/friend/FriendLayer.csd" />
<FilePathData Path="ui/friend/FriendItemLayer.csd" />
<FilePathData Path="ui/MainScene.csd" />
</OpenedDocuments>
<ActiveDocument Path="ui/MainScene.csd" />
</Value>
</Item>
</Properties>
</UserData>
\ No newline at end of file
......