1.左侧标签快速切换后,焦点无法右移
2.首页【经营策略】导航栏游戏详情页返回向下翻页无焦点
Showing
6 changed files
with
2693 additions
and
24 deletions
... | @@ -192,7 +192,7 @@ | ... | @@ -192,7 +192,7 @@ |
192 | "array": [ | 192 | "array": [ |
193 | 0, | 193 | 0, |
194 | 0, | 194 | 0, |
195 | 271.0659484863281, | 195 | 265.0037841796875, |
196 | 0, | 196 | 0, |
197 | 0, | 197 | 0, |
198 | 0, | 198 | 0, |
... | @@ -5708,8 +5708,8 @@ | ... | @@ -5708,8 +5708,8 @@ |
5708 | } | 5708 | } |
5709 | ], | 5709 | ], |
5710 | "_useOriginalSize": false, | 5710 | "_useOriginalSize": false, |
5711 | "_string": "v0.9.0.2020031610", | 5711 | "_string": "v1.0.0.2020031617", |
5712 | "_N$string": "v0.9.0.2020031610", | 5712 | "_N$string": "v1.0.0.2020031617", |
5713 | "_fontSize": 24, | 5713 | "_fontSize": 24, |
5714 | "_lineHeight": 24, | 5714 | "_lineHeight": 24, |
5715 | "_enableWrapText": true, | 5715 | "_enableWrapText": true, | ... | ... |
... | @@ -25,6 +25,7 @@ cc.Class({ | ... | @@ -25,6 +25,7 @@ cc.Class({ |
25 | onLoad: function () { | 25 | onLoad: function () { |
26 | this._super(); | 26 | this._super(); |
27 | this._oInit = {}; | 27 | this._oInit = {}; |
28 | this._lastFocus = null; | ||
28 | this._oSceneContext._iCurrentLeftIndex = 0; | 29 | this._oSceneContext._iCurrentLeftIndex = 0; |
29 | this._oSceneContext.focusPath = "TypeListArea/TypeListWrapper/TypeList/topNavi" + this._oSceneContext._iCurrentLeftIndex; | 30 | this._oSceneContext.focusPath = "TypeListArea/TypeListWrapper/TypeList/topNavi" + this._oSceneContext._iCurrentLeftIndex; |
30 | this._bIsDataListMoving = false; | 31 | this._bIsDataListMoving = false; |
... | @@ -311,7 +312,7 @@ cc.Class({ | ... | @@ -311,7 +312,7 @@ cc.Class({ |
311 | this._cFocus.init('focusContainer', this, | 312 | this._cFocus.init('focusContainer', this, |
312 | nodeInitFocus.getComponent(FocusInfo), | 313 | nodeInitFocus.getComponent(FocusInfo), |
313 | Common.SCREEN_WIDTH, Common.SCREEN_HEIGHT, 10, 6, 1.1, true); | 314 | Common.SCREEN_WIDTH, Common.SCREEN_HEIGHT, 10, 6, 1.1, true); |
314 | 315 | this._lastFocus = nodeInitFocus.getComponent(FocusInfo); | |
315 | if (0 == nodeInitFocus.name.indexOf("topNavi")) { | 316 | if (0 == nodeInitFocus.name.indexOf("topNavi")) { |
316 | this._cFocus.hide(); | 317 | this._cFocus.hide(); |
317 | } | 318 | } |
... | @@ -373,10 +374,23 @@ cc.Class({ | ... | @@ -373,10 +374,23 @@ cc.Class({ |
373 | return [fiFocusTarget, oScrollParameter]; | 374 | return [fiFocusTarget, oScrollParameter]; |
374 | }, | 375 | }, |
375 | 376 | ||
377 | onKeyUp: function (event) { | ||
378 | // cc.log(this._lastFocus.node.name + " down->抬起。。。" + this._fiCurrentFocus.node.name); | ||
379 | cc.log("抬起:" + event.keyCode); | ||
380 | if (0 == this._lastFocus.node.getName().indexOf('topNavi') | ||
381 | && 0 == this._fiCurrentFocus.node.getName().indexOf('topNavi') | ||
382 | && event.keyCode != (Common.ANDROID_KEY.left || cc.macro.KEY.left)) { | ||
383 | this.scheduleOnce(function () { | ||
384 | this.getSimulateRequest(); | ||
385 | }, 0); | ||
386 | } | ||
387 | }, | ||
388 | |||
376 | onKeyDown: function (event) { | 389 | onKeyDown: function (event) { |
377 | this._super(event); | 390 | this._super(event); |
378 | var fiFocusTarget = null; | 391 | var fiFocusTarget = null; |
379 | var fiCurrentFocus = this._fiCurrentFocus; | 392 | var fiCurrentFocus = this._fiCurrentFocus; |
393 | this._lastFocus = this._fiCurrentFocus; //存储上一个节点 | ||
380 | switch (event.keyCode) { | 394 | switch (event.keyCode) { |
381 | case cc.macro.KEY.up: | 395 | case cc.macro.KEY.up: |
382 | case Common.ANDROID_KEY.up: | 396 | case Common.ANDROID_KEY.up: |
... | @@ -546,12 +560,14 @@ cc.Class({ | ... | @@ -546,12 +560,14 @@ cc.Class({ |
546 | } | 560 | } |
547 | 561 | ||
548 | if (0 == fiFrom.node.getName().indexOf('topNavi')) { | 562 | if (0 == fiFrom.node.getName().indexOf('topNavi')) { |
563 | |||
549 | this._oSceneContext._iCurrentLeftIndex = iIndex; | 564 | this._oSceneContext._iCurrentLeftIndex = iIndex; |
550 | this._oSceneContext.categoryRecordIndexOfFirstCell = 0; //将列表记录置空 | 565 | this._oSceneContext.categoryRecordIndexOfFirstCell = 0; //将列表记录置空 |
551 | this.scheduleOnce(function () { | 566 | // this.scheduleOnce(function () { //这个放到onKeyUp中去,解决长按导致的焦点丢失 |
552 | // this.requestMediaList(1); //重新渲染CategoryList | 567 | // cc.log("onAfter..." + iIndex); |
553 | this.getSimulateRequest(); | 568 | // // this.requestMediaList(1); //重新渲染CategoryList |
554 | }, 0); | 569 | // this.getSimulateRequest(); |
570 | // }, 0); | ||
555 | } | 571 | } |
556 | } | 572 | } |
557 | 573 | ... | ... |
... | @@ -65,6 +65,8 @@ cc.Class({ | ... | @@ -65,6 +65,8 @@ cc.Class({ |
65 | // cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) { | 65 | // cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) { |
66 | // self.pic.spriteFrame = new cc.SpriteFrame(texture); | 66 | // self.pic.spriteFrame = new cc.SpriteFrame(texture); |
67 | // }); | 67 | // }); |
68 | cc.log("pfbCategoryListCell.."+self.pic); | ||
69 | if (self.pic) { | ||
68 | Network.loadImageInNativeRuntime( | 70 | Network.loadImageInNativeRuntime( |
69 | Common.TOPDRAW_IMAGE_SERVER + oData.image[0].fileUrl, null, | 71 | Common.TOPDRAW_IMAGE_SERVER + oData.image[0].fileUrl, null, |
70 | function (texture, iRequestId) { | 72 | function (texture, iRequestId) { |
... | @@ -72,6 +74,7 @@ cc.Class({ | ... | @@ -72,6 +74,7 @@ cc.Class({ |
72 | }, function () { }, this | 74 | }, function () { }, this |
73 | ); | 75 | ); |
74 | } | 76 | } |
77 | } | ||
75 | // cc.log("category list cell location: "+oData.image[0].fileUrl); | 78 | // cc.log("category list cell location: "+oData.image[0].fileUrl); |
76 | this.node.getComponent(FocusInfo).setTVLink(oData.tvlink); | 79 | this.node.getComponent(FocusInfo).setTVLink(oData.tvlink); |
77 | }, | 80 | }, | ... | ... |
1 | //分类-动漫 | ||
2 | var Common = require('Common'); | ||
3 | var FocusInfo = require('FocusInfo'); | ||
4 | var ListCell = require('ListCell'); | ||
5 | var Network = require('Network'); | ||
6 | |||
7 | cc.Class({ | ||
8 | extends: ListCell, | ||
9 | |||
10 | properties: { | ||
11 | id: 0, | ||
12 | pic: cc.Sprite, | ||
13 | activeName1: cc.Label, | ||
14 | activeName2: cc.Label, | ||
15 | normalName: cc.Label, | ||
16 | Name: cc.Label, | ||
17 | textScore: cc.Label, //分数 | ||
18 | }, | ||
19 | |||
20 | statics: { | ||
21 | PFB_NAME: 'Prefab/pfbMainCategoryListCell', | ||
22 | CELL_NAME: 'CategoryListCell', | ||
23 | }, | ||
24 | |||
25 | init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) { | ||
26 | //准备焦点坐标 | ||
27 | let fiCategoryBlock = this.node.addComponent(FocusInfo); | ||
28 | fiCategoryBlock.init( | ||
29 | null, true, null, null, 1.1 | ||
30 | ); | ||
31 | compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node); | ||
32 | }, | ||
33 | |||
34 | render(oData, iRecordIndex) { | ||
35 | // this.id = oData.id; | ||
36 | // cc.log("categoryList-->name: "+JSON.stringify(oData)); | ||
37 | this.activeName1.string = oData.name; | ||
38 | this.activeName2.string = oData.name; | ||
39 | this.normalName.string = oData.name; | ||
40 | this.Name.string = oData.name; | ||
41 | // this.activeName1._updateRenderData(true); | ||
42 | // this.activeName2._updateRenderData(true); | ||
43 | // this.normalName._updateRenderData(true); | ||
44 | if (oData.score) { | ||
45 | this.textScore.string = parseInt(oData.score * 10) / 10; | ||
46 | } | ||
47 | if (oData.play_times) { | ||
48 | let value = parseInt(oData.play_times); | ||
49 | if (value > 10000) { | ||
50 | this.textPlayTimes.string = parseInt(value / 10000) + "万+"; | ||
51 | } else { | ||
52 | this.textPlayTimes.string = value; | ||
53 | } | ||
54 | } | ||
55 | if (oData.image[0]) { | ||
56 | var self = this; | ||
57 | |||
58 | // Network.loadImageInNativeRuntime( | ||
59 | // Common.TOPDRAW_IMAGE_SERVER + oData.image[0].fileUrl,null, | ||
60 | // function (texture) { | ||
61 | // self.pic.spriteFrame = new cc.SpriteFrame(texture); | ||
62 | // }, null, this | ||
63 | // ); | ||
64 | // cc.log("categoryList..."+oData.image[0].fileUrl); | ||
65 | // cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) { | ||
66 | // self.pic.spriteFrame = new cc.SpriteFrame(texture); | ||
67 | // }); | ||
68 | cc.log("pfbCategoryListCell.." + self.pic); | ||
69 | if (self.pic) { | ||
70 | Network.loadImageInNativeRuntime( | ||
71 | Common.TOPDRAW_IMAGE_SERVER + oData.image[0].fileUrl, null, | ||
72 | function (texture, iRequestId) { | ||
73 | self.pic.spriteFrame = new cc.SpriteFrame(texture); | ||
74 | }, function () { }, this | ||
75 | ); | ||
76 | } | ||
77 | } | ||
78 | // cc.log("category list cell location: "+oData.image[0].fileUrl); | ||
79 | this.node.getComponent(FocusInfo).setTVLink(oData.tvlink); | ||
80 | }, | ||
81 | |||
82 | enableFocusInfo: function () { | ||
83 | this.node.getComponent(FocusInfo).setEnable(true); | ||
84 | }, | ||
85 | |||
86 | disableFocusInfo: function () { | ||
87 | this.node.getComponent(FocusInfo).setEnable(false); | ||
88 | }, | ||
89 | |||
90 | setUIWithFocus: function () { | ||
91 | let nodeCellName = this.node.getChildByName('Name'); | ||
92 | cc.find("NormalName", nodeCellName).opacity = 255; | ||
93 | //超出滚动 | ||
94 | let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName); | ||
95 | |||
96 | let fOriginalX = nodeScreenTitleText.x; | ||
97 | let fOriginalY = nodeScreenTitleText.y; | ||
98 | |||
99 | let nodeScreenTitleText1 = nodeScreenTitleText.getChildByName('NameText1'); | ||
100 | let nodeScreenTitleText2 = nodeScreenTitleText.getChildByName('NameText2'); | ||
101 | nodeScreenTitleText2.x = nodeScreenTitleText1.x + nodeScreenTitleText1.width + 10;//TODO:补丁,解决滚动重叠 | ||
102 | if (nodeScreenTitleText1.width > nodeScreenTitleText.width) { | ||
103 | cc.find("ActiveName/NameContainer", nodeCellName).opacity = 255; | ||
104 | cc.find("NormalName", nodeCellName).opacity = 0; | ||
105 | let fEndPositionDelta = (nodeScreenTitleText1.width + 30); | ||
106 | //下方时长和字有关系,才能速度一样 | ||
107 | var ftaScreenTitleMoveToTarget = cc.moveTo(10 * (nodeScreenTitleText1.width / nodeScreenTitleText.width), fOriginalX - fEndPositionDelta, fOriginalY); | ||
108 | var ftaScreenTitleMoveToBack = cc.moveTo(0, fOriginalX, fOriginalY); | ||
109 | var sequenceMediaTitle = cc.sequence(ftaScreenTitleMoveToTarget, ftaScreenTitleMoveToBack); | ||
110 | var repeatScreenTitle = cc.repeat(sequenceMediaTitle, 10); | ||
111 | repeatScreenTitle.setTag(Common.OVERLENGTH_MOVING); | ||
112 | nodeScreenTitleText.runAction(repeatScreenTitle); | ||
113 | nodeScreenTitleText2.active = true; | ||
114 | } | ||
115 | }, | ||
116 | setUIWithoutFocus: function () { | ||
117 | let nodeCellName = this.node.getChildByName('Name'); | ||
118 | cc.find("NormalName", nodeCellName).opacity = 255; | ||
119 | //如有滚动停止滚动 | ||
120 | let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName); | ||
121 | if (null != nodeScreenTitleText.getActionByTag(Common.OVERLENGTH_MOVING)) { | ||
122 | nodeScreenTitleText.stopActionByTag(Common.OVERLENGTH_MOVING); | ||
123 | nodeScreenTitleText.getChildByName('NameText2').active = false; | ||
124 | cc.find("ActiveName/NameContainer", nodeCellName).opacity = 0; | ||
125 | } | ||
126 | nodeScreenTitleText.x = 0; | ||
127 | }, | ||
128 | |||
129 | }); |
... | @@ -153,7 +153,7 @@ cc.Class({ | ... | @@ -153,7 +153,7 @@ cc.Class({ |
153 | }, i); | 153 | }, i); |
154 | 154 | ||
155 | let fiNav = nodeNav.addComponent(FocusInfo); | 155 | let fiNav = nodeNav.addComponent(FocusInfo); |
156 | fiNav.init(null, true, null, null, 1.1); //最后一个参数决定要不要放大显示 | 156 | fiNav.init(null, false, null, null, 1.1); //最后一个参数决定要不要放大显示 |
157 | 157 | ||
158 | this._aFocusTargets[0]["view_pager_label" + i] = nodeNav; | 158 | this._aFocusTargets[0]["view_pager_label" + i] = nodeNav; |
159 | } | 159 | } |
... | @@ -219,6 +219,7 @@ cc.Class({ | ... | @@ -219,6 +219,7 @@ cc.Class({ |
219 | cc.find("scrollContent/BlockShadow", this.node).active = true; | 219 | cc.find("scrollContent/BlockShadow", this.node).active = true; |
220 | } else { | 220 | } else { |
221 | this.getSimulateRequest(); | 221 | this.getSimulateRequest(); |
222 | cc.log("不显示轮播图。。。"); | ||
222 | cc.find("scrollContent/ViewPagerArea", this.node).active = false; | 223 | cc.find("scrollContent/ViewPagerArea", this.node).active = false; |
223 | cc.find("scrollContent/BlockShadow", this.node).active = false; | 224 | cc.find("scrollContent/BlockShadow", this.node).active = false; |
224 | } | 225 | } |
... | @@ -702,7 +703,7 @@ cc.Class({ | ... | @@ -702,7 +703,7 @@ cc.Class({ |
702 | // switch (strAppId) { | 703 | // switch (strAppId) { |
703 | // case BusinessParameter.CARTOON_APPID: | 704 | // case BusinessParameter.CARTOON_APPID: |
704 | // this._oSceneContext.focusPath = this._oSceneContext.focusPath || "SongList/DataContainerMask/DataContainer/ListCell0/SongTitleContainer"; | 705 | // this._oSceneContext.focusPath = this._oSceneContext.focusPath || "SongList/DataContainerMask/DataContainer/ListCell0/SongTitleContainer"; |
705 | this._strSongListCellComponentName = "pfbCategoryListCell"; | 706 | this._strSongListCellComponentName = "pfbMainCategoryListCell"; |
706 | this._iBeginPositionX = -440; | 707 | this._iBeginPositionX = -440; |
707 | this._iBeginPositionY = 160; | 708 | this._iBeginPositionY = 160; |
708 | this._iShowCellRows = 2; | 709 | this._iShowCellRows = 2; |
... | @@ -845,8 +846,10 @@ cc.Class({ | ... | @@ -845,8 +846,10 @@ cc.Class({ |
845 | fiViewPagerArea.init('', false, null, null, 1.0); | 846 | fiViewPagerArea.init('', false, null, null, 1.0); |
846 | this._aFocusTargets[0]['view_pager_area'] = cc.find('scrollContent/ViewPagerArea', this.node); | 847 | this._aFocusTargets[0]['view_pager_area'] = cc.find('scrollContent/ViewPagerArea', this.node); |
847 | 848 | ||
849 | if (this._oSceneContext._iCurrentLeftIndex == 1) { | ||
848 | cc.find("scrollContent/ViewPagerArea", this.node).active = false; //打补丁,解决第一次不能跳转到轮播图上面的问题 | 850 | cc.find("scrollContent/ViewPagerArea", this.node).active = false; //打补丁,解决第一次不能跳转到轮播图上面的问题 |
849 | cc.find("scrollContent/ViewPagerArea", this.node).active = true; | 851 | cc.find("scrollContent/ViewPagerArea", this.node).active = true; |
852 | } | ||
850 | 853 | ||
851 | let fiHotUpdateBtn = cc.find('update/update_panel/update_btn', this.node).addComponent(FocusInfo); //热更新按钮 | 854 | let fiHotUpdateBtn = cc.find('update/update_panel/update_btn', this.node).addComponent(FocusInfo); //热更新按钮 |
852 | fiHotUpdateBtn.init('', false, null, null, 1.1); | 855 | fiHotUpdateBtn.init('', false, null, null, 1.1); |
... | @@ -883,11 +886,11 @@ cc.Class({ | ... | @@ -883,11 +886,11 @@ cc.Class({ |
883 | return; | 886 | return; |
884 | } | 887 | } |
885 | 888 | ||
886 | if (this._oSceneContext._iCurrentLeftIndex > 1) { //不是第一个焦点框就跳过去,恢复记忆 | 889 | // if (this._oSceneContext._iCurrentLeftIndex > 1) { //不是第一个焦点框就跳过去,恢复记忆 |
887 | this.scheduleOnce(function () { | 890 | // this.scheduleOnce(function () { |
888 | this._cFocus.flyFocus(this._fiCurrentFocus, nodeInitFocus.getComponent(FocusInfo), Common.MOVE_DIRECTION_RIGHT, null, null); | 891 | // this._cFocus.flyFocus(this._fiCurrentFocus, nodeInitFocus.getComponent(FocusInfo), Common.MOVE_DIRECTION_RIGHT, null, null); |
889 | }, 0); | 892 | // }, 0); |
890 | } | 893 | // } |
891 | }, | 894 | }, |
892 | 895 | ||
893 | keyDownDirection: function (Direct) { | 896 | keyDownDirection: function (Direct) { |
... | @@ -896,6 +899,7 @@ cc.Class({ | ... | @@ -896,6 +899,7 @@ cc.Class({ |
896 | var oScrollParameter = null; | 899 | var oScrollParameter = null; |
897 | let aCheckResult; | 900 | let aCheckResult; |
898 | fiFocusTarget = this._cFocus.findTarget(fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Direct); | 901 | fiFocusTarget = this._cFocus.findTarget(fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Direct); |
902 | // cc.log("目标节点:" + fiFocusTarget.node.name); | ||
899 | if (!fiFocusTarget) { return; } | 903 | if (!fiFocusTarget) { return; } |
900 | aCheckResult = this.checkFocusTarget(fiFocusTarget, null, Direct); | 904 | aCheckResult = this.checkFocusTarget(fiFocusTarget, null, Direct); |
901 | fiFocusTarget = aCheckResult[0]; | 905 | fiFocusTarget = aCheckResult[0]; |
... | @@ -921,7 +925,8 @@ cc.Class({ | ... | @@ -921,7 +925,8 @@ cc.Class({ |
921 | }, | 925 | }, |
922 | 926 | ||
923 | checkFocusTarget: function (fiFocusTarget, oScrollParameter, Direct) { | 927 | checkFocusTarget: function (fiFocusTarget, oScrollParameter, Direct) { |
924 | // cc.log("目标节点名称:" + fiFocusTarget.node.name); | 928 | if (fiFocusTarget) |
929 | cc.log("目标节点名称:" + fiFocusTarget.node.name); | ||
925 | var leftNavLayout = this.targetAry[0].target; | 930 | var leftNavLayout = this.targetAry[0].target; |
926 | 931 | ||
927 | // if (!this._bInitCategoryListSuccess) { | 932 | // if (!this._bInitCategoryListSuccess) { |
... | @@ -1323,20 +1328,18 @@ cc.Class({ | ... | @@ -1323,20 +1328,18 @@ cc.Class({ |
1323 | 1328 | ||
1324 | var rightNodeLayout = this.targetAry[1].target; | 1329 | var rightNodeLayout = this.targetAry[1].target; |
1325 | 1330 | ||
1331 | let blockShadow = cc.find("scrollContent/BlockShadow", this.node); | ||
1326 | if (iIndex == 1) { | 1332 | if (iIndex == 1) { |
1327 | this.scheduleOnce(function () { | ||
1328 | // this.getRightRecommendRequestData(); | ||
1329 | }, 0); | ||
1330 | |||
1331 | cc.find("scrollContent/ViewPagerArea", this.node).active = true; | 1333 | cc.find("scrollContent/ViewPagerArea", this.node).active = true; |
1332 | cc.find("scrollContent/BlockShadow", this.node).active = true; | 1334 | blockShadow.active = true; |
1333 | // cc.find("scrollContent/CategoryListRecommendLayout", this.node).active = false; | ||
1334 | } else { | 1335 | } else { |
1335 | cc.find("scrollContent/ViewPagerArea", this.node).active = false; | 1336 | cc.find("scrollContent/ViewPagerArea", this.node).active = false; |
1336 | cc.find("scrollContent/BlockShadow", this.node).active = false; | 1337 | blockShadow.active = false; |
1337 | // cc.find("scrollContent/CategoryListRecommendLayout", this.node).active = true; | ||
1338 | } | 1338 | } |
1339 | 1339 | ||
1340 | if (rightNodeLayout.childrenCount == 0 && iIndex == 1) { //恢复光标的界面可能需要初始化瀑布流 | ||
1341 | this.getRightRecommendRequestData(); | ||
1342 | } | ||
1340 | for (let i = 0; i < rightNodeLayout.childrenCount; i++) { | 1343 | for (let i = 0; i < rightNodeLayout.childrenCount; i++) { |
1341 | if (iIndex == 1) { //“休闲益智”采用单独的框架渲染 || iIndex == 3 | 1344 | if (iIndex == 1) { //“休闲益智”采用单独的框架渲染 || iIndex == 3 |
1342 | rightNodeLayout.children[i].active = true; | 1345 | rightNodeLayout.children[i].active = true; | ... | ... |
1 | [ | ||
2 | { | ||
3 | "__type__": "cc.Prefab", | ||
4 | "_name": "", | ||
5 | "_objFlags": 0, | ||
6 | "_native": "", | ||
7 | "data": { | ||
8 | "__id__": 1 | ||
9 | }, | ||
10 | "optimizationPolicy": 0, | ||
11 | "asyncLoadAssets": false, | ||
12 | "readonly": false | ||
13 | }, | ||
14 | { | ||
15 | "__type__": "cc.Node", | ||
16 | "_name": "pfbMainCategoryListCell", | ||
17 | "_objFlags": 0, | ||
18 | "_parent": null, | ||
19 | "_children": [ | ||
20 | { | ||
21 | "__id__": 2 | ||
22 | }, | ||
23 | { | ||
24 | "__id__": 6 | ||
25 | }, | ||
26 | { | ||
27 | "__id__": 20 | ||
28 | }, | ||
29 | { | ||
30 | "__id__": 31 | ||
31 | } | ||
32 | ], | ||
33 | "_active": true, | ||
34 | "_components": [ | ||
35 | { | ||
36 | "__id__": 66 | ||
37 | } | ||
38 | ], | ||
39 | "_prefab": { | ||
40 | "__id__": 67 | ||
41 | }, | ||
42 | "_opacity": 255, | ||
43 | "_color": { | ||
44 | "__type__": "cc.Color", | ||
45 | "r": 255, | ||
46 | "g": 255, | ||
47 | "b": 255, | ||
48 | "a": 255 | ||
49 | }, | ||
50 | "_contentSize": { | ||
51 | "__type__": "cc.Size", | ||
52 | "width": 270, | ||
53 | "height": 207 | ||
54 | }, | ||
55 | "_anchorPoint": { | ||
56 | "__type__": "cc.Vec2", | ||
57 | "x": 0.5, | ||
58 | "y": 0.5 | ||
59 | }, | ||
60 | "_position": { | ||
61 | "__type__": "cc.Vec3", | ||
62 | "x": 0, | ||
63 | "y": 0, | ||
64 | "z": 0 | ||
65 | }, | ||
66 | "_scale": { | ||
67 | "__type__": "cc.Vec3", | ||
68 | "x": 1, | ||
69 | "y": 1, | ||
70 | "z": 1 | ||
71 | }, | ||
72 | "_trs": { | ||
73 | "__type__": "TypedArray", | ||
74 | "ctor": "Float32Array", | ||
75 | "array": [ | ||
76 | 0, | ||
77 | 0, | ||
78 | 0, | ||
79 | 0, | ||
80 | 0, | ||
81 | 0, | ||
82 | 1, | ||
83 | 1, | ||
84 | 1, | ||
85 | 1 | ||
86 | ] | ||
87 | }, | ||
88 | "_eulerAngles": { | ||
89 | "__type__": "cc.Vec3", | ||
90 | "x": 0, | ||
91 | "y": 0, | ||
92 | "z": 0 | ||
93 | }, | ||
94 | "_skewX": 0, | ||
95 | "_skewY": 0, | ||
96 | "_is3DNode": false, | ||
97 | "_groupIndex": 0, | ||
98 | "groupIndex": 0, | ||
99 | "_id": "" | ||
100 | }, | ||
101 | { | ||
102 | "__type__": "cc.Node", | ||
103 | "_name": "Pic", | ||
104 | "_objFlags": 0, | ||
105 | "_parent": { | ||
106 | "__id__": 1 | ||
107 | }, | ||
108 | "_children": [], | ||
109 | "_active": true, | ||
110 | "_components": [ | ||
111 | { | ||
112 | "__id__": 3 | ||
113 | }, | ||
114 | { | ||
115 | "__id__": 4 | ||
116 | } | ||
117 | ], | ||
118 | "_prefab": { | ||
119 | "__id__": 5 | ||
120 | }, | ||
121 | "_opacity": 255, | ||
122 | "_color": { | ||
123 | "__type__": "cc.Color", | ||
124 | "r": 255, | ||
125 | "g": 255, | ||
126 | "b": 255, | ||
127 | "a": 255 | ||
128 | }, | ||
129 | "_contentSize": { | ||
130 | "__type__": "cc.Size", | ||
131 | "width": 270, | ||
132 | "height": 168 | ||
133 | }, | ||
134 | "_anchorPoint": { | ||
135 | "__type__": "cc.Vec2", | ||
136 | "x": 0.5, | ||
137 | "y": 0.5 | ||
138 | }, | ||
139 | "_position": { | ||
140 | "__type__": "cc.Vec3", | ||
141 | "x": 0, | ||
142 | "y": 0, | ||
143 | "z": 0 | ||
144 | }, | ||
145 | "_scale": { | ||
146 | "__type__": "cc.Vec3", | ||
147 | "x": 1, | ||
148 | "y": 1, | ||
149 | "z": 1 | ||
150 | }, | ||
151 | "_trs": { | ||
152 | "__type__": "TypedArray", | ||
153 | "ctor": "Float32Array", | ||
154 | "array": [ | ||
155 | 0, | ||
156 | 19.5, | ||
157 | 0, | ||
158 | 0, | ||
159 | 0, | ||
160 | 0, | ||
161 | 1, | ||
162 | 1, | ||
163 | 1, | ||
164 | 1 | ||
165 | ] | ||
166 | }, | ||
167 | "_eulerAngles": { | ||
168 | "__type__": "cc.Vec3", | ||
169 | "x": 0, | ||
170 | "y": 0, | ||
171 | "z": 0 | ||
172 | }, | ||
173 | "_skewX": 0, | ||
174 | "_skewY": 0, | ||
175 | "_is3DNode": false, | ||
176 | "_groupIndex": 0, | ||
177 | "groupIndex": 0, | ||
178 | "_id": "" | ||
179 | }, | ||
180 | { | ||
181 | "__type__": "cc.Sprite", | ||
182 | "_name": "", | ||
183 | "_objFlags": 0, | ||
184 | "node": { | ||
185 | "__id__": 2 | ||
186 | }, | ||
187 | "_enabled": true, | ||
188 | "_materials": [ | ||
189 | { | ||
190 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
191 | } | ||
192 | ], | ||
193 | "_srcBlendFactor": 770, | ||
194 | "_dstBlendFactor": 771, | ||
195 | "_spriteFrame": null, | ||
196 | "_type": 0, | ||
197 | "_sizeMode": 0, | ||
198 | "_fillType": 0, | ||
199 | "_fillCenter": { | ||
200 | "__type__": "cc.Vec2", | ||
201 | "x": 0, | ||
202 | "y": 0 | ||
203 | }, | ||
204 | "_fillStart": 0, | ||
205 | "_fillRange": 0, | ||
206 | "_isTrimmedMode": true, | ||
207 | "_atlas": null, | ||
208 | "_id": "" | ||
209 | }, | ||
210 | { | ||
211 | "__type__": "cc.Widget", | ||
212 | "_name": "", | ||
213 | "_objFlags": 0, | ||
214 | "node": { | ||
215 | "__id__": 2 | ||
216 | }, | ||
217 | "_enabled": true, | ||
218 | "alignMode": 1, | ||
219 | "_target": null, | ||
220 | "_alignFlags": 1, | ||
221 | "_left": 0, | ||
222 | "_right": 0, | ||
223 | "_top": 0, | ||
224 | "_bottom": 0, | ||
225 | "_verticalCenter": 0, | ||
226 | "_horizontalCenter": 0, | ||
227 | "_isAbsLeft": true, | ||
228 | "_isAbsRight": true, | ||
229 | "_isAbsTop": true, | ||
230 | "_isAbsBottom": true, | ||
231 | "_isAbsHorizontalCenter": true, | ||
232 | "_isAbsVerticalCenter": true, | ||
233 | "_originalWidth": 0, | ||
234 | "_originalHeight": 0, | ||
235 | "_id": "" | ||
236 | }, | ||
237 | { | ||
238 | "__type__": "cc.PrefabInfo", | ||
239 | "root": { | ||
240 | "__id__": 1 | ||
241 | }, | ||
242 | "asset": { | ||
243 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
244 | }, | ||
245 | "fileId": "9dK5JH1NJC3oacXNVa4k5S", | ||
246 | "sync": false | ||
247 | }, | ||
248 | { | ||
249 | "__type__": "cc.Node", | ||
250 | "_name": "PageView", | ||
251 | "_objFlags": 0, | ||
252 | "_parent": { | ||
253 | "__id__": 1 | ||
254 | }, | ||
255 | "_children": [ | ||
256 | { | ||
257 | "__id__": 7 | ||
258 | }, | ||
259 | { | ||
260 | "__id__": 10 | ||
261 | }, | ||
262 | { | ||
263 | "__id__": 14 | ||
264 | } | ||
265 | ], | ||
266 | "_active": false, | ||
267 | "_components": [ | ||
268 | { | ||
269 | "__id__": 18 | ||
270 | } | ||
271 | ], | ||
272 | "_prefab": { | ||
273 | "__id__": 19 | ||
274 | }, | ||
275 | "_opacity": 255, | ||
276 | "_color": { | ||
277 | "__type__": "cc.Color", | ||
278 | "r": 255, | ||
279 | "g": 255, | ||
280 | "b": 255, | ||
281 | "a": 255 | ||
282 | }, | ||
283 | "_contentSize": { | ||
284 | "__type__": "cc.Size", | ||
285 | "width": 90, | ||
286 | "height": 25 | ||
287 | }, | ||
288 | "_anchorPoint": { | ||
289 | "__type__": "cc.Vec2", | ||
290 | "x": 0.5, | ||
291 | "y": 0.5 | ||
292 | }, | ||
293 | "_position": { | ||
294 | "__type__": "cc.Vec3", | ||
295 | "x": -43.5, | ||
296 | "y": 96, | ||
297 | "z": 0 | ||
298 | }, | ||
299 | "_scale": { | ||
300 | "__type__": "cc.Vec3", | ||
301 | "x": 1, | ||
302 | "y": 1, | ||
303 | "z": 1 | ||
304 | }, | ||
305 | "_trs": { | ||
306 | "__type__": "TypedArray", | ||
307 | "ctor": "Float32Array", | ||
308 | "array": [ | ||
309 | -43.5, | ||
310 | 96, | ||
311 | 0, | ||
312 | 0, | ||
313 | 0, | ||
314 | 0, | ||
315 | 1, | ||
316 | 1, | ||
317 | 1, | ||
318 | 1 | ||
319 | ] | ||
320 | }, | ||
321 | "_eulerAngles": { | ||
322 | "__type__": "cc.Vec3", | ||
323 | "x": 0, | ||
324 | "y": 0, | ||
325 | "z": 0 | ||
326 | }, | ||
327 | "_skewX": 0, | ||
328 | "_skewY": 0, | ||
329 | "_is3DNode": false, | ||
330 | "_groupIndex": 0, | ||
331 | "groupIndex": 0, | ||
332 | "_id": "" | ||
333 | }, | ||
334 | { | ||
335 | "__type__": "cc.Node", | ||
336 | "_name": "Bg", | ||
337 | "_objFlags": 0, | ||
338 | "_parent": { | ||
339 | "__id__": 6 | ||
340 | }, | ||
341 | "_children": [], | ||
342 | "_active": true, | ||
343 | "_components": [ | ||
344 | { | ||
345 | "__id__": 8 | ||
346 | } | ||
347 | ], | ||
348 | "_prefab": { | ||
349 | "__id__": 9 | ||
350 | }, | ||
351 | "_opacity": 100, | ||
352 | "_color": { | ||
353 | "__type__": "cc.Color", | ||
354 | "r": 0, | ||
355 | "g": 0, | ||
356 | "b": 0, | ||
357 | "a": 255 | ||
358 | }, | ||
359 | "_contentSize": { | ||
360 | "__type__": "cc.Size", | ||
361 | "width": 90, | ||
362 | "height": 25 | ||
363 | }, | ||
364 | "_anchorPoint": { | ||
365 | "__type__": "cc.Vec2", | ||
366 | "x": 0.5, | ||
367 | "y": 0.5 | ||
368 | }, | ||
369 | "_position": { | ||
370 | "__type__": "cc.Vec3", | ||
371 | "x": 0, | ||
372 | "y": 0, | ||
373 | "z": 0 | ||
374 | }, | ||
375 | "_scale": { | ||
376 | "__type__": "cc.Vec3", | ||
377 | "x": 1, | ||
378 | "y": 1, | ||
379 | "z": 1 | ||
380 | }, | ||
381 | "_trs": { | ||
382 | "__type__": "TypedArray", | ||
383 | "ctor": "Float32Array", | ||
384 | "array": [ | ||
385 | 0, | ||
386 | 0, | ||
387 | 0, | ||
388 | 0, | ||
389 | 0, | ||
390 | 0, | ||
391 | 1, | ||
392 | 1, | ||
393 | 1, | ||
394 | 1 | ||
395 | ] | ||
396 | }, | ||
397 | "_eulerAngles": { | ||
398 | "__type__": "cc.Vec3", | ||
399 | "x": 0, | ||
400 | "y": 0, | ||
401 | "z": 0 | ||
402 | }, | ||
403 | "_skewX": 0, | ||
404 | "_skewY": 0, | ||
405 | "_is3DNode": false, | ||
406 | "_groupIndex": 0, | ||
407 | "groupIndex": 0, | ||
408 | "_id": "" | ||
409 | }, | ||
410 | { | ||
411 | "__type__": "cc.Sprite", | ||
412 | "_name": "", | ||
413 | "_objFlags": 0, | ||
414 | "node": { | ||
415 | "__id__": 7 | ||
416 | }, | ||
417 | "_enabled": true, | ||
418 | "_materials": [ | ||
419 | { | ||
420 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
421 | } | ||
422 | ], | ||
423 | "_srcBlendFactor": 770, | ||
424 | "_dstBlendFactor": 771, | ||
425 | "_spriteFrame": { | ||
426 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" | ||
427 | }, | ||
428 | "_type": 0, | ||
429 | "_sizeMode": 0, | ||
430 | "_fillType": 0, | ||
431 | "_fillCenter": { | ||
432 | "__type__": "cc.Vec2", | ||
433 | "x": 0, | ||
434 | "y": 0 | ||
435 | }, | ||
436 | "_fillStart": 0, | ||
437 | "_fillRange": 0, | ||
438 | "_isTrimmedMode": true, | ||
439 | "_atlas": null, | ||
440 | "_id": "" | ||
441 | }, | ||
442 | { | ||
443 | "__type__": "cc.PrefabInfo", | ||
444 | "root": { | ||
445 | "__id__": 1 | ||
446 | }, | ||
447 | "asset": { | ||
448 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
449 | }, | ||
450 | "fileId": "f8HjgG86VB25wiAvS8S8Pl", | ||
451 | "sync": false | ||
452 | }, | ||
453 | { | ||
454 | "__type__": "cc.Node", | ||
455 | "_name": "eye", | ||
456 | "_objFlags": 0, | ||
457 | "_parent": { | ||
458 | "__id__": 6 | ||
459 | }, | ||
460 | "_children": [], | ||
461 | "_active": true, | ||
462 | "_components": [ | ||
463 | { | ||
464 | "__id__": 11 | ||
465 | }, | ||
466 | { | ||
467 | "__id__": 12 | ||
468 | } | ||
469 | ], | ||
470 | "_prefab": { | ||
471 | "__id__": 13 | ||
472 | }, | ||
473 | "_opacity": 255, | ||
474 | "_color": { | ||
475 | "__type__": "cc.Color", | ||
476 | "r": 255, | ||
477 | "g": 255, | ||
478 | "b": 255, | ||
479 | "a": 255 | ||
480 | }, | ||
481 | "_contentSize": { | ||
482 | "__type__": "cc.Size", | ||
483 | "width": 26, | ||
484 | "height": 18 | ||
485 | }, | ||
486 | "_anchorPoint": { | ||
487 | "__type__": "cc.Vec2", | ||
488 | "x": 0.5, | ||
489 | "y": 0.5 | ||
490 | }, | ||
491 | "_position": { | ||
492 | "__type__": "cc.Vec3", | ||
493 | "x": -27, | ||
494 | "y": 0, | ||
495 | "z": 0 | ||
496 | }, | ||
497 | "_scale": { | ||
498 | "__type__": "cc.Vec3", | ||
499 | "x": 1, | ||
500 | "y": 1, | ||
501 | "z": 1 | ||
502 | }, | ||
503 | "_trs": { | ||
504 | "__type__": "TypedArray", | ||
505 | "ctor": "Float32Array", | ||
506 | "array": [ | ||
507 | -27, | ||
508 | 0, | ||
509 | 0, | ||
510 | 0, | ||
511 | 0, | ||
512 | 0, | ||
513 | 1, | ||
514 | 1, | ||
515 | 1, | ||
516 | 1 | ||
517 | ] | ||
518 | }, | ||
519 | "_eulerAngles": { | ||
520 | "__type__": "cc.Vec3", | ||
521 | "x": 0, | ||
522 | "y": 0, | ||
523 | "z": 0 | ||
524 | }, | ||
525 | "_skewX": 0, | ||
526 | "_skewY": 0, | ||
527 | "_is3DNode": false, | ||
528 | "_groupIndex": 0, | ||
529 | "groupIndex": 0, | ||
530 | "_id": "" | ||
531 | }, | ||
532 | { | ||
533 | "__type__": "cc.Sprite", | ||
534 | "_name": "", | ||
535 | "_objFlags": 0, | ||
536 | "node": { | ||
537 | "__id__": 10 | ||
538 | }, | ||
539 | "_enabled": true, | ||
540 | "_materials": [], | ||
541 | "_srcBlendFactor": 770, | ||
542 | "_dstBlendFactor": 771, | ||
543 | "_spriteFrame": null, | ||
544 | "_type": 0, | ||
545 | "_sizeMode": 1, | ||
546 | "_fillType": 0, | ||
547 | "_fillCenter": { | ||
548 | "__type__": "cc.Vec2", | ||
549 | "x": 0, | ||
550 | "y": 0 | ||
551 | }, | ||
552 | "_fillStart": 0, | ||
553 | "_fillRange": 0, | ||
554 | "_isTrimmedMode": true, | ||
555 | "_atlas": null, | ||
556 | "_id": "" | ||
557 | }, | ||
558 | { | ||
559 | "__type__": "cc.Widget", | ||
560 | "_name": "", | ||
561 | "_objFlags": 0, | ||
562 | "node": { | ||
563 | "__id__": 10 | ||
564 | }, | ||
565 | "_enabled": true, | ||
566 | "alignMode": 0, | ||
567 | "_target": null, | ||
568 | "_alignFlags": 8, | ||
569 | "_left": 5, | ||
570 | "_right": 0, | ||
571 | "_top": 0, | ||
572 | "_bottom": 0, | ||
573 | "_verticalCenter": 0, | ||
574 | "_horizontalCenter": 0, | ||
575 | "_isAbsLeft": true, | ||
576 | "_isAbsRight": true, | ||
577 | "_isAbsTop": true, | ||
578 | "_isAbsBottom": true, | ||
579 | "_isAbsHorizontalCenter": true, | ||
580 | "_isAbsVerticalCenter": true, | ||
581 | "_originalWidth": 0, | ||
582 | "_originalHeight": 0, | ||
583 | "_id": "" | ||
584 | }, | ||
585 | { | ||
586 | "__type__": "cc.PrefabInfo", | ||
587 | "root": { | ||
588 | "__id__": 1 | ||
589 | }, | ||
590 | "asset": { | ||
591 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
592 | }, | ||
593 | "fileId": "6edJytnOFI5ozVSnC2uyb0", | ||
594 | "sync": false | ||
595 | }, | ||
596 | { | ||
597 | "__type__": "cc.Node", | ||
598 | "_name": "Text", | ||
599 | "_objFlags": 0, | ||
600 | "_parent": { | ||
601 | "__id__": 6 | ||
602 | }, | ||
603 | "_children": [], | ||
604 | "_active": true, | ||
605 | "_components": [ | ||
606 | { | ||
607 | "__id__": 15 | ||
608 | }, | ||
609 | { | ||
610 | "__id__": 16 | ||
611 | } | ||
612 | ], | ||
613 | "_prefab": { | ||
614 | "__id__": 17 | ||
615 | }, | ||
616 | "_opacity": 255, | ||
617 | "_color": { | ||
618 | "__type__": "cc.Color", | ||
619 | "r": 255, | ||
620 | "g": 255, | ||
621 | "b": 255, | ||
622 | "a": 255 | ||
623 | }, | ||
624 | "_contentSize": { | ||
625 | "__type__": "cc.Size", | ||
626 | "width": 0, | ||
627 | "height": 17.64 | ||
628 | }, | ||
629 | "_anchorPoint": { | ||
630 | "__type__": "cc.Vec2", | ||
631 | "x": 0.5, | ||
632 | "y": 0.5 | ||
633 | }, | ||
634 | "_position": { | ||
635 | "__type__": "cc.Vec3", | ||
636 | "x": 16.1, | ||
637 | "y": 0, | ||
638 | "z": 0 | ||
639 | }, | ||
640 | "_scale": { | ||
641 | "__type__": "cc.Vec3", | ||
642 | "x": 1, | ||
643 | "y": 1, | ||
644 | "z": 1 | ||
645 | }, | ||
646 | "_trs": { | ||
647 | "__type__": "TypedArray", | ||
648 | "ctor": "Float32Array", | ||
649 | "array": [ | ||
650 | 16.100000381469727, | ||
651 | 0, | ||
652 | 0, | ||
653 | 0, | ||
654 | 0, | ||
655 | 0, | ||
656 | 1, | ||
657 | 1, | ||
658 | 1, | ||
659 | 1 | ||
660 | ] | ||
661 | }, | ||
662 | "_eulerAngles": { | ||
663 | "__type__": "cc.Vec3", | ||
664 | "x": 0, | ||
665 | "y": 0, | ||
666 | "z": 0 | ||
667 | }, | ||
668 | "_skewX": 0, | ||
669 | "_skewY": 0, | ||
670 | "_is3DNode": false, | ||
671 | "_groupIndex": 0, | ||
672 | "groupIndex": 0, | ||
673 | "_id": "" | ||
674 | }, | ||
675 | { | ||
676 | "__type__": "cc.Label", | ||
677 | "_name": "", | ||
678 | "_objFlags": 0, | ||
679 | "node": { | ||
680 | "__id__": 14 | ||
681 | }, | ||
682 | "_enabled": true, | ||
683 | "_materials": [ | ||
684 | { | ||
685 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
686 | } | ||
687 | ], | ||
688 | "_useOriginalSize": false, | ||
689 | "_string": "", | ||
690 | "_N$string": "", | ||
691 | "_fontSize": 14, | ||
692 | "_lineHeight": 14, | ||
693 | "_enableWrapText": true, | ||
694 | "_N$file": null, | ||
695 | "_isSystemFontUsed": true, | ||
696 | "_spacingX": 0, | ||
697 | "_batchAsBitmap": false, | ||
698 | "_N$horizontalAlign": 1, | ||
699 | "_N$verticalAlign": 1, | ||
700 | "_N$fontFamily": "Arial", | ||
701 | "_N$overflow": 0, | ||
702 | "_N$cacheMode": 0, | ||
703 | "_id": "" | ||
704 | }, | ||
705 | { | ||
706 | "__type__": "cc.Widget", | ||
707 | "_name": "", | ||
708 | "_objFlags": 0, | ||
709 | "node": { | ||
710 | "__id__": 14 | ||
711 | }, | ||
712 | "_enabled": true, | ||
713 | "alignMode": 0, | ||
714 | "_target": null, | ||
715 | "_alignFlags": 32, | ||
716 | "_left": 0, | ||
717 | "_right": 28.9, | ||
718 | "_top": 0, | ||
719 | "_bottom": 0, | ||
720 | "_verticalCenter": 0, | ||
721 | "_horizontalCenter": 0, | ||
722 | "_isAbsLeft": true, | ||
723 | "_isAbsRight": true, | ||
724 | "_isAbsTop": true, | ||
725 | "_isAbsBottom": true, | ||
726 | "_isAbsHorizontalCenter": true, | ||
727 | "_isAbsVerticalCenter": true, | ||
728 | "_originalWidth": 0, | ||
729 | "_originalHeight": 0, | ||
730 | "_id": "" | ||
731 | }, | ||
732 | { | ||
733 | "__type__": "cc.PrefabInfo", | ||
734 | "root": { | ||
735 | "__id__": 1 | ||
736 | }, | ||
737 | "asset": { | ||
738 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
739 | }, | ||
740 | "fileId": "78vWEB3NFG9bseOAEKTbON", | ||
741 | "sync": false | ||
742 | }, | ||
743 | { | ||
744 | "__type__": "cc.Widget", | ||
745 | "_name": "", | ||
746 | "_objFlags": 0, | ||
747 | "node": { | ||
748 | "__id__": 6 | ||
749 | }, | ||
750 | "_enabled": true, | ||
751 | "alignMode": 1, | ||
752 | "_target": null, | ||
753 | "_alignFlags": 9, | ||
754 | "_left": 0, | ||
755 | "_right": 0, | ||
756 | "_top": 0, | ||
757 | "_bottom": 0, | ||
758 | "_verticalCenter": 0, | ||
759 | "_horizontalCenter": 0, | ||
760 | "_isAbsLeft": true, | ||
761 | "_isAbsRight": true, | ||
762 | "_isAbsTop": true, | ||
763 | "_isAbsBottom": true, | ||
764 | "_isAbsHorizontalCenter": true, | ||
765 | "_isAbsVerticalCenter": true, | ||
766 | "_originalWidth": 0, | ||
767 | "_originalHeight": 0, | ||
768 | "_id": "" | ||
769 | }, | ||
770 | { | ||
771 | "__type__": "cc.PrefabInfo", | ||
772 | "root": { | ||
773 | "__id__": 1 | ||
774 | }, | ||
775 | "asset": { | ||
776 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
777 | }, | ||
778 | "fileId": "72eHRdSeVDx5wCev/w95zi", | ||
779 | "sync": false | ||
780 | }, | ||
781 | { | ||
782 | "__type__": "cc.Node", | ||
783 | "_name": "Normal", | ||
784 | "_objFlags": 0, | ||
785 | "_parent": { | ||
786 | "__id__": 1 | ||
787 | }, | ||
788 | "_children": [ | ||
789 | { | ||
790 | "__id__": 21 | ||
791 | }, | ||
792 | { | ||
793 | "__id__": 24 | ||
794 | } | ||
795 | ], | ||
796 | "_active": true, | ||
797 | "_components": [ | ||
798 | { | ||
799 | "__id__": 28 | ||
800 | }, | ||
801 | { | ||
802 | "__id__": 29 | ||
803 | } | ||
804 | ], | ||
805 | "_prefab": { | ||
806 | "__id__": 30 | ||
807 | }, | ||
808 | "_opacity": 255, | ||
809 | "_color": { | ||
810 | "__type__": "cc.Color", | ||
811 | "r": 255, | ||
812 | "g": 255, | ||
813 | "b": 255, | ||
814 | "a": 255 | ||
815 | }, | ||
816 | "_contentSize": { | ||
817 | "__type__": "cc.Size", | ||
818 | "width": 270, | ||
819 | "height": 40 | ||
820 | }, | ||
821 | "_anchorPoint": { | ||
822 | "__type__": "cc.Vec2", | ||
823 | "x": 0.5, | ||
824 | "y": 0.5 | ||
825 | }, | ||
826 | "_trs": { | ||
827 | "__type__": "TypedArray", | ||
828 | "ctor": "Float32Array", | ||
829 | "array": [ | ||
830 | 0, | ||
831 | -83.5, | ||
832 | 0, | ||
833 | 0, | ||
834 | 0, | ||
835 | 0, | ||
836 | 1, | ||
837 | 1, | ||
838 | 1, | ||
839 | 1 | ||
840 | ] | ||
841 | }, | ||
842 | "_eulerAngles": { | ||
843 | "__type__": "cc.Vec3", | ||
844 | "x": 0, | ||
845 | "y": 0, | ||
846 | "z": 0 | ||
847 | }, | ||
848 | "_skewX": 0, | ||
849 | "_skewY": 0, | ||
850 | "_is3DNode": false, | ||
851 | "_groupIndex": 0, | ||
852 | "groupIndex": 0, | ||
853 | "_id": "" | ||
854 | }, | ||
855 | { | ||
856 | "__type__": "cc.Node", | ||
857 | "_name": "New Sprite(Splash)", | ||
858 | "_objFlags": 0, | ||
859 | "_parent": { | ||
860 | "__id__": 20 | ||
861 | }, | ||
862 | "_children": [], | ||
863 | "_active": true, | ||
864 | "_components": [ | ||
865 | { | ||
866 | "__id__": 22 | ||
867 | } | ||
868 | ], | ||
869 | "_prefab": { | ||
870 | "__id__": 23 | ||
871 | }, | ||
872 | "_opacity": 25, | ||
873 | "_color": { | ||
874 | "__type__": "cc.Color", | ||
875 | "r": 255, | ||
876 | "g": 255, | ||
877 | "b": 255, | ||
878 | "a": 255 | ||
879 | }, | ||
880 | "_contentSize": { | ||
881 | "__type__": "cc.Size", | ||
882 | "width": 270, | ||
883 | "height": 40 | ||
884 | }, | ||
885 | "_anchorPoint": { | ||
886 | "__type__": "cc.Vec2", | ||
887 | "x": 0.5, | ||
888 | "y": 0.5 | ||
889 | }, | ||
890 | "_trs": { | ||
891 | "__type__": "TypedArray", | ||
892 | "ctor": "Float32Array", | ||
893 | "array": [ | ||
894 | 0, | ||
895 | 0, | ||
896 | 0, | ||
897 | 0, | ||
898 | 0, | ||
899 | 0, | ||
900 | 1, | ||
901 | 1, | ||
902 | 1, | ||
903 | 1 | ||
904 | ] | ||
905 | }, | ||
906 | "_eulerAngles": { | ||
907 | "__type__": "cc.Vec3", | ||
908 | "x": 0, | ||
909 | "y": 0, | ||
910 | "z": 0 | ||
911 | }, | ||
912 | "_skewX": 0, | ||
913 | "_skewY": 0, | ||
914 | "_is3DNode": false, | ||
915 | "_groupIndex": 0, | ||
916 | "groupIndex": 0, | ||
917 | "_id": "" | ||
918 | }, | ||
919 | { | ||
920 | "__type__": "cc.Sprite", | ||
921 | "_name": "", | ||
922 | "_objFlags": 0, | ||
923 | "node": { | ||
924 | "__id__": 21 | ||
925 | }, | ||
926 | "_enabled": true, | ||
927 | "_materials": [ | ||
928 | { | ||
929 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
930 | } | ||
931 | ], | ||
932 | "_srcBlendFactor": 770, | ||
933 | "_dstBlendFactor": 771, | ||
934 | "_spriteFrame": { | ||
935 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" | ||
936 | }, | ||
937 | "_type": 0, | ||
938 | "_sizeMode": 0, | ||
939 | "_fillType": 0, | ||
940 | "_fillCenter": { | ||
941 | "__type__": "cc.Vec2", | ||
942 | "x": 0, | ||
943 | "y": 0 | ||
944 | }, | ||
945 | "_fillStart": 0, | ||
946 | "_fillRange": 0, | ||
947 | "_isTrimmedMode": true, | ||
948 | "_atlas": null, | ||
949 | "_id": "" | ||
950 | }, | ||
951 | { | ||
952 | "__type__": "cc.PrefabInfo", | ||
953 | "root": { | ||
954 | "__id__": 1 | ||
955 | }, | ||
956 | "asset": { | ||
957 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
958 | }, | ||
959 | "fileId": "54rS8a+ixPK7y0SlSk8vBe", | ||
960 | "sync": false | ||
961 | }, | ||
962 | { | ||
963 | "__type__": "cc.Node", | ||
964 | "_name": "Name", | ||
965 | "_objFlags": 0, | ||
966 | "_parent": { | ||
967 | "__id__": 20 | ||
968 | }, | ||
969 | "_children": [], | ||
970 | "_active": true, | ||
971 | "_components": [ | ||
972 | { | ||
973 | "__id__": 25 | ||
974 | }, | ||
975 | { | ||
976 | "__id__": 26 | ||
977 | } | ||
978 | ], | ||
979 | "_prefab": { | ||
980 | "__id__": 27 | ||
981 | }, | ||
982 | "_opacity": 255, | ||
983 | "_color": { | ||
984 | "__type__": "cc.Color", | ||
985 | "r": 255, | ||
986 | "g": 255, | ||
987 | "b": 255, | ||
988 | "a": 255 | ||
989 | }, | ||
990 | "_contentSize": { | ||
991 | "__type__": "cc.Size", | ||
992 | "width": 76.67, | ||
993 | "height": 35.28 | ||
994 | }, | ||
995 | "_anchorPoint": { | ||
996 | "__type__": "cc.Vec2", | ||
997 | "x": 0, | ||
998 | "y": 0.5 | ||
999 | }, | ||
1000 | "_trs": { | ||
1001 | "__type__": "TypedArray", | ||
1002 | "ctor": "Float32Array", | ||
1003 | "array": [ | ||
1004 | -125, | ||
1005 | 0, | ||
1006 | 0, | ||
1007 | 0, | ||
1008 | 0, | ||
1009 | 0, | ||
1010 | 1, | ||
1011 | 1, | ||
1012 | 1, | ||
1013 | 1 | ||
1014 | ] | ||
1015 | }, | ||
1016 | "_eulerAngles": { | ||
1017 | "__type__": "cc.Vec3", | ||
1018 | "x": 0, | ||
1019 | "y": 0, | ||
1020 | "z": 0 | ||
1021 | }, | ||
1022 | "_skewX": 0, | ||
1023 | "_skewY": 0, | ||
1024 | "_is3DNode": false, | ||
1025 | "_groupIndex": 0, | ||
1026 | "groupIndex": 0, | ||
1027 | "_id": "" | ||
1028 | }, | ||
1029 | { | ||
1030 | "__type__": "cc.Label", | ||
1031 | "_name": "", | ||
1032 | "_objFlags": 0, | ||
1033 | "node": { | ||
1034 | "__id__": 24 | ||
1035 | }, | ||
1036 | "_enabled": true, | ||
1037 | "_materials": [ | ||
1038 | { | ||
1039 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
1040 | } | ||
1041 | ], | ||
1042 | "_useOriginalSize": false, | ||
1043 | "_string": "载入中...", | ||
1044 | "_N$string": "载入中...", | ||
1045 | "_fontSize": 20, | ||
1046 | "_lineHeight": 28, | ||
1047 | "_enableWrapText": true, | ||
1048 | "_N$file": null, | ||
1049 | "_isSystemFontUsed": true, | ||
1050 | "_spacingX": 0, | ||
1051 | "_batchAsBitmap": false, | ||
1052 | "_N$horizontalAlign": 1, | ||
1053 | "_N$verticalAlign": 1, | ||
1054 | "_N$fontFamily": "Arial", | ||
1055 | "_N$overflow": 0, | ||
1056 | "_N$cacheMode": 0, | ||
1057 | "_id": "" | ||
1058 | }, | ||
1059 | { | ||
1060 | "__type__": "cc.Widget", | ||
1061 | "_name": "", | ||
1062 | "_objFlags": 0, | ||
1063 | "node": { | ||
1064 | "__id__": 24 | ||
1065 | }, | ||
1066 | "_enabled": true, | ||
1067 | "alignMode": 1, | ||
1068 | "_target": null, | ||
1069 | "_alignFlags": 8, | ||
1070 | "_left": 10, | ||
1071 | "_right": 183.32999999999998, | ||
1072 | "_top": 0, | ||
1073 | "_bottom": 0, | ||
1074 | "_verticalCenter": 0, | ||
1075 | "_horizontalCenter": 0, | ||
1076 | "_isAbsLeft": true, | ||
1077 | "_isAbsRight": true, | ||
1078 | "_isAbsTop": true, | ||
1079 | "_isAbsBottom": true, | ||
1080 | "_isAbsHorizontalCenter": true, | ||
1081 | "_isAbsVerticalCenter": true, | ||
1082 | "_originalWidth": 76.67, | ||
1083 | "_originalHeight": 0, | ||
1084 | "_id": "" | ||
1085 | }, | ||
1086 | { | ||
1087 | "__type__": "cc.PrefabInfo", | ||
1088 | "root": { | ||
1089 | "__id__": 1 | ||
1090 | }, | ||
1091 | "asset": { | ||
1092 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
1093 | }, | ||
1094 | "fileId": "a1EsZEt7pBVa7KtyZOT4Pw", | ||
1095 | "sync": false | ||
1096 | }, | ||
1097 | { | ||
1098 | "__type__": "cc.Mask", | ||
1099 | "_name": "", | ||
1100 | "_objFlags": 0, | ||
1101 | "node": { | ||
1102 | "__id__": 20 | ||
1103 | }, | ||
1104 | "_enabled": true, | ||
1105 | "_materials": [ | ||
1106 | { | ||
1107 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
1108 | } | ||
1109 | ], | ||
1110 | "_spriteFrame": null, | ||
1111 | "_type": 0, | ||
1112 | "_segments": 64, | ||
1113 | "_N$alphaThreshold": 0, | ||
1114 | "_N$inverted": false, | ||
1115 | "_id": "" | ||
1116 | }, | ||
1117 | { | ||
1118 | "__type__": "cc.Widget", | ||
1119 | "_name": "", | ||
1120 | "_objFlags": 0, | ||
1121 | "node": { | ||
1122 | "__id__": 20 | ||
1123 | }, | ||
1124 | "_enabled": true, | ||
1125 | "alignMode": 1, | ||
1126 | "_target": null, | ||
1127 | "_alignFlags": 4, | ||
1128 | "_left": 0, | ||
1129 | "_right": 0, | ||
1130 | "_top": 0, | ||
1131 | "_bottom": 0, | ||
1132 | "_verticalCenter": 0, | ||
1133 | "_horizontalCenter": 0, | ||
1134 | "_isAbsLeft": true, | ||
1135 | "_isAbsRight": true, | ||
1136 | "_isAbsTop": true, | ||
1137 | "_isAbsBottom": true, | ||
1138 | "_isAbsHorizontalCenter": true, | ||
1139 | "_isAbsVerticalCenter": true, | ||
1140 | "_originalWidth": 0, | ||
1141 | "_originalHeight": 0, | ||
1142 | "_id": "" | ||
1143 | }, | ||
1144 | { | ||
1145 | "__type__": "cc.PrefabInfo", | ||
1146 | "root": { | ||
1147 | "__id__": 1 | ||
1148 | }, | ||
1149 | "asset": { | ||
1150 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
1151 | }, | ||
1152 | "fileId": "69QqufpuBN4LlsPULNuAMD", | ||
1153 | "sync": false | ||
1154 | }, | ||
1155 | { | ||
1156 | "__type__": "cc.Node", | ||
1157 | "_name": "Name", | ||
1158 | "_objFlags": 0, | ||
1159 | "_parent": { | ||
1160 | "__id__": 1 | ||
1161 | }, | ||
1162 | "_children": [ | ||
1163 | { | ||
1164 | "__id__": 32 | ||
1165 | }, | ||
1166 | { | ||
1167 | "__id__": 35 | ||
1168 | }, | ||
1169 | { | ||
1170 | "__id__": 39 | ||
1171 | }, | ||
1172 | { | ||
1173 | "__id__": 55 | ||
1174 | } | ||
1175 | ], | ||
1176 | "_active": false, | ||
1177 | "_components": [ | ||
1178 | { | ||
1179 | "__id__": 63 | ||
1180 | }, | ||
1181 | { | ||
1182 | "__id__": 64 | ||
1183 | } | ||
1184 | ], | ||
1185 | "_prefab": { | ||
1186 | "__id__": 65 | ||
1187 | }, | ||
1188 | "_opacity": 255, | ||
1189 | "_color": { | ||
1190 | "__type__": "cc.Color", | ||
1191 | "r": 255, | ||
1192 | "g": 255, | ||
1193 | "b": 255, | ||
1194 | "a": 255 | ||
1195 | }, | ||
1196 | "_contentSize": { | ||
1197 | "__type__": "cc.Size", | ||
1198 | "width": 270, | ||
1199 | "height": 40 | ||
1200 | }, | ||
1201 | "_anchorPoint": { | ||
1202 | "__type__": "cc.Vec2", | ||
1203 | "x": 0.5, | ||
1204 | "y": 0.5 | ||
1205 | }, | ||
1206 | "_position": { | ||
1207 | "__type__": "cc.Vec3", | ||
1208 | "x": 0, | ||
1209 | "y": -93.5, | ||
1210 | "z": 0 | ||
1211 | }, | ||
1212 | "_scale": { | ||
1213 | "__type__": "cc.Vec3", | ||
1214 | "x": 1, | ||
1215 | "y": 1, | ||
1216 | "z": 1 | ||
1217 | }, | ||
1218 | "_trs": { | ||
1219 | "__type__": "TypedArray", | ||
1220 | "ctor": "Float32Array", | ||
1221 | "array": [ | ||
1222 | 0, | ||
1223 | -83.5, | ||
1224 | 0, | ||
1225 | 0, | ||
1226 | 0, | ||
1227 | 0, | ||
1228 | 1, | ||
1229 | 1, | ||
1230 | 1, | ||
1231 | 1 | ||
1232 | ] | ||
1233 | }, | ||
1234 | "_eulerAngles": { | ||
1235 | "__type__": "cc.Vec3", | ||
1236 | "x": 0, | ||
1237 | "y": 0, | ||
1238 | "z": 0 | ||
1239 | }, | ||
1240 | "_skewX": 0, | ||
1241 | "_skewY": 0, | ||
1242 | "_is3DNode": false, | ||
1243 | "_groupIndex": 0, | ||
1244 | "groupIndex": 0, | ||
1245 | "_id": "" | ||
1246 | }, | ||
1247 | { | ||
1248 | "__type__": "cc.Node", | ||
1249 | "_name": "NameBg", | ||
1250 | "_objFlags": 0, | ||
1251 | "_parent": { | ||
1252 | "__id__": 31 | ||
1253 | }, | ||
1254 | "_children": [], | ||
1255 | "_active": true, | ||
1256 | "_components": [ | ||
1257 | { | ||
1258 | "__id__": 33 | ||
1259 | } | ||
1260 | ], | ||
1261 | "_prefab": { | ||
1262 | "__id__": 34 | ||
1263 | }, | ||
1264 | "_opacity": 255, | ||
1265 | "_color": { | ||
1266 | "__type__": "cc.Color", | ||
1267 | "r": 255, | ||
1268 | "g": 255, | ||
1269 | "b": 255, | ||
1270 | "a": 255 | ||
1271 | }, | ||
1272 | "_contentSize": { | ||
1273 | "__type__": "cc.Size", | ||
1274 | "width": 270, | ||
1275 | "height": 40 | ||
1276 | }, | ||
1277 | "_anchorPoint": { | ||
1278 | "__type__": "cc.Vec2", | ||
1279 | "x": 0.5, | ||
1280 | "y": 0.5 | ||
1281 | }, | ||
1282 | "_position": { | ||
1283 | "__type__": "cc.Vec3", | ||
1284 | "x": 0, | ||
1285 | "y": 0, | ||
1286 | "z": 0 | ||
1287 | }, | ||
1288 | "_scale": { | ||
1289 | "__type__": "cc.Vec3", | ||
1290 | "x": 1, | ||
1291 | "y": 1, | ||
1292 | "z": 1 | ||
1293 | }, | ||
1294 | "_trs": { | ||
1295 | "__type__": "TypedArray", | ||
1296 | "ctor": "Float32Array", | ||
1297 | "array": [ | ||
1298 | 0, | ||
1299 | 0, | ||
1300 | 0, | ||
1301 | 0, | ||
1302 | 0, | ||
1303 | 0, | ||
1304 | 1, | ||
1305 | 1, | ||
1306 | 1, | ||
1307 | 1 | ||
1308 | ] | ||
1309 | }, | ||
1310 | "_eulerAngles": { | ||
1311 | "__type__": "cc.Vec3", | ||
1312 | "x": 0, | ||
1313 | "y": 0, | ||
1314 | "z": 0 | ||
1315 | }, | ||
1316 | "_skewX": 0, | ||
1317 | "_skewY": 0, | ||
1318 | "_is3DNode": false, | ||
1319 | "_groupIndex": 0, | ||
1320 | "groupIndex": 0, | ||
1321 | "_id": "" | ||
1322 | }, | ||
1323 | { | ||
1324 | "__type__": "cc.Sprite", | ||
1325 | "_name": "", | ||
1326 | "_objFlags": 0, | ||
1327 | "node": { | ||
1328 | "__id__": 32 | ||
1329 | }, | ||
1330 | "_enabled": true, | ||
1331 | "_materials": [ | ||
1332 | { | ||
1333 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
1334 | } | ||
1335 | ], | ||
1336 | "_srcBlendFactor": 770, | ||
1337 | "_dstBlendFactor": 771, | ||
1338 | "_spriteFrame": { | ||
1339 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" | ||
1340 | }, | ||
1341 | "_type": 0, | ||
1342 | "_sizeMode": 0, | ||
1343 | "_fillType": 0, | ||
1344 | "_fillCenter": { | ||
1345 | "__type__": "cc.Vec2", | ||
1346 | "x": 0, | ||
1347 | "y": 0 | ||
1348 | }, | ||
1349 | "_fillStart": 0, | ||
1350 | "_fillRange": 0, | ||
1351 | "_isTrimmedMode": true, | ||
1352 | "_atlas": null, | ||
1353 | "_id": "" | ||
1354 | }, | ||
1355 | { | ||
1356 | "__type__": "cc.PrefabInfo", | ||
1357 | "root": { | ||
1358 | "__id__": 1 | ||
1359 | }, | ||
1360 | "asset": { | ||
1361 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
1362 | }, | ||
1363 | "fileId": "e4cK2zE+JC7ae8ZQFEJz32", | ||
1364 | "sync": false | ||
1365 | }, | ||
1366 | { | ||
1367 | "__type__": "cc.Node", | ||
1368 | "_name": "ScoreText", | ||
1369 | "_objFlags": 0, | ||
1370 | "_parent": { | ||
1371 | "__id__": 31 | ||
1372 | }, | ||
1373 | "_children": [], | ||
1374 | "_active": false, | ||
1375 | "_components": [ | ||
1376 | { | ||
1377 | "__id__": 36 | ||
1378 | }, | ||
1379 | { | ||
1380 | "__id__": 37 | ||
1381 | } | ||
1382 | ], | ||
1383 | "_prefab": { | ||
1384 | "__id__": 38 | ||
1385 | }, | ||
1386 | "_opacity": 255, | ||
1387 | "_color": { | ||
1388 | "__type__": "cc.Color", | ||
1389 | "r": 255, | ||
1390 | "g": 255, | ||
1391 | "b": 0, | ||
1392 | "a": 255 | ||
1393 | }, | ||
1394 | "_contentSize": { | ||
1395 | "__type__": "cc.Size", | ||
1396 | "width": 12.24, | ||
1397 | "height": 27.72 | ||
1398 | }, | ||
1399 | "_anchorPoint": { | ||
1400 | "__type__": "cc.Vec2", | ||
1401 | "x": 0.5, | ||
1402 | "y": 0.5 | ||
1403 | }, | ||
1404 | "_position": { | ||
1405 | "__type__": "cc.Vec3", | ||
1406 | "x": 62.38, | ||
1407 | "y": 0, | ||
1408 | "z": 0 | ||
1409 | }, | ||
1410 | "_scale": { | ||
1411 | "__type__": "cc.Vec3", | ||
1412 | "x": 1, | ||
1413 | "y": 1, | ||
1414 | "z": 1 | ||
1415 | }, | ||
1416 | "_trs": { | ||
1417 | "__type__": "TypedArray", | ||
1418 | "ctor": "Float32Array", | ||
1419 | "array": [ | ||
1420 | 62.380001068115234, | ||
1421 | 0, | ||
1422 | 0, | ||
1423 | 0, | ||
1424 | 0, | ||
1425 | 0, | ||
1426 | 1, | ||
1427 | 1, | ||
1428 | 1, | ||
1429 | 1 | ||
1430 | ] | ||
1431 | }, | ||
1432 | "_eulerAngles": { | ||
1433 | "__type__": "cc.Vec3", | ||
1434 | "x": 0, | ||
1435 | "y": 0, | ||
1436 | "z": 0 | ||
1437 | }, | ||
1438 | "_skewX": 0, | ||
1439 | "_skewY": 0, | ||
1440 | "_is3DNode": false, | ||
1441 | "_groupIndex": 0, | ||
1442 | "groupIndex": 0, | ||
1443 | "_id": "" | ||
1444 | }, | ||
1445 | { | ||
1446 | "__type__": "cc.Label", | ||
1447 | "_name": "", | ||
1448 | "_objFlags": 0, | ||
1449 | "node": { | ||
1450 | "__id__": 35 | ||
1451 | }, | ||
1452 | "_enabled": true, | ||
1453 | "_materials": [ | ||
1454 | { | ||
1455 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
1456 | } | ||
1457 | ], | ||
1458 | "_useOriginalSize": false, | ||
1459 | "_string": "0", | ||
1460 | "_N$string": "0", | ||
1461 | "_fontSize": 22, | ||
1462 | "_lineHeight": 22, | ||
1463 | "_enableWrapText": true, | ||
1464 | "_N$file": null, | ||
1465 | "_isSystemFontUsed": true, | ||
1466 | "_spacingX": 0, | ||
1467 | "_batchAsBitmap": false, | ||
1468 | "_N$horizontalAlign": 1, | ||
1469 | "_N$verticalAlign": 1, | ||
1470 | "_N$fontFamily": "Arial", | ||
1471 | "_N$overflow": 0, | ||
1472 | "_N$cacheMode": 0, | ||
1473 | "_id": "" | ||
1474 | }, | ||
1475 | { | ||
1476 | "__type__": "cc.Widget", | ||
1477 | "_name": "", | ||
1478 | "_objFlags": 0, | ||
1479 | "node": { | ||
1480 | "__id__": 35 | ||
1481 | }, | ||
1482 | "_enabled": true, | ||
1483 | "alignMode": 1, | ||
1484 | "_target": null, | ||
1485 | "_alignFlags": 32, | ||
1486 | "_left": 0, | ||
1487 | "_right": 20, | ||
1488 | "_top": 0, | ||
1489 | "_bottom": 0, | ||
1490 | "_verticalCenter": 0, | ||
1491 | "_horizontalCenter": 0, | ||
1492 | "_isAbsLeft": true, | ||
1493 | "_isAbsRight": true, | ||
1494 | "_isAbsTop": true, | ||
1495 | "_isAbsBottom": true, | ||
1496 | "_isAbsHorizontalCenter": true, | ||
1497 | "_isAbsVerticalCenter": true, | ||
1498 | "_originalWidth": 0, | ||
1499 | "_originalHeight": 0, | ||
1500 | "_id": "" | ||
1501 | }, | ||
1502 | { | ||
1503 | "__type__": "cc.PrefabInfo", | ||
1504 | "root": { | ||
1505 | "__id__": 1 | ||
1506 | }, | ||
1507 | "asset": { | ||
1508 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
1509 | }, | ||
1510 | "fileId": "2bl4r/zYNHNYxKW0Bkusnr", | ||
1511 | "sync": false | ||
1512 | }, | ||
1513 | { | ||
1514 | "__type__": "cc.Node", | ||
1515 | "_name": "ActiveName", | ||
1516 | "_objFlags": 0, | ||
1517 | "_parent": { | ||
1518 | "__id__": 31 | ||
1519 | }, | ||
1520 | "_children": [ | ||
1521 | { | ||
1522 | "__id__": 40 | ||
1523 | } | ||
1524 | ], | ||
1525 | "_active": true, | ||
1526 | "_components": [], | ||
1527 | "_prefab": { | ||
1528 | "__id__": 54 | ||
1529 | }, | ||
1530 | "_opacity": 255, | ||
1531 | "_color": { | ||
1532 | "__type__": "cc.Color", | ||
1533 | "r": 255, | ||
1534 | "g": 255, | ||
1535 | "b": 255, | ||
1536 | "a": 255 | ||
1537 | }, | ||
1538 | "_contentSize": { | ||
1539 | "__type__": "cc.Size", | ||
1540 | "width": 0, | ||
1541 | "height": 0 | ||
1542 | }, | ||
1543 | "_anchorPoint": { | ||
1544 | "__type__": "cc.Vec2", | ||
1545 | "x": 0.5, | ||
1546 | "y": 0.5 | ||
1547 | }, | ||
1548 | "_position": { | ||
1549 | "__type__": "cc.Vec3", | ||
1550 | "x": 0, | ||
1551 | "y": 0, | ||
1552 | "z": 0 | ||
1553 | }, | ||
1554 | "_scale": { | ||
1555 | "__type__": "cc.Vec3", | ||
1556 | "x": 1, | ||
1557 | "y": 1, | ||
1558 | "z": 1 | ||
1559 | }, | ||
1560 | "_trs": { | ||
1561 | "__type__": "TypedArray", | ||
1562 | "ctor": "Float32Array", | ||
1563 | "array": [ | ||
1564 | 0, | ||
1565 | 0, | ||
1566 | 0, | ||
1567 | 0, | ||
1568 | 0, | ||
1569 | 0, | ||
1570 | 1, | ||
1571 | 1, | ||
1572 | 1, | ||
1573 | 1 | ||
1574 | ] | ||
1575 | }, | ||
1576 | "_eulerAngles": { | ||
1577 | "__type__": "cc.Vec3", | ||
1578 | "x": 0, | ||
1579 | "y": 0, | ||
1580 | "z": 0 | ||
1581 | }, | ||
1582 | "_skewX": 0, | ||
1583 | "_skewY": 0, | ||
1584 | "_is3DNode": false, | ||
1585 | "_groupIndex": 0, | ||
1586 | "groupIndex": 0, | ||
1587 | "_id": "" | ||
1588 | }, | ||
1589 | { | ||
1590 | "__type__": "cc.Node", | ||
1591 | "_name": "NameContainer", | ||
1592 | "_objFlags": 0, | ||
1593 | "_parent": { | ||
1594 | "__id__": 39 | ||
1595 | }, | ||
1596 | "_children": [ | ||
1597 | { | ||
1598 | "__id__": 41 | ||
1599 | } | ||
1600 | ], | ||
1601 | "_active": true, | ||
1602 | "_components": [ | ||
1603 | { | ||
1604 | "__id__": 51 | ||
1605 | }, | ||
1606 | { | ||
1607 | "__id__": 52 | ||
1608 | } | ||
1609 | ], | ||
1610 | "_prefab": { | ||
1611 | "__id__": 53 | ||
1612 | }, | ||
1613 | "_opacity": 0, | ||
1614 | "_color": { | ||
1615 | "__type__": "cc.Color", | ||
1616 | "r": 255, | ||
1617 | "g": 255, | ||
1618 | "b": 255, | ||
1619 | "a": 255 | ||
1620 | }, | ||
1621 | "_contentSize": { | ||
1622 | "__type__": "cc.Size", | ||
1623 | "width": 250, | ||
1624 | "height": 40 | ||
1625 | }, | ||
1626 | "_anchorPoint": { | ||
1627 | "__type__": "cc.Vec2", | ||
1628 | "x": 0.5, | ||
1629 | "y": 0.5 | ||
1630 | }, | ||
1631 | "_position": { | ||
1632 | "__type__": "cc.Vec3", | ||
1633 | "x": -20, | ||
1634 | "y": 0, | ||
1635 | "z": 0 | ||
1636 | }, | ||
1637 | "_scale": { | ||
1638 | "__type__": "cc.Vec3", | ||
1639 | "x": 1, | ||
1640 | "y": 1, | ||
1641 | "z": 1 | ||
1642 | }, | ||
1643 | "_trs": { | ||
1644 | "__type__": "TypedArray", | ||
1645 | "ctor": "Float32Array", | ||
1646 | "array": [ | ||
1647 | 0, | ||
1648 | 0, | ||
1649 | 0, | ||
1650 | 0, | ||
1651 | 0, | ||
1652 | 0, | ||
1653 | 1, | ||
1654 | 1, | ||
1655 | 1, | ||
1656 | 1 | ||
1657 | ] | ||
1658 | }, | ||
1659 | "_eulerAngles": { | ||
1660 | "__type__": "cc.Vec3", | ||
1661 | "x": 0, | ||
1662 | "y": 0, | ||
1663 | "z": 0 | ||
1664 | }, | ||
1665 | "_skewX": 0, | ||
1666 | "_skewY": 0, | ||
1667 | "_is3DNode": false, | ||
1668 | "_groupIndex": 0, | ||
1669 | "groupIndex": 0, | ||
1670 | "_id": "" | ||
1671 | }, | ||
1672 | { | ||
1673 | "__type__": "cc.Node", | ||
1674 | "_name": "NameText", | ||
1675 | "_objFlags": 0, | ||
1676 | "_parent": { | ||
1677 | "__id__": 40 | ||
1678 | }, | ||
1679 | "_children": [ | ||
1680 | { | ||
1681 | "__id__": 42 | ||
1682 | }, | ||
1683 | { | ||
1684 | "__id__": 46 | ||
1685 | } | ||
1686 | ], | ||
1687 | "_active": true, | ||
1688 | "_components": [], | ||
1689 | "_prefab": { | ||
1690 | "__id__": 50 | ||
1691 | }, | ||
1692 | "_opacity": 255, | ||
1693 | "_color": { | ||
1694 | "__type__": "cc.Color", | ||
1695 | "r": 255, | ||
1696 | "g": 255, | ||
1697 | "b": 255, | ||
1698 | "a": 255 | ||
1699 | }, | ||
1700 | "_contentSize": { | ||
1701 | "__type__": "cc.Size", | ||
1702 | "width": 250, | ||
1703 | "height": 40 | ||
1704 | }, | ||
1705 | "_anchorPoint": { | ||
1706 | "__type__": "cc.Vec2", | ||
1707 | "x": 0.5, | ||
1708 | "y": 0.5 | ||
1709 | }, | ||
1710 | "_position": { | ||
1711 | "__type__": "cc.Vec3", | ||
1712 | "x": 0, | ||
1713 | "y": 0, | ||
1714 | "z": 0 | ||
1715 | }, | ||
1716 | "_scale": { | ||
1717 | "__type__": "cc.Vec3", | ||
1718 | "x": 1, | ||
1719 | "y": 1, | ||
1720 | "z": 1 | ||
1721 | }, | ||
1722 | "_trs": { | ||
1723 | "__type__": "TypedArray", | ||
1724 | "ctor": "Float32Array", | ||
1725 | "array": [ | ||
1726 | 0, | ||
1727 | 0, | ||
1728 | 0, | ||
1729 | 0, | ||
1730 | 0, | ||
1731 | 0, | ||
1732 | 1, | ||
1733 | 1, | ||
1734 | 1, | ||
1735 | 1 | ||
1736 | ] | ||
1737 | }, | ||
1738 | "_eulerAngles": { | ||
1739 | "__type__": "cc.Vec3", | ||
1740 | "x": 0, | ||
1741 | "y": 0, | ||
1742 | "z": 0 | ||
1743 | }, | ||
1744 | "_skewX": 0, | ||
1745 | "_skewY": 0, | ||
1746 | "_is3DNode": false, | ||
1747 | "_groupIndex": 0, | ||
1748 | "groupIndex": 0, | ||
1749 | "_id": "" | ||
1750 | }, | ||
1751 | { | ||
1752 | "__type__": "cc.Node", | ||
1753 | "_name": "NameText1", | ||
1754 | "_objFlags": 0, | ||
1755 | "_parent": { | ||
1756 | "__id__": 41 | ||
1757 | }, | ||
1758 | "_children": [], | ||
1759 | "_active": true, | ||
1760 | "_components": [ | ||
1761 | { | ||
1762 | "__id__": 43 | ||
1763 | }, | ||
1764 | { | ||
1765 | "__id__": 44 | ||
1766 | } | ||
1767 | ], | ||
1768 | "_prefab": { | ||
1769 | "__id__": 45 | ||
1770 | }, | ||
1771 | "_opacity": 255, | ||
1772 | "_color": { | ||
1773 | "__type__": "cc.Color", | ||
1774 | "r": 0, | ||
1775 | "g": 0, | ||
1776 | "b": 0, | ||
1777 | "a": 255 | ||
1778 | }, | ||
1779 | "_contentSize": { | ||
1780 | "__type__": "cc.Size", | ||
1781 | "width": 76.67, | ||
1782 | "height": 35.28 | ||
1783 | }, | ||
1784 | "_anchorPoint": { | ||
1785 | "__type__": "cc.Vec2", | ||
1786 | "x": 0, | ||
1787 | "y": 0.5 | ||
1788 | }, | ||
1789 | "_position": { | ||
1790 | "__type__": "cc.Vec3", | ||
1791 | "x": -65, | ||
1792 | "y": 0, | ||
1793 | "z": 0 | ||
1794 | }, | ||
1795 | "_scale": { | ||
1796 | "__type__": "cc.Vec3", | ||
1797 | "x": 1, | ||
1798 | "y": 1, | ||
1799 | "z": 1 | ||
1800 | }, | ||
1801 | "_trs": { | ||
1802 | "__type__": "TypedArray", | ||
1803 | "ctor": "Float32Array", | ||
1804 | "array": [ | ||
1805 | -125, | ||
1806 | 0, | ||
1807 | 0, | ||
1808 | 0, | ||
1809 | 0, | ||
1810 | 0, | ||
1811 | 1, | ||
1812 | 1, | ||
1813 | 1, | ||
1814 | 1 | ||
1815 | ] | ||
1816 | }, | ||
1817 | "_eulerAngles": { | ||
1818 | "__type__": "cc.Vec3", | ||
1819 | "x": 0, | ||
1820 | "y": 0, | ||
1821 | "z": 0 | ||
1822 | }, | ||
1823 | "_skewX": 0, | ||
1824 | "_skewY": 0, | ||
1825 | "_is3DNode": false, | ||
1826 | "_groupIndex": 0, | ||
1827 | "groupIndex": 0, | ||
1828 | "_id": "" | ||
1829 | }, | ||
1830 | { | ||
1831 | "__type__": "cc.Label", | ||
1832 | "_name": "", | ||
1833 | "_objFlags": 0, | ||
1834 | "node": { | ||
1835 | "__id__": 42 | ||
1836 | }, | ||
1837 | "_enabled": true, | ||
1838 | "_materials": [ | ||
1839 | { | ||
1840 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
1841 | } | ||
1842 | ], | ||
1843 | "_useOriginalSize": false, | ||
1844 | "_string": "载入中...", | ||
1845 | "_N$string": "载入中...", | ||
1846 | "_fontSize": 20, | ||
1847 | "_lineHeight": 28, | ||
1848 | "_enableWrapText": true, | ||
1849 | "_N$file": null, | ||
1850 | "_isSystemFontUsed": true, | ||
1851 | "_spacingX": 0, | ||
1852 | "_batchAsBitmap": false, | ||
1853 | "_N$horizontalAlign": 1, | ||
1854 | "_N$verticalAlign": 1, | ||
1855 | "_N$fontFamily": "Arial", | ||
1856 | "_N$overflow": 0, | ||
1857 | "_N$cacheMode": 0, | ||
1858 | "_id": "" | ||
1859 | }, | ||
1860 | { | ||
1861 | "__type__": "cc.Widget", | ||
1862 | "_name": "", | ||
1863 | "_objFlags": 0, | ||
1864 | "node": { | ||
1865 | "__id__": 42 | ||
1866 | }, | ||
1867 | "_enabled": true, | ||
1868 | "alignMode": 1, | ||
1869 | "_target": null, | ||
1870 | "_alignFlags": 8, | ||
1871 | "_left": 0, | ||
1872 | "_right": 0, | ||
1873 | "_top": 0, | ||
1874 | "_bottom": 0, | ||
1875 | "_verticalCenter": 0, | ||
1876 | "_horizontalCenter": 0, | ||
1877 | "_isAbsLeft": true, | ||
1878 | "_isAbsRight": true, | ||
1879 | "_isAbsTop": true, | ||
1880 | "_isAbsBottom": true, | ||
1881 | "_isAbsHorizontalCenter": true, | ||
1882 | "_isAbsVerticalCenter": true, | ||
1883 | "_originalWidth": 0, | ||
1884 | "_originalHeight": 0, | ||
1885 | "_id": "" | ||
1886 | }, | ||
1887 | { | ||
1888 | "__type__": "cc.PrefabInfo", | ||
1889 | "root": { | ||
1890 | "__id__": 1 | ||
1891 | }, | ||
1892 | "asset": { | ||
1893 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
1894 | }, | ||
1895 | "fileId": "b4q8tyJ/ZPTZr35YH8vBrp", | ||
1896 | "sync": false | ||
1897 | }, | ||
1898 | { | ||
1899 | "__type__": "cc.Node", | ||
1900 | "_name": "NameText2", | ||
1901 | "_objFlags": 0, | ||
1902 | "_parent": { | ||
1903 | "__id__": 41 | ||
1904 | }, | ||
1905 | "_children": [], | ||
1906 | "_active": true, | ||
1907 | "_components": [ | ||
1908 | { | ||
1909 | "__id__": 47 | ||
1910 | }, | ||
1911 | { | ||
1912 | "__id__": 48 | ||
1913 | } | ||
1914 | ], | ||
1915 | "_prefab": { | ||
1916 | "__id__": 49 | ||
1917 | }, | ||
1918 | "_opacity": 255, | ||
1919 | "_color": { | ||
1920 | "__type__": "cc.Color", | ||
1921 | "r": 0, | ||
1922 | "g": 0, | ||
1923 | "b": 0, | ||
1924 | "a": 255 | ||
1925 | }, | ||
1926 | "_contentSize": { | ||
1927 | "__type__": "cc.Size", | ||
1928 | "width": 76.67, | ||
1929 | "height": 35.28 | ||
1930 | }, | ||
1931 | "_anchorPoint": { | ||
1932 | "__type__": "cc.Vec2", | ||
1933 | "x": 0, | ||
1934 | "y": 0.5 | ||
1935 | }, | ||
1936 | "_position": { | ||
1937 | "__type__": "cc.Vec3", | ||
1938 | "x": -65, | ||
1939 | "y": 0, | ||
1940 | "z": 0 | ||
1941 | }, | ||
1942 | "_scale": { | ||
1943 | "__type__": "cc.Vec3", | ||
1944 | "x": 1, | ||
1945 | "y": 1, | ||
1946 | "z": 1 | ||
1947 | }, | ||
1948 | "_trs": { | ||
1949 | "__type__": "TypedArray", | ||
1950 | "ctor": "Float32Array", | ||
1951 | "array": [ | ||
1952 | -125, | ||
1953 | 0, | ||
1954 | 0, | ||
1955 | 0, | ||
1956 | 0, | ||
1957 | 0, | ||
1958 | 1, | ||
1959 | 1, | ||
1960 | 1, | ||
1961 | 1 | ||
1962 | ] | ||
1963 | }, | ||
1964 | "_eulerAngles": { | ||
1965 | "__type__": "cc.Vec3", | ||
1966 | "x": 0, | ||
1967 | "y": 0, | ||
1968 | "z": 0 | ||
1969 | }, | ||
1970 | "_skewX": 0, | ||
1971 | "_skewY": 0, | ||
1972 | "_is3DNode": false, | ||
1973 | "_groupIndex": 0, | ||
1974 | "groupIndex": 0, | ||
1975 | "_id": "" | ||
1976 | }, | ||
1977 | { | ||
1978 | "__type__": "cc.Label", | ||
1979 | "_name": "", | ||
1980 | "_objFlags": 0, | ||
1981 | "node": { | ||
1982 | "__id__": 46 | ||
1983 | }, | ||
1984 | "_enabled": true, | ||
1985 | "_materials": [ | ||
1986 | { | ||
1987 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
1988 | } | ||
1989 | ], | ||
1990 | "_useOriginalSize": false, | ||
1991 | "_string": "载入中...", | ||
1992 | "_N$string": "载入中...", | ||
1993 | "_fontSize": 20, | ||
1994 | "_lineHeight": 28, | ||
1995 | "_enableWrapText": true, | ||
1996 | "_N$file": null, | ||
1997 | "_isSystemFontUsed": true, | ||
1998 | "_spacingX": 0, | ||
1999 | "_batchAsBitmap": false, | ||
2000 | "_N$horizontalAlign": 1, | ||
2001 | "_N$verticalAlign": 1, | ||
2002 | "_N$fontFamily": "Arial", | ||
2003 | "_N$overflow": 0, | ||
2004 | "_N$cacheMode": 0, | ||
2005 | "_id": "" | ||
2006 | }, | ||
2007 | { | ||
2008 | "__type__": "cc.Widget", | ||
2009 | "_name": "", | ||
2010 | "_objFlags": 0, | ||
2011 | "node": { | ||
2012 | "__id__": 46 | ||
2013 | }, | ||
2014 | "_enabled": true, | ||
2015 | "alignMode": 1, | ||
2016 | "_target": null, | ||
2017 | "_alignFlags": 8, | ||
2018 | "_left": 0, | ||
2019 | "_right": 0, | ||
2020 | "_top": 0, | ||
2021 | "_bottom": 0, | ||
2022 | "_verticalCenter": 0, | ||
2023 | "_horizontalCenter": 0, | ||
2024 | "_isAbsLeft": true, | ||
2025 | "_isAbsRight": true, | ||
2026 | "_isAbsTop": true, | ||
2027 | "_isAbsBottom": true, | ||
2028 | "_isAbsHorizontalCenter": true, | ||
2029 | "_isAbsVerticalCenter": true, | ||
2030 | "_originalWidth": 0, | ||
2031 | "_originalHeight": 0, | ||
2032 | "_id": "" | ||
2033 | }, | ||
2034 | { | ||
2035 | "__type__": "cc.PrefabInfo", | ||
2036 | "root": { | ||
2037 | "__id__": 1 | ||
2038 | }, | ||
2039 | "asset": { | ||
2040 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2041 | }, | ||
2042 | "fileId": "17km0S5D9CV4oGlF28DSWI", | ||
2043 | "sync": false | ||
2044 | }, | ||
2045 | { | ||
2046 | "__type__": "cc.PrefabInfo", | ||
2047 | "root": { | ||
2048 | "__id__": 1 | ||
2049 | }, | ||
2050 | "asset": { | ||
2051 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2052 | }, | ||
2053 | "fileId": "34duGeJORO4rb45/fNdAGS", | ||
2054 | "sync": false | ||
2055 | }, | ||
2056 | { | ||
2057 | "__type__": "cc.Widget", | ||
2058 | "_name": "", | ||
2059 | "_objFlags": 0, | ||
2060 | "node": { | ||
2061 | "__id__": 40 | ||
2062 | }, | ||
2063 | "_enabled": true, | ||
2064 | "alignMode": 1, | ||
2065 | "_target": null, | ||
2066 | "_alignFlags": 8, | ||
2067 | "_left": -125, | ||
2068 | "_right": 0, | ||
2069 | "_top": 0, | ||
2070 | "_bottom": 0, | ||
2071 | "_verticalCenter": 0, | ||
2072 | "_horizontalCenter": 0, | ||
2073 | "_isAbsLeft": true, | ||
2074 | "_isAbsRight": true, | ||
2075 | "_isAbsTop": true, | ||
2076 | "_isAbsBottom": true, | ||
2077 | "_isAbsHorizontalCenter": true, | ||
2078 | "_isAbsVerticalCenter": true, | ||
2079 | "_originalWidth": 0, | ||
2080 | "_originalHeight": 0, | ||
2081 | "_id": "" | ||
2082 | }, | ||
2083 | { | ||
2084 | "__type__": "cc.Mask", | ||
2085 | "_name": "", | ||
2086 | "_objFlags": 0, | ||
2087 | "node": { | ||
2088 | "__id__": 40 | ||
2089 | }, | ||
2090 | "_enabled": true, | ||
2091 | "_materials": [ | ||
2092 | { | ||
2093 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
2094 | } | ||
2095 | ], | ||
2096 | "_spriteFrame": null, | ||
2097 | "_type": 0, | ||
2098 | "_segments": 64, | ||
2099 | "_N$alphaThreshold": 0, | ||
2100 | "_N$inverted": false, | ||
2101 | "_id": "" | ||
2102 | }, | ||
2103 | { | ||
2104 | "__type__": "cc.PrefabInfo", | ||
2105 | "root": { | ||
2106 | "__id__": 1 | ||
2107 | }, | ||
2108 | "asset": { | ||
2109 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2110 | }, | ||
2111 | "fileId": "d6xC6FentGb7BCjPocRJwt", | ||
2112 | "sync": false | ||
2113 | }, | ||
2114 | { | ||
2115 | "__type__": "cc.PrefabInfo", | ||
2116 | "root": { | ||
2117 | "__id__": 1 | ||
2118 | }, | ||
2119 | "asset": { | ||
2120 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2121 | }, | ||
2122 | "fileId": "ddeTkPUx5EPZw3Q8lGgvCJ", | ||
2123 | "sync": false | ||
2124 | }, | ||
2125 | { | ||
2126 | "__type__": "cc.Node", | ||
2127 | "_name": "NormalName", | ||
2128 | "_objFlags": 0, | ||
2129 | "_parent": { | ||
2130 | "__id__": 31 | ||
2131 | }, | ||
2132 | "_children": [ | ||
2133 | { | ||
2134 | "__id__": 56 | ||
2135 | } | ||
2136 | ], | ||
2137 | "_active": true, | ||
2138 | "_components": [ | ||
2139 | { | ||
2140 | "__id__": 60 | ||
2141 | }, | ||
2142 | { | ||
2143 | "__id__": 61 | ||
2144 | } | ||
2145 | ], | ||
2146 | "_prefab": { | ||
2147 | "__id__": 62 | ||
2148 | }, | ||
2149 | "_opacity": 255, | ||
2150 | "_color": { | ||
2151 | "__type__": "cc.Color", | ||
2152 | "r": 255, | ||
2153 | "g": 255, | ||
2154 | "b": 255, | ||
2155 | "a": 255 | ||
2156 | }, | ||
2157 | "_contentSize": { | ||
2158 | "__type__": "cc.Size", | ||
2159 | "width": 250, | ||
2160 | "height": 40 | ||
2161 | }, | ||
2162 | "_anchorPoint": { | ||
2163 | "__type__": "cc.Vec2", | ||
2164 | "x": 0.5, | ||
2165 | "y": 0.5 | ||
2166 | }, | ||
2167 | "_position": { | ||
2168 | "__type__": "cc.Vec3", | ||
2169 | "x": -20, | ||
2170 | "y": 0, | ||
2171 | "z": 0 | ||
2172 | }, | ||
2173 | "_scale": { | ||
2174 | "__type__": "cc.Vec3", | ||
2175 | "x": 1, | ||
2176 | "y": 1, | ||
2177 | "z": 1 | ||
2178 | }, | ||
2179 | "_trs": { | ||
2180 | "__type__": "TypedArray", | ||
2181 | "ctor": "Float32Array", | ||
2182 | "array": [ | ||
2183 | 0, | ||
2184 | 0, | ||
2185 | 0, | ||
2186 | 0, | ||
2187 | 0, | ||
2188 | 0, | ||
2189 | 1, | ||
2190 | 1, | ||
2191 | 1, | ||
2192 | 1 | ||
2193 | ] | ||
2194 | }, | ||
2195 | "_eulerAngles": { | ||
2196 | "__type__": "cc.Vec3", | ||
2197 | "x": 0, | ||
2198 | "y": 0, | ||
2199 | "z": 0 | ||
2200 | }, | ||
2201 | "_skewX": 0, | ||
2202 | "_skewY": 0, | ||
2203 | "_is3DNode": false, | ||
2204 | "_groupIndex": 0, | ||
2205 | "groupIndex": 0, | ||
2206 | "_id": "" | ||
2207 | }, | ||
2208 | { | ||
2209 | "__type__": "cc.Node", | ||
2210 | "_name": "MidName", | ||
2211 | "_objFlags": 0, | ||
2212 | "_parent": { | ||
2213 | "__id__": 55 | ||
2214 | }, | ||
2215 | "_children": [], | ||
2216 | "_active": true, | ||
2217 | "_components": [ | ||
2218 | { | ||
2219 | "__id__": 57 | ||
2220 | }, | ||
2221 | { | ||
2222 | "__id__": 58 | ||
2223 | } | ||
2224 | ], | ||
2225 | "_prefab": { | ||
2226 | "__id__": 59 | ||
2227 | }, | ||
2228 | "_opacity": 255, | ||
2229 | "_color": { | ||
2230 | "__type__": "cc.Color", | ||
2231 | "r": 0, | ||
2232 | "g": 0, | ||
2233 | "b": 0, | ||
2234 | "a": 255 | ||
2235 | }, | ||
2236 | "_contentSize": { | ||
2237 | "__type__": "cc.Size", | ||
2238 | "width": 76.67, | ||
2239 | "height": 35.28 | ||
2240 | }, | ||
2241 | "_anchorPoint": { | ||
2242 | "__type__": "cc.Vec2", | ||
2243 | "x": 0, | ||
2244 | "y": 0.5 | ||
2245 | }, | ||
2246 | "_position": { | ||
2247 | "__type__": "cc.Vec3", | ||
2248 | "x": -65, | ||
2249 | "y": 0, | ||
2250 | "z": 0 | ||
2251 | }, | ||
2252 | "_scale": { | ||
2253 | "__type__": "cc.Vec3", | ||
2254 | "x": 1, | ||
2255 | "y": 1, | ||
2256 | "z": 1 | ||
2257 | }, | ||
2258 | "_trs": { | ||
2259 | "__type__": "TypedArray", | ||
2260 | "ctor": "Float32Array", | ||
2261 | "array": [ | ||
2262 | -125, | ||
2263 | 0, | ||
2264 | 0, | ||
2265 | 0, | ||
2266 | 0, | ||
2267 | 0, | ||
2268 | 1, | ||
2269 | 1, | ||
2270 | 1, | ||
2271 | 1 | ||
2272 | ] | ||
2273 | }, | ||
2274 | "_eulerAngles": { | ||
2275 | "__type__": "cc.Vec3", | ||
2276 | "x": 0, | ||
2277 | "y": 0, | ||
2278 | "z": 0 | ||
2279 | }, | ||
2280 | "_skewX": 0, | ||
2281 | "_skewY": 0, | ||
2282 | "_is3DNode": false, | ||
2283 | "_groupIndex": 0, | ||
2284 | "groupIndex": 0, | ||
2285 | "_id": "" | ||
2286 | }, | ||
2287 | { | ||
2288 | "__type__": "cc.Label", | ||
2289 | "_name": "", | ||
2290 | "_objFlags": 0, | ||
2291 | "node": { | ||
2292 | "__id__": 56 | ||
2293 | }, | ||
2294 | "_enabled": true, | ||
2295 | "_materials": [ | ||
2296 | { | ||
2297 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
2298 | } | ||
2299 | ], | ||
2300 | "_useOriginalSize": false, | ||
2301 | "_string": "载入中...", | ||
2302 | "_N$string": "载入中...", | ||
2303 | "_fontSize": 20, | ||
2304 | "_lineHeight": 28, | ||
2305 | "_enableWrapText": true, | ||
2306 | "_N$file": null, | ||
2307 | "_isSystemFontUsed": true, | ||
2308 | "_spacingX": 0, | ||
2309 | "_batchAsBitmap": false, | ||
2310 | "_N$horizontalAlign": 1, | ||
2311 | "_N$verticalAlign": 1, | ||
2312 | "_N$fontFamily": "Arial", | ||
2313 | "_N$overflow": 0, | ||
2314 | "_N$cacheMode": 0, | ||
2315 | "_id": "" | ||
2316 | }, | ||
2317 | { | ||
2318 | "__type__": "cc.Widget", | ||
2319 | "_name": "", | ||
2320 | "_objFlags": 0, | ||
2321 | "node": { | ||
2322 | "__id__": 56 | ||
2323 | }, | ||
2324 | "_enabled": true, | ||
2325 | "alignMode": 1, | ||
2326 | "_target": null, | ||
2327 | "_alignFlags": 8, | ||
2328 | "_left": 0, | ||
2329 | "_right": 0, | ||
2330 | "_top": 0, | ||
2331 | "_bottom": 0, | ||
2332 | "_verticalCenter": 0, | ||
2333 | "_horizontalCenter": 0, | ||
2334 | "_isAbsLeft": true, | ||
2335 | "_isAbsRight": true, | ||
2336 | "_isAbsTop": true, | ||
2337 | "_isAbsBottom": true, | ||
2338 | "_isAbsHorizontalCenter": true, | ||
2339 | "_isAbsVerticalCenter": true, | ||
2340 | "_originalWidth": 0, | ||
2341 | "_originalHeight": 0, | ||
2342 | "_id": "" | ||
2343 | }, | ||
2344 | { | ||
2345 | "__type__": "cc.PrefabInfo", | ||
2346 | "root": { | ||
2347 | "__id__": 1 | ||
2348 | }, | ||
2349 | "asset": { | ||
2350 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2351 | }, | ||
2352 | "fileId": "adroC/09ZE/6jsRIdXZU0N", | ||
2353 | "sync": false | ||
2354 | }, | ||
2355 | { | ||
2356 | "__type__": "cc.Mask", | ||
2357 | "_name": "", | ||
2358 | "_objFlags": 0, | ||
2359 | "node": { | ||
2360 | "__id__": 55 | ||
2361 | }, | ||
2362 | "_enabled": true, | ||
2363 | "_materials": [ | ||
2364 | { | ||
2365 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
2366 | } | ||
2367 | ], | ||
2368 | "_spriteFrame": null, | ||
2369 | "_type": 0, | ||
2370 | "_segments": 64, | ||
2371 | "_N$alphaThreshold": 0, | ||
2372 | "_N$inverted": false, | ||
2373 | "_id": "" | ||
2374 | }, | ||
2375 | { | ||
2376 | "__type__": "cc.Widget", | ||
2377 | "_name": "", | ||
2378 | "_objFlags": 0, | ||
2379 | "node": { | ||
2380 | "__id__": 55 | ||
2381 | }, | ||
2382 | "_enabled": true, | ||
2383 | "alignMode": 1, | ||
2384 | "_target": null, | ||
2385 | "_alignFlags": 4, | ||
2386 | "_left": 0, | ||
2387 | "_right": 0, | ||
2388 | "_top": 0, | ||
2389 | "_bottom": 0, | ||
2390 | "_verticalCenter": 0, | ||
2391 | "_horizontalCenter": 0, | ||
2392 | "_isAbsLeft": true, | ||
2393 | "_isAbsRight": true, | ||
2394 | "_isAbsTop": true, | ||
2395 | "_isAbsBottom": true, | ||
2396 | "_isAbsHorizontalCenter": true, | ||
2397 | "_isAbsVerticalCenter": true, | ||
2398 | "_originalWidth": 0, | ||
2399 | "_originalHeight": 0, | ||
2400 | "_id": "" | ||
2401 | }, | ||
2402 | { | ||
2403 | "__type__": "cc.PrefabInfo", | ||
2404 | "root": { | ||
2405 | "__id__": 1 | ||
2406 | }, | ||
2407 | "asset": { | ||
2408 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2409 | }, | ||
2410 | "fileId": "17gTbNQFdAWIiIzqVQONs0", | ||
2411 | "sync": false | ||
2412 | }, | ||
2413 | { | ||
2414 | "__type__": "cc.Sprite", | ||
2415 | "_name": "", | ||
2416 | "_objFlags": 0, | ||
2417 | "node": { | ||
2418 | "__id__": 31 | ||
2419 | }, | ||
2420 | "_enabled": true, | ||
2421 | "_materials": [], | ||
2422 | "_srcBlendFactor": 770, | ||
2423 | "_dstBlendFactor": 771, | ||
2424 | "_spriteFrame": null, | ||
2425 | "_type": 0, | ||
2426 | "_sizeMode": 0, | ||
2427 | "_fillType": 0, | ||
2428 | "_fillCenter": { | ||
2429 | "__type__": "cc.Vec2", | ||
2430 | "x": 0, | ||
2431 | "y": 0 | ||
2432 | }, | ||
2433 | "_fillStart": 0, | ||
2434 | "_fillRange": 0, | ||
2435 | "_isTrimmedMode": true, | ||
2436 | "_atlas": null, | ||
2437 | "_id": "" | ||
2438 | }, | ||
2439 | { | ||
2440 | "__type__": "cc.Widget", | ||
2441 | "_name": "", | ||
2442 | "_objFlags": 0, | ||
2443 | "node": { | ||
2444 | "__id__": 31 | ||
2445 | }, | ||
2446 | "_enabled": true, | ||
2447 | "alignMode": 2, | ||
2448 | "_target": null, | ||
2449 | "_alignFlags": 4, | ||
2450 | "_left": 0, | ||
2451 | "_right": 0, | ||
2452 | "_top": 0, | ||
2453 | "_bottom": 0, | ||
2454 | "_verticalCenter": 0, | ||
2455 | "_horizontalCenter": 0, | ||
2456 | "_isAbsLeft": true, | ||
2457 | "_isAbsRight": true, | ||
2458 | "_isAbsTop": true, | ||
2459 | "_isAbsBottom": true, | ||
2460 | "_isAbsHorizontalCenter": true, | ||
2461 | "_isAbsVerticalCenter": true, | ||
2462 | "_originalWidth": 0, | ||
2463 | "_originalHeight": 0, | ||
2464 | "_id": "" | ||
2465 | }, | ||
2466 | { | ||
2467 | "__type__": "cc.PrefabInfo", | ||
2468 | "root": { | ||
2469 | "__id__": 1 | ||
2470 | }, | ||
2471 | "asset": { | ||
2472 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2473 | }, | ||
2474 | "fileId": "867z1GhthIoau4v+uLMyff", | ||
2475 | "sync": false | ||
2476 | }, | ||
2477 | { | ||
2478 | "__type__": "acc4c+heb9JxIVQxR/9oDBX", | ||
2479 | "_name": "", | ||
2480 | "_objFlags": 0, | ||
2481 | "node": { | ||
2482 | "__id__": 1 | ||
2483 | }, | ||
2484 | "_enabled": true, | ||
2485 | "_iCellIndex": -1, | ||
2486 | "id": 0, | ||
2487 | "pic": { | ||
2488 | "__id__": 3 | ||
2489 | }, | ||
2490 | "activeName1": { | ||
2491 | "__id__": 43 | ||
2492 | }, | ||
2493 | "activeName2": { | ||
2494 | "__id__": 47 | ||
2495 | }, | ||
2496 | "normalName": { | ||
2497 | "__id__": 57 | ||
2498 | }, | ||
2499 | "Name": { | ||
2500 | "__id__": 25 | ||
2501 | }, | ||
2502 | "textScore": { | ||
2503 | "__id__": 36 | ||
2504 | }, | ||
2505 | "_id": "" | ||
2506 | }, | ||
2507 | { | ||
2508 | "__type__": "cc.PrefabInfo", | ||
2509 | "root": { | ||
2510 | "__id__": 1 | ||
2511 | }, | ||
2512 | "asset": { | ||
2513 | "__uuid__": "eff7f79e-6f59-45c2-8b80-33bf0b407b5c" | ||
2514 | }, | ||
2515 | "fileId": "5bPJVCs69Iprc19tmQ33CI", | ||
2516 | "sync": false | ||
2517 | } | ||
2518 | ] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or sign in to post a comment