Commit 7e2248ea 7e2248ea349452a5840cd3b6a9d4d6ad7fc8a318 by jinwawa

complete sceneSearch

1 parent 6dae2e0f
Showing 104 changed files with 1723 additions and 54 deletions
1 {
2 "ver": "1.2.0",
3 "uuid": "0dec88e2-5146-48a2-8323-0d79c11639fd",
4 "asyncLoadAssets": false,
5 "autoReleaseAssets": false,
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.2.0",
3 "uuid": "86937e8d-f82c-4b9e-b602-c2eacc4b0abb",
4 "asyncLoadAssets": false,
5 "autoReleaseAssets": false,
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.5",
3 "uuid": "92e920cc-584d-4153-8a09-89f5c3c1fa88",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
...@@ -279,6 +279,10 @@ cc.Class({ ...@@ -279,6 +279,10 @@ cc.Class({
279 currentNode.getChildByName('Pic').getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture); 279 currentNode.getChildByName('Pic').getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture);
280 }, null, this 280 }, null, this
281 ); 281 );
282 if (currentNode.getComponent(FocusInfo)) {
283 let fiBlock = currentNode.getComponent(FocusInfo); //弄tvlink
284 fiBlock.setTVLink(currentRemote.tvlink);
285 }
282 } else if (currentNode.name == "hasChildFrame" && currentNode.childrenCount > 0) { //渲染自动布局的节点 286 } else if (currentNode.name == "hasChildFrame" && currentNode.childrenCount > 0) { //渲染自动布局的节点
283 for (let k = 0; k < currentNode.childrenCount; k++) { 287 for (let k = 0; k < currentNode.childrenCount; k++) {
284 let sonCurrentNode = currentNode.children[k]; 288 let sonCurrentNode = currentNode.children[k];
...@@ -289,6 +293,10 @@ cc.Class({ ...@@ -289,6 +293,10 @@ cc.Class({
289 sonCurrentNode.getChildByName('Pic').getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture); 293 sonCurrentNode.getChildByName('Pic').getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture);
290 }, null, this 294 }, null, this
291 ); 295 );
296 if (sonCurrentNode.getComponent(FocusInfo)) {
297 let fiBlock = sonCurrentNode.getComponent(FocusInfo); //弄tvlink
298 fiBlock.setTVLink(currentRemote.tvlink);
299 }
292 } 300 }
293 } 301 }
294 } 302 }
...@@ -325,15 +333,18 @@ cc.Class({ ...@@ -325,15 +333,18 @@ cc.Class({
325 this._cFocus.init('focusContainer', this, 333 this._cFocus.init('focusContainer', this,
326 nodeInitFocus.getComponent(FocusInfo), 334 nodeInitFocus.getComponent(FocusInfo),
327 Common.SCREEN_WIDTH, Common.SCREEN_HEIGHT, 2, 6, 1.0, true); 335 Common.SCREEN_WIDTH, Common.SCREEN_HEIGHT, 2, 6, 1.0, true);
328 if (0 == nodeInitFocus.name.indexOf('NaviCell')) { 336 this.scheduleOnce(() => { //指定0让回调函数在下一帧立即执行
329 // nodeInitFocus.getComponent(cc.Sprite).spriteFrame.setRect(cc.rect(0, nodeInitFocus.height, nodeInitFocus.width, nodeInitFocus.height)); 337 if (0 == nodeInitFocus.name.indexOf('NaviCell')) {
330 Network.loadImageInNativeRuntime( 338 // nodeInitFocus.getComponent(cc.Sprite).spriteFrame.setRect(cc.rect(0, nodeInitFocus.height, nodeInitFocus.width, nodeInitFocus.height));
331 this._oInit.aLeftImg[0], 339 Network.loadImageInNativeRuntime(
332 function (texture) { 340 this._oInit.aLeftImg[0],
333 nodeInitFocus.getChildByName("Pic").getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture, cc.rect(0, nodeInitFocus.height, nodeInitFocus.width, nodeInitFocus.height)); 341 function (texture) {
334 }, null, this 342 nodeInitFocus.getChildByName("Pic").getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture, cc.rect(0, nodeInitFocus.height, nodeInitFocus.width, nodeInitFocus.height));
335 ); 343 }, null, this
336 } 344 );
345 }
346 }, 0);
347
337 }, 348 },
338 349
339 onBeforeFocusChange: function (event) { 350 onBeforeFocusChange: function (event) {
...@@ -420,7 +431,7 @@ cc.Class({ ...@@ -420,7 +431,7 @@ cc.Class({
420 if (fiFocusTarget && 0 == fiFocusTarget.node.name.indexOf("NaviCell")) { 431 if (fiFocusTarget && 0 == fiFocusTarget.node.name.indexOf("NaviCell")) {
421 if (0 != this._fiCurrentFocus.node.name.indexOf("NaviCell")) {//如果不是TypeList之间跳转,则哪里来回哪里去 432 if (0 != this._fiCurrentFocus.node.name.indexOf("NaviCell")) {//如果不是TypeList之间跳转,则哪里来回哪里去
422 fiFocusTarget = cc.find("NaviCell" + this._oSceneContext._iCurrentLeftIndex, leftNavLayout).getComponent(FocusInfo); 433 fiFocusTarget = cc.find("NaviCell" + this._oSceneContext._iCurrentLeftIndex, leftNavLayout).getComponent(FocusInfo);
423 } 434 }
424 } 435 }
425 436
426 return [fiFocusTarget, oScrollParameter]; 437 return [fiFocusTarget, oScrollParameter];
...@@ -518,7 +529,7 @@ cc.Class({ ...@@ -518,7 +529,7 @@ cc.Class({
518 529
519 doCurrentFocusTVLinkAction: function (strAction) { 530 doCurrentFocusTVLinkAction: function (strAction) {
520 let strTVLink = this._fiCurrentFocus.getTVLink(); 531 let strTVLink = this._fiCurrentFocus.getTVLink();
521 cc.log("tvlink===============" + strTVLink); 532 // cc.log("tvlink===============" + strTVLink);
522 try { 533 try {
523 let oTVLink = JSON.parse(strTVLink); 534 let oTVLink = JSON.parse(strTVLink);
524 let aOperationList = oTVLink.click; 535 let aOperationList = oTVLink.click;
...@@ -532,17 +543,27 @@ cc.Class({ ...@@ -532,17 +543,27 @@ cc.Class({
532 if (-1 != model.indexOf("waterfall_recommend")) { 543 if (-1 != model.indexOf("waterfall_recommend")) {
533 this.getRightRecommendRequest(waterfall_recommend); //渲染右侧推荐框架 544 this.getRightRecommendRequest(waterfall_recommend); //渲染右侧推荐框架
534 } else if (-1 != model.indexOf("waterfall_parent")) { 545 } else if (-1 != model.indexOf("waterfall_parent")) {
535 this.getRightRecommendRequest(waterfall_parent); //渲染右侧推荐框架 546 this.getRightRecommendRequest(waterfall_parent);
536 } else if (-1 != model.indexOf("waterfall_course")) { 547 } else if (-1 != model.indexOf("waterfall_course")) {
537 this.getRightRecommendRequest(waterfall_course); //渲染右侧推荐框架 548 this.getRightRecommendRequest(waterfall_course);
538 } else if (-1 != model.indexOf("waterfall_primarySchool")) { 549 } else if (-1 != model.indexOf("waterfall_primarySchool")) {
539 this.getRightRecommendRequest(waterfall_primarySchool); //渲染右侧推荐框架 550 this.getRightRecommendRequest(waterfall_primarySchool);
540 } else if (-1 != model.indexOf("waterfall_three2six")) { 551 } else if (-1 != model.indexOf("waterfall_three2six")) {
541 this.getRightRecommendRequest(waterfall_three2six); //渲染右侧推荐框架 552 this.getRightRecommendRequest(waterfall_three2six);
542 } 553 }
543 break; 554 break;
555 // case "changeUI": //放在TVCanvas中全局管理
556 // let parameter = aOperationList[i].parameters.uiName; //更换界面的名称
557 // if (parameter=="collection") { //收藏
558 // this.getRightRecommendRequest(waterfall_recommend);
559 // } else if (parameter=="history") { //历史
560 // this.getRightRecommendRequest(waterfall_parent);
561 // } else if (parameter=="search") { //搜索
562 // this.getRightRecommendRequest(waterfall_course);
563 // }
564 // break;
544 default: 565 default:
545 // this.doTVLinkAction(aOperationList[i]); 566 this.doTVLinkAction(aOperationList[i]);
546 break; 567 break;
547 } 568 }
548 } 569 }
......
1 {
2 "ver": "1.0.5",
3 "uuid": "42be4def-684b-4088-afec-ee15d2640249",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
...@@ -81,7 +81,7 @@ cc.Class({ ...@@ -81,7 +81,7 @@ cc.Class({
81 "top": 19, 81 "top": 19,
82 "width": 137, 82 "width": 137,
83 "height": 65, 83 "height": 65,
84 "tvlink": "{click: [{action: 'changeUI',parameters: {uiName: 'collection'}}]}", 84 "tvlink": '{"click": [{"action": "changeUI","parameters": {"uiName": "collection"}}]}',
85 "type" : "promotion_item", 85 "type" : "promotion_item",
86 "imageURL": "image/addition/my.png" 86 "imageURL": "image/addition/my.png"
87 }, 87 },
...@@ -91,7 +91,7 @@ cc.Class({ ...@@ -91,7 +91,7 @@ cc.Class({
91 "top": 19, 91 "top": 19,
92 "width": 137, 92 "width": 137,
93 "height": 65, 93 "height": 65,
94 "tvlink": "{click: [{action: 'changeUI',parameters: {uiName: 'history'}}]}", 94 "tvlink": '{"click": [{"action": "changeUI","parameters": {"uiName": "history"}}]}',
95 "type" : "promotion_item", 95 "type" : "promotion_item",
96 "imageURL": "image/addition/history.png" 96 "imageURL": "image/addition/history.png"
97 }, 97 },
...@@ -101,7 +101,7 @@ cc.Class({ ...@@ -101,7 +101,7 @@ cc.Class({
101 "top": 19, 101 "top": 19,
102 "width": 137, 102 "width": 137,
103 "height": 65, 103 "height": 65,
104 "tvlink": "{click: [{action: 'changeUI',parameters: {uiName: 'search'}}]}", 104 "tvlink": '{"click": [{"action": "changeUI","parameters": {"uiName": "search"}}]}',
105 "type" : "promotion_item", 105 "type" : "promotion_item",
106 "imageURL": "image/addition/search.png" 106 "imageURL": "image/addition/search.png"
107 } 107 }
......
...@@ -176,8 +176,15 @@ cc.Topdraw.TVCanvas = ...@@ -176,8 +176,15 @@ cc.Topdraw.TVCanvas =
176 case "promotionBIProbe": 176 case "promotionBIProbe":
177 this.promotionBIProbe(oOperation.parameters.id); 177 this.promotionBIProbe(oOperation.parameters.id);
178 break; 178 break;
179 case "changeLayout": 179 case "changeUI": //切换场景
180 cc.log("改变模型布局"); 180 let parameter = oOperation.parameters.uiName; //更换界面的名称
181 if (parameter == "collection") { //收藏
182
183 } else if (parameter == "history") { //历史
184
185 } else if (parameter == "search") { //搜索
186
187 }
181 break; 188 break;
182 default: 189 default:
183 /* 190 /*
......
1 { 1 {
2 "ver": "1.0.1", 2 "ver": "1.0.1",
3 "uuid": "8465620c-9347-477f-be29-e246c6679147", 3 "uuid": "7266b19c-ef27-4089-a68d-7617ad34896a",
4 "isSubpackage": false, 4 "isSubpackage": false,
5 "subpackageName": "", 5 "subpackageName": "",
6 "subMetas": {} 6 "subMetas": {}
......
1 var Common=require('Common');
2 var Network=require('Network');
3 var TVFocus=require('TVFocus');
4 var FocusInfo=require('FocusInfo');
5 var Application=require('Application');
6 var Log=require('Log');
7
8 cc.Class({
9 extends: cc.Component,
10
11 properties: {
12 // foo: {
13 // default: null, // The default value will be used only when the component attaching
14 // to a node for the first time
15 // url: cc.Texture2D, // optional, default is typeof default
16 // serializable: true, // optional, default is true
17 // visible: true, // optional, default is true
18 // displayName: 'Foo', // optional
19 // readonly: false, // optional, default is false
20 // },
21 // ...
22 _iCellIndex:-1, //这个用于记录某个Cell PFB的索引
23
24 },
25
26 // use this for initialization
27 onLoad: function () {
28
29
30 },
31
32 render:function(){
33
34 },
35
36
37
38 // called every frame, uncomment this function to activate update callback
39 // update: function (dt) {
40
41 // },
42 });
1 {
2 "ver": "1.0.5",
3 "uuid": "d541cd21-82d0-4203-955f-4b672dad2617",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.5",
3 "uuid": "cdb6ad35-068f-4d7f-a5dc-02dbc6e750f1",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "9c17a748-36e0-4bb2-96f4-ed56a56f7480",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
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 textPlayTimes: cc.Label,
17 },
18
19 statics: {
20 PFB_NAME: 'prefab/pfbCategoryOtherListCell',
21 CELL_NAME: 'CategoryOtherListCell',
22 },
23
24 init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) {
25 //准备焦点坐标
26 let fiCategoryBlock = this.node.addComponent(FocusInfo);
27 fiCategoryBlock.init(
28 null, false, null, null, 1.0
29 );
30 compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node);
31 },
32
33 render(oData, iRecordIndex) {
34 this.activeName1.string = oData.name;
35 this.activeName2.string = oData.name;
36 this.normalName.string = oData.name;
37 this.activeName1._updateRenderData(true);
38 this.activeName2._updateRenderData(true);
39 this.normalName._updateRenderData(true);
40 if (oData.play_times) {
41 let value = parseInt(oData.play_times);
42 if (value > 10000) {
43 this.textPlayTimes.string = parseInt(value / 10000) + "万+";
44 } else {
45 this.textPlayTimes.string = value;
46 }
47 }
48 if (oData.image[0]) {
49 var self = this;
50 Network.loadImageInNativeRuntime(
51 Common.TOPDRAW_IMAGE_SERVER_EDU_RIGHT + oData.image[0].fileUrl,
52 function (texture) {
53 self.pic.spriteFrame = new cc.SpriteFrame(texture);
54 }, null, this
55 );
56 }
57
58 this.node.getComponent(FocusInfo).setTVLink(oData.tvlink);
59 },
60
61 enableFocusInfo: function () {
62 this.node.getComponent(FocusInfo).setEnable(true);
63 },
64
65 disableFocusInfo: function () {
66 this.node.getComponent(FocusInfo).setEnable(false);
67 },
68
69 setUIWithFocus: function () {
70 let nodeCellName = this.node.getChildByName('Name');
71 cc.find("NormalName", nodeCellName).opacity = 255;
72 //超出滚动
73 let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName);
74
75 let fOriginalX = nodeScreenTitleText.x;
76 let fOriginalY = nodeScreenTitleText.y;
77
78 let nodeScreenTitleText1 = nodeScreenTitleText.getChildByName('NameText1');
79 let nodeScreenTitleText2 = nodeScreenTitleText.getChildByName('NameText2');
80 nodeScreenTitleText2.x = nodeScreenTitleText1.x + nodeScreenTitleText1.width + 10;//TODO:补丁,解决滚动重叠
81 if (nodeScreenTitleText1.width > nodeScreenTitleText.width) {
82 cc.find("ActiveName/NameContainer", nodeCellName).opacity = 255;
83 cc.find("NormalName", nodeCellName).opacity = 0;
84 let fEndPositionDelta = (nodeScreenTitleText1.width + 30);
85 //下方时长和字有关系,才能速度一样
86 var ftaScreenTitleMoveToTarget = cc.moveTo(10 * (nodeScreenTitleText1.width / nodeScreenTitleText.width), fOriginalX - fEndPositionDelta, fOriginalY);
87 var ftaScreenTitleMoveToBack = cc.moveTo(0, fOriginalX, fOriginalY);
88 var sequenceMediaTitle = cc.sequence(ftaScreenTitleMoveToTarget, ftaScreenTitleMoveToBack);
89 var repeatScreenTitle = cc.repeat(sequenceMediaTitle, 10);
90 repeatScreenTitle.setTag(Common.OVERLENGTH_MOVING);
91 nodeScreenTitleText.runAction(repeatScreenTitle);
92 nodeScreenTitleText2.active = true;
93 }
94 },
95 setUIWithoutFocus: function () {
96 let nodeCellName = this.node.getChildByName('Name');
97 cc.find("NormalName", nodeCellName).opacity = 255;
98 //如有滚动停止滚动
99 let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName);
100 if (null != nodeScreenTitleText.getActionByTag(Common.OVERLENGTH_MOVING)) {
101 nodeScreenTitleText.stopActionByTag(Common.OVERLENGTH_MOVING);
102 nodeScreenTitleText.getChildByName('NameText2').active = false;
103 cc.find("ActiveName/NameContainer", nodeCellName).opacity = 0;
104 }
105 nodeScreenTitleText.x = 0;
106 },
107
108 });
1 {
2 "ver": "1.0.5",
3 "uuid": "e473c201-1294-45ef-aa53-ebdbe2e4f1c5",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
1 var Common = require('Common');
2 var FocusInfo = require('FocusInfo');
3 var ListCell = require('ListCell');
4 var Network = require('Network');
5
6 cc.Class({
7 extends: ListCell,
8
9 properties: {
10 id: 0,
11 pic: cc.Sprite,
12 activeName1: cc.Label,
13 activeName2: cc.Label,
14 normalName: cc.Label,
15 textPlayTimes: cc.Label, //观看次数
16 textScore: cc.Label, //分数
17 },
18
19 statics: {
20 PFB_NAME: 'prefab/pfbSearchCategoryListCell',
21 CELL_NAME: 'CategoryListCell',
22 },
23
24 init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) {
25 //准备焦点坐标
26 let fiCategoryBlock = this.node.addComponent(FocusInfo);
27 fiCategoryBlock.init(
28 null, false, null, null, 1.0
29 );
30 compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node);
31 },
32
33 render(oData, iRecordIndex) {
34 this.id = oData.id;
35 this.activeName1.string = oData.name;
36 this.activeName2.string = oData.name;
37 this.normalName.string = oData.name;
38 this.activeName1._updateRenderData(true);
39 this.activeName2._updateRenderData(true);
40 this.normalName._updateRenderData(true);
41 if (oData.score) {
42 this.textScore.string = parseInt(oData.score * 10) / 10 + "分";
43 }
44 if (oData.play_times) {
45 let value = parseInt(oData.play_times);
46 if (value > 10000) {
47 this.textPlayTimes.string = parseInt(value / 10000) + "万+";
48 } else {
49 this.textPlayTimes.string = value;
50 }
51 }
52 if (oData.image[0]) {
53 var self = this;
54 Network.loadImageInNativeRuntime(
55 Common.TOPDRAW_IMAGE_SERVER_EDU_RIGHT + oData.image[0].fileUrl,
56 function (texture) {
57 self.pic.spriteFrame = new cc.SpriteFrame(texture);
58 }, null, this
59 );
60 }
61
62 this.node.getComponent(FocusInfo).setTVLink(oData.tvlink);
63 },
64
65 enableFocusInfo: function () {
66 this.node.getComponent(FocusInfo).setEnable(true);
67 },
68
69 disableFocusInfo: function () {
70 this.node.getComponent(FocusInfo).setEnable(false);
71 },
72
73 setUIWithFocus: function () {
74 let nodeCellName = this.node.getChildByName('Name');
75 cc.find("NormalName", nodeCellName).opacity = 255;
76 //超出滚动
77 let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName);
78
79 let fOriginalX = nodeScreenTitleText.x;
80 let fOriginalY = nodeScreenTitleText.y;
81
82 let nodeScreenTitleText1 = nodeScreenTitleText.getChildByName('NameText1');
83 let nodeScreenTitleText2 = nodeScreenTitleText.getChildByName('NameText2');
84 nodeScreenTitleText2.x = nodeScreenTitleText1.x + nodeScreenTitleText1.width + 10;//TODO:补丁,解决滚动重叠
85 if (nodeScreenTitleText1.width > nodeScreenTitleText.width) {
86 cc.find("ActiveName/NameContainer", nodeCellName).opacity = 255;
87 cc.find("NormalName", nodeCellName).opacity = 0;
88 let fEndPositionDelta = (nodeScreenTitleText1.width + 30);
89 //下方时长和字有关系,才能速度一样
90 var ftaScreenTitleMoveToTarget = cc.moveTo(10 * (nodeScreenTitleText1.width / nodeScreenTitleText.width), fOriginalX - fEndPositionDelta, fOriginalY);
91 var ftaScreenTitleMoveToBack = cc.moveTo(0, fOriginalX, fOriginalY);
92 var sequenceMediaTitle = cc.sequence(ftaScreenTitleMoveToTarget, ftaScreenTitleMoveToBack);
93 var repeatScreenTitle = cc.repeat(sequenceMediaTitle, 10);
94 repeatScreenTitle.setTag(Common.OVERLENGTH_MOVING);
95 nodeScreenTitleText.runAction(repeatScreenTitle);
96 nodeScreenTitleText2.active = true;
97 }
98 },
99 setUIWithoutFocus: function () {
100 let nodeCellName = this.node.getChildByName('Name');
101 cc.find("NormalName", nodeCellName).opacity = 255;
102 //如有滚动停止滚动
103 let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName);
104 if (null != nodeScreenTitleText.getActionByTag(Common.OVERLENGTH_MOVING)) {
105 nodeScreenTitleText.stopActionByTag(Common.OVERLENGTH_MOVING);
106 nodeScreenTitleText.getChildByName('NameText2').active = false;
107 cc.find("ActiveName/NameContainer", nodeCellName).opacity = 0;
108 }
109 nodeScreenTitleText.x = 0;
110 },
111
112 });
1 {
2 "ver": "1.0.5",
3 "uuid": "bafa58f8-77ed-4d2d-8db4-8292f46ea8ae",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
1 //Home Cell
2 var Common = require('Common');
3 var Network = require('Network');
4
5 cc.Class({
6 extends: cc.Component,
7
8 properties: {
9 id: 0,
10 },
11
12 // data: {id,iconSF,itemName,itemPrice}
13 init: function (data, funCallback) {
14 this.id = data.cId;
15 }
16 });
1 {
2 "ver": "1.0.5",
3 "uuid": "ed50ddf9-4ba2-4a51-a54a-a659ca3e4c1d",
4 "isPlugin": false,
5 "loadPluginInWeb": true,
6 "loadPluginInNative": true,
7 "loadPluginInEditor": false,
8 "subMetas": {}
9 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "ae5d4433-823f-4c50-98c8-57c0e53301dc",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 { 1 {
2 "ver": "2.3.1", 2 "ver": "2.3.1",
3 "uuid": "af74e7fc-dc2d-4e3b-9e98-c77ca9ee7ebe", 3 "uuid": "68f9fe11-869b-482b-a447-be3b81e0858f",
4 "type": "sprite", 4 "type": "sprite",
5 "wrapMode": "clamp", 5 "wrapMode": "clamp",
6 "filterMode": "bilinear", 6 "filterMode": "bilinear",
7 "premultiplyAlpha": false, 7 "premultiplyAlpha": false,
8 "platformSettings": {}, 8 "platformSettings": {},
9 "subMetas": { 9 "subMetas": {
10 "HelloWorld": { 10 "char_delete": {
11 "ver": "1.0.4", 11 "ver": "1.0.4",
12 "uuid": "837c982b-9cd1-4e5a-a97b-7ea38b39a2ed", 12 "uuid": "90edd274-0faa-42d0-9bf9-290ddc51d060",
13 "rawTextureUuid": "af74e7fc-dc2d-4e3b-9e98-c77ca9ee7ebe", 13 "rawTextureUuid": "68f9fe11-869b-482b-a447-be3b81e0858f",
14 "trimType": "auto", 14 "trimType": "auto",
15 "trimThreshold": 1, 15 "trimThreshold": 1,
16 "rotated": false, 16 "rotated": false,
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
18 "offsetY": 0, 18 "offsetY": 0,
19 "trimX": 0, 19 "trimX": 0,
20 "trimY": 0, 20 "trimY": 0,
21 "width": 195, 21 "width": 104,
22 "height": 270, 22 "height": 128,
23 "rawWidth": 195, 23 "rawWidth": 104,
24 "rawHeight": 270, 24 "rawHeight": 128,
25 "borderTop": 0, 25 "borderTop": 0,
26 "borderBottom": 0, 26 "borderBottom": 0,
27 "borderLeft": 0, 27 "borderLeft": 0,
......
1 { 1 {
2 "ver": "2.3.1", 2 "ver": "2.3.1",
3 "uuid": "9ab1d077-e501-4d49-af8d-66fa45d8d195", 3 "uuid": "c1aaf661-8d65-4e0b-97ea-7d3e631edbf3",
4 "type": "sprite", 4 "type": "sprite",
5 "wrapMode": "clamp", 5 "wrapMode": "clamp",
6 "filterMode": "bilinear", 6 "filterMode": "bilinear",
7 "premultiplyAlpha": false, 7 "premultiplyAlpha": false,
8 "platformSettings": {}, 8 "platformSettings": {},
9 "subMetas": { 9 "subMetas": {
10 "history": { 10 "episode_default": {
11 "ver": "1.0.4", 11 "ver": "1.0.4",
12 "uuid": "b9b775dd-436b-455f-bf36-de112de109e8", 12 "uuid": "0b28bb6c-af56-4528-9eda-d5c153bf7a4b",
13 "rawTextureUuid": "9ab1d077-e501-4d49-af8d-66fa45d8d195", 13 "rawTextureUuid": "c1aaf661-8d65-4e0b-97ea-7d3e631edbf3",
14 "trimType": "auto", 14 "trimType": "auto",
15 "trimThreshold": 1, 15 "trimThreshold": 1,
16 "rotated": false, 16 "rotated": false,
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
18 "offsetY": 0, 18 "offsetY": 0,
19 "trimX": 0, 19 "trimX": 0,
20 "trimY": 0, 20 "trimY": 0,
21 "width": 108, 21 "width": 76,
22 "height": 48, 22 "height": 69,
23 "rawWidth": 108, 23 "rawWidth": 76,
24 "rawHeight": 48, 24 "rawHeight": 69,
25 "borderTop": 0, 25 "borderTop": 0,
26 "borderBottom": 0, 26 "borderBottom": 0,
27 "borderLeft": 0, 27 "borderLeft": 0,
......
1 { 1 {
2 "ver": "2.3.1", 2 "ver": "2.3.1",
3 "uuid": "ed1ff055-a16b-4f2a-9caf-e715e5273b95", 3 "uuid": "93fe0c4a-fd88-4526-8bfe-4b157990f800",
4 "type": "sprite", 4 "type": "sprite",
5 "wrapMode": "clamp", 5 "wrapMode": "clamp",
6 "filterMode": "bilinear", 6 "filterMode": "bilinear",
7 "premultiplyAlpha": false, 7 "premultiplyAlpha": false,
8 "platformSettings": {}, 8 "platformSettings": {},
9 "subMetas": { 9 "subMetas": {
10 "my": { 10 "episode_focus": {
11 "ver": "1.0.4", 11 "ver": "1.0.4",
12 "uuid": "244ccc93-62bc-4f79-81ba-2fd341419b2e", 12 "uuid": "b8b225cb-0378-4454-831a-a8666ace1ac2",
13 "rawTextureUuid": "ed1ff055-a16b-4f2a-9caf-e715e5273b95", 13 "rawTextureUuid": "93fe0c4a-fd88-4526-8bfe-4b157990f800",
14 "trimType": "auto", 14 "trimType": "auto",
15 "trimThreshold": 1, 15 "trimThreshold": 1,
16 "rotated": false, 16 "rotated": false,
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
18 "offsetY": 0, 18 "offsetY": 0,
19 "trimX": 0, 19 "trimX": 0,
20 "trimY": 0, 20 "trimY": 0,
21 "width": 127, 21 "width": 76,
22 "height": 48, 22 "height": 69,
23 "rawWidth": 127, 23 "rawWidth": 76,
24 "rawHeight": 48, 24 "rawHeight": 69,
25 "borderTop": 0, 25 "borderTop": 0,
26 "borderBottom": 0, 26 "borderBottom": 0,
27 "borderLeft": 0, 27 "borderLeft": 0,
......
1 { 1 {
2 "ver": "2.3.1", 2 "ver": "2.3.1",
3 "uuid": "64db64a5-a07f-4743-abae-863219e4ed59", 3 "uuid": "829a8556-c3e5-4993-b29b-b13728cf0cfd",
4 "type": "sprite", 4 "type": "sprite",
5 "wrapMode": "clamp", 5 "wrapMode": "clamp",
6 "filterMode": "bilinear", 6 "filterMode": "bilinear",
7 "premultiplyAlpha": false, 7 "premultiplyAlpha": false,
8 "platformSettings": {}, 8 "platformSettings": {},
9 "subMetas": { 9 "subMetas": {
10 "search": { 10 "eye": {
11 "ver": "1.0.4", 11 "ver": "1.0.4",
12 "uuid": "622d4902-61b7-4461-a5fe-bdeaa3f44ce2", 12 "uuid": "f6f2587f-c8f9-48e7-abc8-95f669b612e1",
13 "rawTextureUuid": "64db64a5-a07f-4743-abae-863219e4ed59", 13 "rawTextureUuid": "829a8556-c3e5-4993-b29b-b13728cf0cfd",
14 "trimType": "auto", 14 "trimType": "auto",
15 "trimThreshold": 1, 15 "trimThreshold": 1,
16 "rotated": false, 16 "rotated": false,
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
18 "offsetY": 0, 18 "offsetY": 0,
19 "trimX": 0, 19 "trimX": 0,
20 "trimY": 0, 20 "trimY": 0,
21 "width": 108, 21 "width": 26,
22 "height": 48, 22 "height": 18,
23 "rawWidth": 108, 23 "rawWidth": 26,
24 "rawHeight": 48, 24 "rawHeight": 18,
25 "borderTop": 0, 25 "borderTop": 0,
26 "borderBottom": 0, 26 "borderBottom": 0,
27 "borderLeft": 0, 27 "borderLeft": 0,
......
1 {
2 "ver": "1.2.0",
3 "uuid": "2a8b0556-7c3f-4296-8aed-99fdcf78de11",
4 "optimizationPolicy": "AUTO",
5 "asyncLoadAssets": false,
6 "readonly": false,
7 "subMetas": {}
8 }
...\ No newline at end of file ...\ No newline at end of file
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": "pfbCharListCell",
17 "_objFlags": 0,
18 "_parent": null,
19 "_children": [
20 {
21 "__id__": 2
22 },
23 {
24 "__id__": 5
25 },
26 {
27 "__id__": 8
28 }
29 ],
30 "_active": true,
31 "_level": 1,
32 "_components": [],
33 "_prefab": {
34 "__id__": 11
35 },
36 "_opacity": 255,
37 "_color": {
38 "__type__": "cc.Color",
39 "r": 255,
40 "g": 255,
41 "b": 255,
42 "a": 255
43 },
44 "_contentSize": {
45 "__type__": "cc.Size",
46 "width": 64,
47 "height": 64
48 },
49 "_anchorPoint": {
50 "__type__": "cc.Vec2",
51 "x": 0.5,
52 "y": 0.5
53 },
54 "_position": {
55 "__type__": "cc.Vec3",
56 "x": 0,
57 "y": 0,
58 "z": 0
59 },
60 "_scale": {
61 "__type__": "cc.Vec3",
62 "x": 1,
63 "y": 1,
64 "z": 1
65 },
66 "_eulerAngles": {
67 "__type__": "cc.Vec3",
68 "x": 0,
69 "y": 0,
70 "z": 0
71 },
72 "_skewX": 0,
73 "_skewY": 0,
74 "_is3DNode": false,
75 "groupIndex": 0,
76 "_rotationX": 0,
77 "_rotationY": 0,
78 "_id": ""
79 },
80 {
81 "__type__": "cc.Node",
82 "_name": "Bg",
83 "_objFlags": 0,
84 "_parent": {
85 "__id__": 1
86 },
87 "_children": [],
88 "_active": true,
89 "_level": 2,
90 "_components": [
91 {
92 "__id__": 3
93 }
94 ],
95 "_prefab": {
96 "__id__": 4
97 },
98 "_opacity": 255,
99 "_color": {
100 "__type__": "cc.Color",
101 "r": 255,
102 "g": 255,
103 "b": 255,
104 "a": 255
105 },
106 "_contentSize": {
107 "__type__": "cc.Size",
108 "width": 64,
109 "height": 64
110 },
111 "_anchorPoint": {
112 "__type__": "cc.Vec2",
113 "x": 0.5,
114 "y": 0.5
115 },
116 "_position": {
117 "__type__": "cc.Vec3",
118 "x": 0,
119 "y": 0,
120 "z": 0
121 },
122 "_scale": {
123 "__type__": "cc.Vec3",
124 "x": 1,
125 "y": 1,
126 "z": 1
127 },
128 "_eulerAngles": {
129 "__type__": "cc.Vec3",
130 "x": 0,
131 "y": 0,
132 "z": 0
133 },
134 "_skewX": 0,
135 "_skewY": 0,
136 "_is3DNode": false,
137 "groupIndex": 0,
138 "_rotationX": 0,
139 "_rotationY": 0,
140 "_id": ""
141 },
142 {
143 "__type__": "cc.Sprite",
144 "_name": "",
145 "_objFlags": 0,
146 "node": {
147 "__id__": 2
148 },
149 "_enabled": true,
150 "_materials": [
151 {
152 "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
153 }
154 ],
155 "_srcBlendFactor": 770,
156 "_dstBlendFactor": 771,
157 "_spriteFrame": {
158 "__uuid__": "0b28bb6c-af56-4528-9eda-d5c153bf7a4b"
159 },
160 "_type": 0,
161 "_sizeMode": 0,
162 "_fillType": 0,
163 "_fillCenter": {
164 "__type__": "cc.Vec2",
165 "x": 0,
166 "y": 0
167 },
168 "_fillStart": 0,
169 "_fillRange": 0,
170 "_isTrimmedMode": true,
171 "_atlas": null,
172 "_id": ""
173 },
174 {
175 "__type__": "cc.PrefabInfo",
176 "root": {
177 "__id__": 1
178 },
179 "asset": {
180 "__uuid__": "e145799f-5dbb-46d3-960e-46dfe3217802"
181 },
182 "fileId": "cb1KkwHiFIHYt1lQM7+e+d",
183 "sync": false
184 },
185 {
186 "__type__": "cc.Node",
187 "_name": "ActiveBg",
188 "_objFlags": 0,
189 "_parent": {
190 "__id__": 1
191 },
192 "_children": [],
193 "_active": false,
194 "_level": 2,
195 "_components": [
196 {
197 "__id__": 6
198 }
199 ],
200 "_prefab": {
201 "__id__": 7
202 },
203 "_opacity": 255,
204 "_color": {
205 "__type__": "cc.Color",
206 "r": 255,
207 "g": 255,
208 "b": 255,
209 "a": 255
210 },
211 "_contentSize": {
212 "__type__": "cc.Size",
213 "width": 64,
214 "height": 64
215 },
216 "_anchorPoint": {
217 "__type__": "cc.Vec2",
218 "x": 0.5,
219 "y": 0.5
220 },
221 "_position": {
222 "__type__": "cc.Vec3",
223 "x": 0,
224 "y": 0,
225 "z": 0
226 },
227 "_scale": {
228 "__type__": "cc.Vec3",
229 "x": 1,
230 "y": 1,
231 "z": 1
232 },
233 "_eulerAngles": {
234 "__type__": "cc.Vec3",
235 "x": 0,
236 "y": 0,
237 "z": 0
238 },
239 "_skewX": 0,
240 "_skewY": 0,
241 "_is3DNode": false,
242 "groupIndex": 0,
243 "_rotationX": 0,
244 "_rotationY": 0,
245 "_id": ""
246 },
247 {
248 "__type__": "cc.Sprite",
249 "_name": "",
250 "_objFlags": 0,
251 "node": {
252 "__id__": 5
253 },
254 "_enabled": true,
255 "_materials": [
256 {
257 "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
258 }
259 ],
260 "_srcBlendFactor": 770,
261 "_dstBlendFactor": 771,
262 "_spriteFrame": {
263 "__uuid__": "b8b225cb-0378-4454-831a-a8666ace1ac2"
264 },
265 "_type": 0,
266 "_sizeMode": 0,
267 "_fillType": 0,
268 "_fillCenter": {
269 "__type__": "cc.Vec2",
270 "x": 0,
271 "y": 0
272 },
273 "_fillStart": 0,
274 "_fillRange": 0,
275 "_isTrimmedMode": true,
276 "_atlas": null,
277 "_id": ""
278 },
279 {
280 "__type__": "cc.PrefabInfo",
281 "root": {
282 "__id__": 1
283 },
284 "asset": {
285 "__uuid__": "e145799f-5dbb-46d3-960e-46dfe3217802"
286 },
287 "fileId": "08atCgHdFCvZwHFHgY5Mo4",
288 "sync": false
289 },
290 {
291 "__type__": "cc.Node",
292 "_name": "Text",
293 "_objFlags": 0,
294 "_parent": {
295 "__id__": 1
296 },
297 "_children": [],
298 "_active": true,
299 "_level": 0,
300 "_components": [
301 {
302 "__id__": 9
303 }
304 ],
305 "_prefab": {
306 "__id__": 10
307 },
308 "_opacity": 255,
309 "_color": {
310 "__type__": "cc.Color",
311 "r": 106,
312 "g": 57,
313 "b": 6,
314 "a": 255
315 },
316 "_contentSize": {
317 "__type__": "cc.Size",
318 "width": 26.7,
319 "height": 30.24
320 },
321 "_anchorPoint": {
322 "__type__": "cc.Vec2",
323 "x": 0.5,
324 "y": 0.5
325 },
326 "_position": {
327 "__type__": "cc.Vec3",
328 "x": 0,
329 "y": 0,
330 "z": 0
331 },
332 "_scale": {
333 "__type__": "cc.Vec3",
334 "x": 1,
335 "y": 1,
336 "z": 1
337 },
338 "_eulerAngles": {
339 "__type__": "cc.Vec3",
340 "x": 0,
341 "y": 0,
342 "z": 0
343 },
344 "_skewX": 0,
345 "_skewY": 0,
346 "_is3DNode": false,
347 "groupIndex": 0,
348 "_rotationX": 0,
349 "_rotationY": 0,
350 "_id": ""
351 },
352 {
353 "__type__": "cc.Label",
354 "_name": "",
355 "_objFlags": 0,
356 "node": {
357 "__id__": 8
358 },
359 "_enabled": true,
360 "_materials": [
361 {
362 "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
363 }
364 ],
365 "_useOriginalSize": false,
366 "_string": "21",
367 "_N$string": "21",
368 "_fontSize": 24,
369 "_lineHeight": 24,
370 "_enableWrapText": true,
371 "_N$file": null,
372 "_isSystemFontUsed": true,
373 "_spacingX": 0,
374 "_batchAsBitmap": false,
375 "_N$horizontalAlign": 1,
376 "_N$verticalAlign": 1,
377 "_N$fontFamily": "Arial",
378 "_N$overflow": 0,
379 "_N$cacheMode": 0,
380 "_id": ""
381 },
382 {
383 "__type__": "cc.PrefabInfo",
384 "root": {
385 "__id__": 1
386 },
387 "asset": {
388 "__uuid__": "e145799f-5dbb-46d3-960e-46dfe3217802"
389 },
390 "fileId": "b5iP8+i3NJ5Zt+x3qsZC2A",
391 "sync": false
392 },
393 {
394 "__type__": "cc.PrefabInfo",
395 "root": {
396 "__id__": 1
397 },
398 "asset": {
399 "__uuid__": "e145799f-5dbb-46d3-960e-46dfe3217802"
400 },
401 "fileId": "7a0Pz/KNRLXrJA+uJ5skQo",
402 "sync": false
403 }
404 ]
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.2.0",
3 "uuid": "e145799f-5dbb-46d3-960e-46dfe3217802",
4 "optimizationPolicy": "AUTO",
5 "asyncLoadAssets": false,
6 "readonly": false,
7 "subMetas": {}
8 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.2.0",
3 "uuid": "cd2d143e-5d04-40a9-ba48-68f5a95bdb68",
4 "optimizationPolicy": "AUTO",
5 "asyncLoadAssets": false,
6 "readonly": false,
7 "subMetas": {}
8 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "3885dbd2-a2e7-4c30-a8a3-a6c7f1ea2f5e",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "3e4e81cc-7dd9-40fd-a6ef-7583e4da83f3",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "cartoon_left_icon": {
11 "ver": "1.0.4",
12 "uuid": "8585cca5-0e5f-4718-a29b-e8a75d7862af",
13 "rawTextureUuid": "3e4e81cc-7dd9-40fd-a6ef-7583e4da83f3",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 10,
22 "height": 11,
23 "rawWidth": 10,
24 "rawHeight": 11,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "ef7f030b-a298-4d11-9f26-2cdbd5d82af0",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "cartoon_right_icon": {
11 "ver": "1.0.4",
12 "uuid": "488a892a-c68c-4178-ab8a-1bedb9aa90b5",
13 "rawTextureUuid": "ef7f030b-a298-4d11-9f26-2cdbd5d82af0",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 10,
22 "height": 11,
23 "rawWidth": 10,
24 "rawHeight": 11,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "43bf6cc3-9198-433e-8e32-d5c3001607ee",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "circle_h": {
11 "ver": "1.0.4",
12 "uuid": "4f2c272c-9849-4a1a-8eb5-3a722cf2af24",
13 "rawTextureUuid": "43bf6cc3-9198-433e-8e32-d5c3001607ee",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": -8.5,
19 "trimX": 0,
20 "trimY": 17,
21 "width": 102,
22 "height": 71,
23 "rawWidth": 102,
24 "rawHeight": 88,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "fb407f5a-2023-4ef9-9d09-49786b09954e",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "down_arrow": {
11 "ver": "1.0.4",
12 "uuid": "17b8df2f-d8ef-4693-8db5-d19182b1dd0b",
13 "rawTextureUuid": "fb407f5a-2023-4ef9-9d09-49786b09954e",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 11,
22 "height": 10,
23 "rawWidth": 11,
24 "rawHeight": 10,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "eab32e0e-0f71-42e0-8760-c98882834730",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "full_screen_progress_bar_value": {
11 "ver": "1.0.4",
12 "uuid": "ab957c10-6fcb-4be6-bf8e-663272f6a2a3",
13 "rawTextureUuid": "eab32e0e-0f71-42e0-8760-c98882834730",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 100,
22 "height": 10,
23 "rawWidth": 100,
24 "rawHeight": 10,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "7f3eb9ab-a16c-4398-9fc6-27abde033a85",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "left_arrow": {
11 "ver": "1.0.4",
12 "uuid": "c44d74c6-cbb0-4e8d-8618-8131b3ce6437",
13 "rawTextureUuid": "7f3eb9ab-a16c-4398-9fc6-27abde033a85",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 10,
22 "height": 12,
23 "rawWidth": 10,
24 "rawHeight": 12,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "ae3d9eeb-7730-4602-9478-a94fd2a1f352",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "pageIncon": {
11 "ver": "1.0.4",
12 "uuid": "ccecb956-ef67-4a11-8255-2d476e221119",
13 "rawTextureUuid": "ae3d9eeb-7730-4602-9478-a94fd2a1f352",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 12,
20 "trimY": 12,
21 "width": 10,
22 "height": 70,
23 "rawWidth": 34,
24 "rawHeight": 94,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "fd61fc46-1872-4a84-9ad8-fb6017b907e6",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "progress_bar_circle": {
11 "ver": "1.0.4",
12 "uuid": "bc6465c9-a334-4a42-8f85-64035d32ef51",
13 "rawTextureUuid": "fd61fc46-1872-4a84-9ad8-fb6017b907e6",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 15,
22 "height": 16,
23 "rawWidth": 15,
24 "rawHeight": 16,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "0f6effd8-a5d5-4db0-9557-be1826d047ad",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "right_arrow": {
11 "ver": "1.0.4",
12 "uuid": "99b5c3ef-8f54-4a72-8f9c-98c699ac27dc",
13 "rawTextureUuid": "0f6effd8-a5d5-4db0-9557-be1826d047ad",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 10,
22 "height": 12,
23 "rawWidth": 10,
24 "rawHeight": 12,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "9a89250d-73df-4e5c-9623-bae540e42017",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_bar_bg": {
11 "ver": "1.0.4",
12 "uuid": "1668a88d-480a-4952-9870-4c7933af5cba",
13 "rawTextureUuid": "9a89250d-73df-4e5c-9623-bae540e42017",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 468,
22 "height": 4,
23 "rawWidth": 468,
24 "rawHeight": 4,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "dc525f53-e305-4043-98f3-3104f363d05b",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_bar_bg_horizontal": {
11 "ver": "1.0.4",
12 "uuid": "8b9d908d-4213-4f3a-a3a4-ceda0893b0f5",
13 "rawTextureUuid": "dc525f53-e305-4043-98f3-3104f363d05b",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 468,
22 "height": 4,
23 "rawWidth": 468,
24 "rawHeight": 4,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "64685d2b-326c-44b6-8e38-498ab4c29b09",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_base_bg": {
11 "ver": "1.0.4",
12 "uuid": "09a8ef24-6e6c-4375-93fd-fc0e0219f0a1",
13 "rawTextureUuid": "64685d2b-326c-44b6-8e38-498ab4c29b09",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 2,
22 "height": 512,
23 "rawWidth": 2,
24 "rawHeight": 512,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "174deba5-ea35-49b7-a454-ddf12f28a30b",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_base_bg_horizontal": {
11 "ver": "1.0.4",
12 "uuid": "c8b5fba2-4fb5-48f6-ab49-747067ddea13",
13 "rawTextureUuid": "174deba5-ea35-49b7-a454-ddf12f28a30b",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 577,
22 "height": 2,
23 "rawWidth": 577,
24 "rawHeight": 2,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "3029f7e0-2de7-494e-af52-f5f775e25eef",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_bg": {
11 "ver": "1.0.4",
12 "uuid": "f6445573-a3c9-484d-9aed-9e5b94424f7e",
13 "rawTextureUuid": "3029f7e0-2de7-494e-af52-f5f775e25eef",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 2,
22 "height": 2,
23 "rawWidth": 2,
24 "rawHeight": 2,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "ca4bb32c-54ee-49a7-bff2-74b38e634ffc",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_bg_horizontal": {
11 "ver": "1.0.4",
12 "uuid": "4c37f668-56a0-4ddb-b9b2-7f244f87b8cc",
13 "rawTextureUuid": "ca4bb32c-54ee-49a7-bff2-74b38e634ffc",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 577,
22 "height": 2,
23 "rawWidth": 577,
24 "rawHeight": 2,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "3959a5c0-d10f-4597-b35c-ea559d9a20e2",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "scroll_btn_bg": {
11 "ver": "1.0.4",
12 "uuid": "8b0062f1-95c5-43bf-b551-09acaa7f87a3",
13 "rawTextureUuid": "3959a5c0-d10f-4597-b35c-ea559d9a20e2",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 1,
22 "height": 1,
23 "rawWidth": 1,
24 "rawHeight": 1,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "5ef58804-fc50-44e4-a688-8af95f8a4170",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "up_arrow": {
11 "ver": "1.0.4",
12 "uuid": "4c455926-9c22-4c21-904f-115a1b42be25",
13 "rawTextureUuid": "5ef58804-fc50-44e4-a688-8af95f8a4170",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 11,
22 "height": 10,
23 "rawWidth": 11,
24 "rawHeight": 10,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "69489470-5c2b-4d3d-abd6-3c8c589caf16",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "volume_level_container": {
11 "ver": "1.0.4",
12 "uuid": "a621ec77-0222-479e-a27d-2263fb4c021f",
13 "rawTextureUuid": "69489470-5c2b-4d3d-abd6-3c8c589caf16",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 10,
22 "height": 164,
23 "rawWidth": 10,
24 "rawHeight": 164,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "034f5293-8e68-432f-b83d-a7f8ba1a7de1",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "volume_level_container_value": {
11 "ver": "1.0.4",
12 "uuid": "47c9cf4a-53f8-449f-98dc-cedbc6c38209",
13 "rawTextureUuid": "034f5293-8e68-432f-b83d-a7f8ba1a7de1",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 10,
22 "height": 164,
23 "rawWidth": 10,
24 "rawHeight": 164,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "67508e09-a7e0-4a55-a762-8a474b86b7c3",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "17021db7-66bc-4370-b825-5def7dcc15a3",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "blank_hint": {
11 "ver": "1.0.4",
12 "uuid": "9906c48b-aecf-41ab-809e-dcf81cf058a9",
13 "rawTextureUuid": "17021db7-66bc-4370-b825-5def7dcc15a3",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0.5,
18 "offsetY": -1,
19 "trimX": 1,
20 "trimY": 2,
21 "width": 784,
22 "height": 448,
23 "rawWidth": 785,
24 "rawHeight": 450,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "24138ebf-2d01-4bb5-90d6-a1ae5e6bda6a",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "keyword_bg": {
11 "ver": "1.0.4",
12 "uuid": "98eb8291-df09-4700-a68c-f14146b1de54",
13 "rawTextureUuid": "24138ebf-2d01-4bb5-90d6-a1ae5e6bda6a",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": -0.5,
19 "trimX": 0,
20 "trimY": 1,
21 "width": 297,
22 "height": 64,
23 "rawWidth": 297,
24 "rawHeight": 65,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "d1d0ec20-0c93-44d8-a970-a219d5ada25a",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "medias_bg": {
11 "ver": "1.0.4",
12 "uuid": "b6e5776a-d0fa-42a2-9a88-08ac1de01309",
13 "rawTextureUuid": "d1d0ec20-0c93-44d8-a970-a219d5ada25a",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 711,
22 "height": 570,
23 "rawWidth": 711,
24 "rawHeight": 570,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "99429558-5a25-48b1-bad5-b3f6e0d37628",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "record_bg": {
11 "ver": "1.0.4",
12 "uuid": "71bf3f0c-5129-4c1b-a416-9234cf24389e",
13 "rawTextureUuid": "99429558-5a25-48b1-bad5-b3f6e0d37628",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 404,
22 "height": 464,
23 "rawWidth": 404,
24 "rawHeight": 464,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "5597317d-d2dc-4271-969b-0fefec1b44ed",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "record_focus": {
11 "ver": "1.0.4",
12 "uuid": "e5796682-971a-4ed0-9aa1-9e493337c593",
13 "rawTextureUuid": "5597317d-d2dc-4271-969b-0fefec1b44ed",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 378,
22 "height": 36,
23 "rawWidth": 378,
24 "rawHeight": 36,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "a07a09ec-603d-4103-be5d-9d85b4200e53",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.3.1",
3 "uuid": "a36f544f-1896-4393-9282-527fad3fafde",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "platformSettings": {},
9 "subMetas": {
10 "char_delete": {
11 "ver": "1.0.4",
12 "uuid": "c45a66a4-49af-442f-b6f1-cd51c8fb92ac",
13 "rawTextureUuid": "a36f544f-1896-4393-9282-527fad3fafde",
14 "trimType": "auto",
15 "trimThreshold": 1,
16 "rotated": false,
17 "offsetX": 0,
18 "offsetY": 0,
19 "trimX": 0,
20 "trimY": 0,
21 "width": 104,
22 "height": 128,
23 "rawWidth": 104,
24 "rawHeight": 128,
25 "borderTop": 0,
26 "borderBottom": 0,
27 "borderLeft": 0,
28 "borderRight": 0,
29 "subMetas": {}
30 }
31 }
32 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "b810901a-67db-4ad3-a73a-27bb81807e89",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.2.0",
3 "uuid": "0a04ff1a-da26-483c-aaf0-eaa9f076f2a6",
4 "optimizationPolicy": "AUTO",
5 "asyncLoadAssets": false,
6 "readonly": false,
7 "subMetas": {}
8 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.2.0",
3 "uuid": "79254ebe-6395-4ad3-bf68-3a27f8fc8be2",
4 "optimizationPolicy": "AUTO",
5 "asyncLoadAssets": false,
6 "readonly": false,
7 "subMetas": {}
8 }
...\ No newline at end of file ...\ No newline at end of file