Commit 7c113e60 7c113e60422113f3fa0a3a2407a6a4fbd2a9ce73 by jinwawa

achive sceneExplore

1 parent 1ab0b712
Showing 94 changed files with 1659 additions and 5 deletions
...@@ -41,8 +41,8 @@ ...@@ -41,8 +41,8 @@
41 }, 41 },
42 "_scale": { 42 "_scale": {
43 "__type__": "cc.Vec3", 43 "__type__": "cc.Vec3",
44 "x": 0.3763671875, 44 "x": 0.36666666666666664,
45 "y": 0.3763671875, 45 "y": 0.36666666666666664,
46 "z": 1 46 "z": 1
47 }, 47 },
48 "_quat": { 48 "_quat": {
......
1 {
2 "ver": "1.0.1",
3 "uuid": "de53d75e-43a9-4cbd-b007-a5465224828b",
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.1",
3 "uuid": "8d835beb-8f38-4d39-8b01-ffdc06f5e191",
4 "asyncLoadAssets": false,
5 "autoReleaseAssets": false,
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 var Common = require('Common');
2 var Network = require('Network');
3 var TVFocus = require('TVFocus');
4 var FocusInfo = require('FocusInfo');
5 var TVCanvas = require('TVCanvas');
6 var TVScrollParameter = require('TVScrollParameter');
7 var ListView = require('ListView');
8 var ListCell = require('ListCell');
9
10 cc.Class({
11 extends: TVCanvas,
12
13 properties: {
14 _speed: 1,
15 _hero_start_x: 0,
16 _hero_end_x: 3648,
17 _hero_y: 0,
18 },
19
20 onLoad: function () {
21 this._super();
22 this._hero_start_x = 500;
23 this.bg_1 = this.node.getChildByName("bg_1");
24 this.bg_2 = this.node.getChildByName("bg_2");
25 this.cur_bg = this.bg_1;
26 this.testmap = this.node.getChildByName("testmap");
27
28 this.animLayer = this.testmap.getComponent(cc.TiledMap).getLayer("Animal");
29 this.hero = this.node.getChildByName("hero");
30 this._hero_y = this.hero.y;
31 },
32
33 keyDownDirection: function (Direct) {
34 var fiFocusTarget = null;
35 var fiCurrentFocus = this._fiCurrentFocus;
36 var oScrollParameter = null;
37
38 fiFocusTarget = this._cFocus.findTarget(fiCurrentFocus, this._aFocusTargets, 0, Direct);
39 fiFocusTarget = this.checkFocusTarget(fiFocusTarget);
40 if (!fiFocusTarget) { return; }
41 // this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Direct, null, oScrollParameter);
42 this.scheduleOnce(() => { //指定0让回调函数在下一帧立即执行(推荐位初始化图片后,需等待下一帧操作)
43 this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Direct, null, oScrollParameter);
44 }, 0.5);
45 },
46
47 checkFocusTarget: function (fiFocusTarget) {
48 return fiFocusTarget;
49 },
50
51 onKeyDown: function (event) {
52
53 switch (event.keyCode) {
54 case cc.macro.KEY.up:
55 case Common.ANDROID_KEY.up:
56 this.keyDownDirection(Common.MOVE_DIRECTION_UP);
57 break;
58 case cc.macro.KEY.right:
59 case Common.ANDROID_KEY.right:
60 this.keyDownDirection(Common.MOVE_DIRECTION_RIGHT);
61 break;
62 case cc.macro.KEY.down:
63 case Common.ANDROID_KEY.down:
64 this.keyDownDirection(Common.MOVE_DIRECTION_DOWN);
65 break;
66 case cc.macro.KEY.left:
67 case Common.ANDROID_KEY.left:
68 this.keyDownDirection(Common.MOVE_DIRECTION_LEFT);
69 break;
70 case cc.macro.KEY.enter:
71 case cc.macro.KEY.space:
72 case Common.ANDROID_KEY.enter:
73 this._hero_start_x += 100;
74 this._speed = 1;
75 // this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation("Animation1");
76 // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK);
77 break;
78 case cc.macro.KEY.backspace:
79 case Common.ANDROID_KEY.back:
80 this.backAScene();
81 break;
82 }
83 },
84
85 update: function (dt) {
86 this.bg_1.x -= this._speed;
87 this.bg_2.x -= this._speed;
88 this.testmap.x -= this._speed;
89 this._hero_start_x += this._speed;
90 if (this.cur_bg.x <= -1820) {
91 if (this.cur_bg == this.bg_2) {
92 this.bg_2.x = this.bg_1.x + 1820;
93 this.cur_bg = this.bg_1;
94 } else {
95 this.bg_1.x = this.bg_2.x + 1820;
96 this.cur_bg = this.bg_2;
97 }
98 }
99
100 // cc.log("hero位置--------》" + this._hero_start_x);
101 var pos = this._getTilePos(cc.v2(this._hero_start_x, 4));
102 // cc.log("位置----------》"+pos);
103 if (this._hero_start_x < this._hero_end_x) { //不能超过瓦片地图最长长度
104 //判断gid是否为0,该地图位置就会出现障碍物
105 var gid = this.animLayer.getTileGIDAt(pos);
106 // cc.log("gid========" + gid);
107 if (gid != 0) {
108 this._speed = 0;
109 this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation("");
110 }
111 }
112 },
113
114 doCurrentFocusTVLinkAction: function (strAction) {
115 let strTVLink = this._fiCurrentFocus.getTVLink();
116 var joTVLink = null;
117 try {
118 joTVLink = JSON.parse(strTVLink);
119 let jaOperationList = joTVLink.click;
120 for (let i = 0; i < jaOperationList.length; i++) {
121 switch (jaOperationList[i].action) {
122 default:
123 this.doTVLinkAction(jaOperationList[i]);
124 break;
125 }
126 }
127 } catch (error) {
128 cc.log("runTVLinkAction Exception..." + error);
129 }
130 },
131
132 _getTilePos: function (posInPixel) {
133 var mapSize = this.testmap.getContentSize();
134 var tileSize = this.testmap.getComponent(cc.TiledMap).getTileSize();
135 var x = Math.floor(posInPixel.x / tileSize.width);
136 var y = Math.floor((mapSize.height - posInPixel.y) / tileSize.height);
137 return cc.v2(x, y);
138 },
139
140 });
1 {
2 "ver": "1.0.5",
3 "uuid": "856cfdb7-61db-45cc-aa2e-9c7886ed6479",
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 var Common = require('Common');
3 var Network = require('Network');
4 var TVFocus = require('TVFocus');
5 var FocusInfo = require('FocusInfo');
6 var TVCanvas = require('TVCanvas');
7 var Utils = require('Utils');
8 var BusinessParameter = require('BusinessParameter');
9 var ListView = require('ListView');
10 var ListCell = require('ListCell');
11 var GameLobbyCategoryJson = require('GameLobbyCategoryJson');
12
13 cc.Class({
14 extends: TVCanvas,
15
16 properties: {
17 activitySprite:cc.Sprite,
18 roleSprite:cc.Sprite,
19 taskSprite:cc.Sprite,
20 achievementSprite:cc.Sprite,
21 shopSprite:cc.Sprite,
22 closeTaskSprite:cc.Sprite,
23 roleAnim:dragonBones.ArmatureDisplay,
24 PFB_GAME_TASKITEM: {
25 default: null,
26 type: cc.Prefab
27 },
28 },
29
30 onLoad:function(){
31 this._super();
32
33 this._iSceneStatus=1; //焦点层级
34 this.initFocus();
35
36 //右分类框框
37 this._nodeCategoryList = cc.find("task/task_panel/CategoryList", this.node);
38 let lvCategoryList = this._nodeCategoryList.addComponent(ListView);
39 lvCategoryList.init(this, 3, 1, 3, 1, 'pfbGameTaskItemCell',
40 0, 100, //起始位置
41 0, 0, 0, 0, //margin
42 1, 1,
43 function () {
44 this.getCategoryList();
45 }
46 );
47 },
48
49 getCategoryList: function () {
50 var self = this;
51 let lvCategoryList = this._nodeCategoryList.getComponent(ListView);
52 let oCategoryRequestParameters = {
53 "view": "json",
54 "collectionId": this._iDefaultCollectionId,
55 // "appId": this._aTypeAppId[this._oSceneContext._iCurrentTypeIndex],
56 "sortByCollection": 1,
57 "sortField": "update_time",
58 "sortDirection": "desc"
59 };
60 let iStart1 = 0;
61 if (null != this._oSceneContext.categoryRecordIndexOfFirstCell) {
62 iStart1 = this._oSceneContext.categoryRecordIndexOfFirstCell;
63 }
64
65 lvCategoryList.setDataSource(
66 "GET",
67 Common.TOPDRAW_API_SERVER_EDU + "User/ListMediaByCollection",
68 oCategoryRequestParameters,
69 iStart1, (lvCategoryList.getShowCellRows() + lvCategoryList.getAlphaCellRows()) * lvCategoryList.getCellCountEachRow(),
70 "", ""
71 );
72
73 lvCategoryList.loadData(
74 function (strResponse) {
75 // var oJSONResult = JSON.parse(strResponse);
76 // if (oJSONResult.resultSet.length <= 0) { //没有数据就显示占位图
77 // cc.find('BlankIcon', this.node).opacity = 255
78 // } else {
79 // cc.find('BlankIcon', this.node).opacity = 0
80 // }
81 strResponse = GameLobbyCategoryJson.gameCategory; //暂时采用假数据
82 lvCategoryList.renderInitData(JSON.stringify(strResponse)); //将假数据转成字符串在给过去
83 this._bIsCategoryListDataInit = true;
84 this._oSceneContext.categoryRecordIndexOfFirstCell = lvCategoryList.getRecordIndexOfFirstCellInPage();
85 // this.checkDataReadyAndInitFocus();
86
87 // lvCategoryList.renderInitData(strResponse, function () {
88 // this._bIsCategoryListDataInit = true;
89 // this._oSceneContext.categoryRecordIndexOfFirstCell = lvCategoryList.getRecordIndexOfFirstCellInPage();
90 // this.checkDataReadyAndInitFocus();
91 // // this.changeEditorStatus();
92 // });
93 },
94 null,
95 this
96 );
97
98 var self = this;
99 this._iShowCellRows = 2;
100 this._iCellCountEachRow = 3;
101 },
102
103 initFocus: function () {
104 this._aFocusTargets[1] = [];
105 var fiActivitySprite = this.activitySprite.addComponent(FocusInfo);//
106 this._aFocusTargets[1]['to_activity'] = this.activitySprite;
107 fiActivitySprite.init(
108 null, true
109 );
110
111 var fiRoleSprite = this.roleSprite.addComponent(FocusInfo);//
112 this._aFocusTargets[1]['to_role'] = this.roleSprite;
113 fiRoleSprite.init(
114 null, true
115 );
116
117 var fiTaskSprite = this.taskSprite.addComponent(FocusInfo);//
118 this._aFocusTargets[1]['to_task'] = this.taskSprite;
119 fiTaskSprite.init(
120 null, true
121 );
122
123 var fiAchievementSprite = this.achievementSprite.addComponent(FocusInfo);//
124 this._aFocusTargets[1]['to_achievement'] = this.achievementSprite;
125 fiAchievementSprite.init(
126 null, true
127 );
128
129 var fiShopSprite = this.shopSprite.addComponent(FocusInfo);//
130 this._aFocusTargets[1]['to_shop'] = this.shopSprite;
131 fiShopSprite.init(
132 null, true
133 );
134
135 var fiCloseTaskSprite = this.closeTaskSprite.addComponent(FocusInfo);//
136 this._aFocusTargets[0]['to_close_task'] = this.closeTaskSprite;
137 fiCloseTaskSprite.init(
138 null, true
139 );
140
141
142 var nodeFocus = new cc.Node('nodeFocus');
143 this.node.addChild(nodeFocus, 10);
144 this._cFocus = this.node.getChildByName('nodeFocus').addComponent(TVFocus);
145 this._cFocus.init('focusContainer', this,
146 this.activitySprite.getComponent(FocusInfo),
147 Common.SCREEN_WIDTH, Common.SCREEN_HEIGHT, 6, 4, 1.0);
148 // this._cFocus.hide(); //所有焦点都是隐藏的
149 },
150
151 keyDownDirection: function (Direct) {
152 var fiFocusTarget = null;
153 var fiCurrentFocus = this._fiCurrentFocus;
154 var oScrollParameter = null;
155
156 fiFocusTarget = this._cFocus.findTarget(fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Direct);
157 fiFocusTarget = this.checkFocusTarget(fiFocusTarget);
158 if (!fiFocusTarget) { return; }
159 this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Direct, null, oScrollParameter);
160 },
161
162 checkFocusTarget: function (fiFocusTarget) {
163 return fiFocusTarget;
164 },
165
166 onKeyDown: function (event) {
167 this._super(event);
168
169 switch (event.keyCode) {
170 case cc.macro.KEY.up:
171 case Common.ANDROID_KEY.up:
172 this.keyDownDirection(Common.MOVE_DIRECTION_UP);
173 break;
174 case cc.macro.KEY.right:
175 case Common.ANDROID_KEY.right:
176 this.keyDownDirection(Common.MOVE_DIRECTION_RIGHT);
177 break;
178 case cc.macro.KEY.down:
179 case Common.ANDROID_KEY.down:
180 this.keyDownDirection(Common.MOVE_DIRECTION_DOWN);
181 break;
182 case cc.macro.KEY.left:
183 case Common.ANDROID_KEY.left:
184 this.keyDownDirection(Common.MOVE_DIRECTION_LEFT);
185 break;
186 case cc.macro.KEY.enter:
187 case cc.macro.KEY.space:
188 case Common.ANDROID_KEY.enter:
189 if(0 == this._fiCurrentFocus.node.getName().indexOf('spriteTask')){ //任务
190 cc.find("task",this.node).active=true;
191 this._iSceneStatus=0;
192 var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT);
193 this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_LEFT, null, null);
194
195 cc.find("task",this.node).zIndex=10;
196 this.activitySprite.node.zIndex=0; //这几个总是另类凸显出来
197 this.roleSprite.node.zIndex=0;
198 this.taskSprite.node.zIndex=0;
199 this.achievementSprite.node.zIndex=0;
200 this.shopSprite.node.zIndex=0;
201 }else if(0 == this._fiCurrentFocus.node.getName().indexOf('close')){
202 cc.find("task",this.node).active=false;
203 this._iSceneStatus=1;
204 var fiFocusTarget = this.taskSprite.getComponent(FocusInfo);
205 this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_UP, null, null);
206 }
207 this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK);
208 break;
209 case cc.macro.KEY.backspace:
210 case Common.ANDROID_KEY.back:
211 this.backAScene();
212 break;
213 }
214 },
215
216
217 onBeforeFocusChange: function (event) {
218 this._super(event);
219 var self = this;
220 let fiFrom = event.detail.from;
221 if (0 == fiFrom.node.name.indexOf('sprite')) {
222 fiFrom.node.getChildByName("active").active=false;
223 }
224 },
225
226 onAfterFocusChange: function (event) {
227 this._super(event);
228 var self = this;
229 let fiTo = event.detail.to;
230 if (0 == fiTo.node.name.indexOf('sprite')) {
231 fiTo.node.getChildByName("active").active=true;
232 }
233
234 },
235
236 doCurrentFocusTVLinkAction: function (strAction) {
237 let strTVLink = this._fiCurrentFocus.getTVLink();
238 var joTVLink = null;
239 try {
240 joTVLink = JSON.parse(strTVLink);
241 let jaOperationList = joTVLink.click;
242 for (let i = 0; i < jaOperationList.length; i++) {
243 switch (jaOperationList[i].action) {
244 default:
245 this.doTVLinkAction(jaOperationList[i]);
246 break;
247 }
248 }
249 } catch (error) {
250 cc.log("runTVLinkAction Exception..." + error);
251 }
252 },
253
254
255 });
1 {
2 "ver": "1.0.5",
3 "uuid": "2d3396c9-ade8-4310-b1d7-7b275193fe8a",
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 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 },
13
14 statics: {
15 PFB_NAME: 'prefab/pfbGameTaskItemCell',
16 CELL_NAME: 'GameTaskItemCell',
17 },
18
19 init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) {
20 //准备焦点坐标
21 let fiCategoryBlock = this.node.addComponent(FocusInfo);
22 fiCategoryBlock.init(
23 null, false, null, null, 1.0
24 );
25 compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node); //注意层级
26 },
27
28 render(oData, iRecordIndex) {
29
30 },
31
32 enableFocusInfo: function () {
33 this.node.getComponent(FocusInfo).setEnable(true);
34 },
35
36 disableFocusInfo: function () {
37 this.node.getComponent(FocusInfo).setEnable(false);
38 },
39
40 setUIWithFocus: function () {
41 let nodeCellName = this.node.getChildByName('Name');
42 cc.find("NormalName", nodeCellName).opacity = 255;
43 //超出滚动
44 let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName);
45
46 let fOriginalX = nodeScreenTitleText.x;
47 let fOriginalY = nodeScreenTitleText.y;
48
49 let nodeScreenTitleText1 = nodeScreenTitleText.getChildByName('NameText1');
50 let nodeScreenTitleText2 = nodeScreenTitleText.getChildByName('NameText2');
51 nodeScreenTitleText2.x = nodeScreenTitleText1.x + nodeScreenTitleText1.width + 10;//TODO:补丁,解决滚动重叠
52 if (nodeScreenTitleText1.width > nodeScreenTitleText.width) {
53 cc.find("ActiveName/NameContainer", nodeCellName).opacity = 255;
54 cc.find("NormalName", nodeCellName).opacity = 0;
55 let fEndPositionDelta = (nodeScreenTitleText1.width + 30);
56 //下方时长和字有关系,才能速度一样
57 var ftaScreenTitleMoveToTarget = cc.moveTo(10 * (nodeScreenTitleText1.width / nodeScreenTitleText.width), fOriginalX - fEndPositionDelta, fOriginalY);
58 var ftaScreenTitleMoveToBack = cc.moveTo(0, fOriginalX, fOriginalY);
59 var sequenceMediaTitle = cc.sequence(ftaScreenTitleMoveToTarget, ftaScreenTitleMoveToBack);
60 var repeatScreenTitle = cc.repeat(sequenceMediaTitle, 10);
61 repeatScreenTitle.setTag(Common.OVERLENGTH_MOVING);
62 nodeScreenTitleText.runAction(repeatScreenTitle);
63 nodeScreenTitleText2.active = true;
64 }
65 },
66 setUIWithoutFocus: function () {
67 let nodeCellName = this.node.getChildByName('Name');
68 cc.find("NormalName", nodeCellName).opacity = 255;
69 //如有滚动停止滚动
70 let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName);
71 if (null != nodeScreenTitleText.getActionByTag(Common.OVERLENGTH_MOVING)) {
72 nodeScreenTitleText.stopActionByTag(Common.OVERLENGTH_MOVING);
73 nodeScreenTitleText.getChildByName('NameText2').active = false;
74 cc.find("ActiveName/NameContainer", nodeCellName).opacity = 0;
75 }
76 nodeScreenTitleText.x = 0;
77 },
78 });
1 {
2 "ver": "1.0.5",
3 "uuid": "927455d2-15f1-4e0f-9bb7-174b5262ef61",
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": "a72de056-2ab4-44fd-a82e-478152e4fd6f",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "fbee3d6a-89a1-4e5f-ad4a-fe0451d853db",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {"frameRate":60,"name":"duck","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"armatureName","aabb":{"x":-90,"y":-185.74,"width":157,"height":195.58},"bone":[{"name":"root"},{"inheritScale":false,"name":"Layer7","parent":"root","transform":{"x":-2.4744,"y":4.8423}},{"inheritScale":false,"length":65,"name":"Layer11","parent":"root","transform":{"x":0.2679,"y":-16.752,"skX":-87.4308,"skY":-87.4308}},{"inheritScale":false,"length":44,"name":"Layer14","parent":"Layer11","transform":{"x":4.1198,"y":8.1569,"skX":151.3452,"skY":151.3452}},{"inheritScale":false,"length":48,"name":"Layer13","parent":"Layer11","transform":{"x":3.298,"y":-10.158,"skX":-159.7595,"skY":-159.7595}},{"inheritScale":false,"length":68,"name":"Layer9","parent":"Layer11","transform":{"x":37.6811,"y":12.4901,"skX":137.8478,"skY":137.8478}},{"inheritScale":false,"length":79,"name":"Layer10","parent":"Layer11","transform":{"x":34.7887,"y":-24.0837,"skX":-144.7995,"skY":-144.7995}},{"inheritScale":false,"length":97,"name":"Layer8","parent":"Layer11","transform":{"x":55.3423,"y":-2.9004,"skX":-2.0795,"skY":-2.0795}}],"slot":[{"name":"Layer7","parent":"Layer7"},{"name":"Layer14","parent":"Layer14"},{"name":"Layer13","parent":"Layer13"},{"name":"Layer9","parent":"Layer9"},{"name":"Layer11","parent":"Layer11"},{"name":"Layer10","parent":"Layer10"},{"name":"Layer8","parent":"Layer8"}],"skin":[{"slot":[{"name":"Layer9","display":[{"name":"duck04","transform":{"x":12.7,"y":1.88,"skX":-50.42,"skY":-50.42}}]},{"name":"Layer11","display":[{"name":"duck03","transform":{"x":21.85,"y":-6,"skX":87.43,"skY":87.43}}]},{"name":"Layer10","display":[{"name":"duck02","transform":{"x":15.37,"y":-0.82,"skX":-127.77,"skY":-127.77}}]},{"name":"Layer8","display":[{"name":"duck01","transform":{"x":50.47,"y":-11.78,"skX":89.51,"skY":89.51}}]},{"name":"Layer7","display":[{"name":"duck07"}]},{"name":"Layer14","display":[{"name":"duck05","transform":{"x":11.36,"y":0.62,"skX":-63.91,"skY":-63.91}}]},{"name":"Layer13","display":[{"name":"duck06","transform":{"x":13.83,"y":-0.75,"skX":-112.81,"skY":-112.81}}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Animation1","bone":[{"name":"Layer8","rotateFrame":[{"duration":30,"tweenEasing":0,"rotate":2},{"duration":30,"tweenEasing":0,"rotate":-2},{"duration":0,"rotate":2}]},{"name":"Layer10","rotateFrame":[{"duration":30,"tweenEasing":0,"rotate":16},{"duration":30,"tweenEasing":0,"rotate":-30},{"duration":0,"rotate":16}]},{"name":"Layer11","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"y":-5},{"duration":0}]},{"name":"Layer9","rotateFrame":[{"duration":30,"tweenEasing":0,"rotate":-18},{"duration":30,"tweenEasing":0,"rotate":30},{"duration":0,"rotate":-18}]},{"name":"Layer13","translateFrame":[{"duration":30,"tweenEasing":0,"x":-5,"y":-5},{"duration":30,"tweenEasing":0,"x":-3,"y":-5},{"duration":0,"x":-5,"y":-5}],"rotateFrame":[{"duration":30,"tweenEasing":0,"rotate":-41.8},{"duration":30,"tweenEasing":0,"rotate":4.9},{"duration":0,"rotate":-41.8}]},{"name":"Layer14","translateFrame":[{"duration":60,"x":-2}],"rotateFrame":[{"duration":30,"tweenEasing":0,"rotate":42.97},{"duration":30,"tweenEasing":0,"rotate":-9.72},{"duration":0,"rotate":42.97}]},{"name":"Layer7","translateFrame":[{"duration":60,"y":5}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.9},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"Animation1"}]}]}
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.0",
3 "uuid": "e3ad9b78-ae63-4929-81c2-5781ca616f08",
4 "dragonBonesJson": "{\"frameRate\":60,\"name\":\"duck\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"armatureName\",\"aabb\":{\"x\":-90,\"y\":-185.74,\"width\":157,\"height\":195.58},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"name\":\"Layer7\",\"parent\":\"root\",\"transform\":{\"x\":-2.4744,\"y\":4.8423}},{\"inheritScale\":false,\"length\":65,\"name\":\"Layer11\",\"parent\":\"root\",\"transform\":{\"x\":0.2679,\"y\":-16.752,\"skX\":-87.4308,\"skY\":-87.4308}},{\"inheritScale\":false,\"length\":44,\"name\":\"Layer14\",\"parent\":\"Layer11\",\"transform\":{\"x\":4.1198,\"y\":8.1569,\"skX\":151.3452,\"skY\":151.3452}},{\"inheritScale\":false,\"length\":48,\"name\":\"Layer13\",\"parent\":\"Layer11\",\"transform\":{\"x\":3.298,\"y\":-10.158,\"skX\":-159.7595,\"skY\":-159.7595}},{\"inheritScale\":false,\"length\":68,\"name\":\"Layer9\",\"parent\":\"Layer11\",\"transform\":{\"x\":37.6811,\"y\":12.4901,\"skX\":137.8478,\"skY\":137.8478}},{\"inheritScale\":false,\"length\":79,\"name\":\"Layer10\",\"parent\":\"Layer11\",\"transform\":{\"x\":34.7887,\"y\":-24.0837,\"skX\":-144.7995,\"skY\":-144.7995}},{\"inheritScale\":false,\"length\":97,\"name\":\"Layer8\",\"parent\":\"Layer11\",\"transform\":{\"x\":55.3423,\"y\":-2.9004,\"skX\":-2.0795,\"skY\":-2.0795}}],\"slot\":[{\"name\":\"Layer7\",\"parent\":\"Layer7\"},{\"name\":\"Layer14\",\"parent\":\"Layer14\"},{\"name\":\"Layer13\",\"parent\":\"Layer13\"},{\"name\":\"Layer9\",\"parent\":\"Layer9\"},{\"name\":\"Layer11\",\"parent\":\"Layer11\"},{\"name\":\"Layer10\",\"parent\":\"Layer10\"},{\"name\":\"Layer8\",\"parent\":\"Layer8\"}],\"skin\":[{\"slot\":[{\"name\":\"Layer9\",\"display\":[{\"name\":\"duck04\",\"transform\":{\"x\":12.7,\"y\":1.88,\"skX\":-50.42,\"skY\":-50.42}}]},{\"name\":\"Layer11\",\"display\":[{\"name\":\"duck03\",\"transform\":{\"x\":21.85,\"y\":-6,\"skX\":87.43,\"skY\":87.43}}]},{\"name\":\"Layer10\",\"display\":[{\"name\":\"duck02\",\"transform\":{\"x\":15.37,\"y\":-0.82,\"skX\":-127.77,\"skY\":-127.77}}]},{\"name\":\"Layer8\",\"display\":[{\"name\":\"duck01\",\"transform\":{\"x\":50.47,\"y\":-11.78,\"skX\":89.51,\"skY\":89.51}}]},{\"name\":\"Layer7\",\"display\":[{\"name\":\"duck07\"}]},{\"name\":\"Layer14\",\"display\":[{\"name\":\"duck05\",\"transform\":{\"x\":11.36,\"y\":0.62,\"skX\":-63.91,\"skY\":-63.91}}]},{\"name\":\"Layer13\",\"display\":[{\"name\":\"duck06\",\"transform\":{\"x\":13.83,\"y\":-0.75,\"skX\":-112.81,\"skY\":-112.81}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Animation1\",\"bone\":[{\"name\":\"Layer8\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":2},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-2},{\"duration\":0,\"rotate\":2}]},{\"name\":\"Layer10\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":16},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-30},{\"duration\":0,\"rotate\":16}]},{\"name\":\"Layer11\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"y\":-5},{\"duration\":0}]},{\"name\":\"Layer9\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":-18},{\"duration\":30,\"tweenEasing\":0,\"rotate\":30},{\"duration\":0,\"rotate\":-18}]},{\"name\":\"Layer13\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"x\":-5,\"y\":-5},{\"duration\":30,\"tweenEasing\":0,\"x\":-3,\"y\":-5},{\"duration\":0,\"x\":-5,\"y\":-5}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":-41.8},{\"duration\":30,\"tweenEasing\":0,\"rotate\":4.9},{\"duration\":0,\"rotate\":-41.8}]},{\"name\":\"Layer14\",\"translateFrame\":[{\"duration\":60,\"x\":-2}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":42.97},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-9.72},{\"duration\":0,\"rotate\":42.97}]},{\"name\":\"Layer7\",\"translateFrame\":[{\"duration\":60,\"y\":5}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.9},{\"duration\":0}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Animation1\"}]}]}",
5 "subMetas": {}
6 }
...\ No newline at end of file ...\ No newline at end of file
1 {"width":256,"imagePath":"duck_tex.png","height":256,"name":"duck","SubTexture":[{"width":66,"y":108,"height":10,"name":"duck07","x":160},{"width":24,"y":44,"height":30,"name":"duck05","x":222},{"width":24,"y":76,"height":30,"name":"duck06","x":197},{"width":35,"y":64,"height":40,"name":"duck04","x":160},{"width":60,"y":1,"height":61,"name":"duck03","x":160},{"width":27,"y":1,"height":41,"name":"duck02","x":222},{"width":157,"y":1,"height":126,"name":"duck01","x":1}]}
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.0",
3 "uuid": "cdd960ea-e3ab-4991-a37d-3f8f88243de7",
4 "atlasJson": "{\"width\":256,\"imagePath\":\"duck_tex.png\",\"height\":256,\"name\":\"duck\",\"SubTexture\":[{\"width\":66,\"y\":108,\"height\":10,\"name\":\"duck07\",\"x\":160},{\"width\":24,\"y\":44,\"height\":30,\"name\":\"duck05\",\"x\":222},{\"width\":24,\"y\":76,\"height\":30,\"name\":\"duck06\",\"x\":197},{\"width\":35,\"y\":64,\"height\":40,\"name\":\"duck04\",\"x\":160},{\"width\":60,\"y\":1,\"height\":61,\"name\":\"duck03\",\"x\":160},{\"width\":27,\"y\":1,\"height\":41,\"name\":\"duck02\",\"x\":222},{\"width\":157,\"y\":1,\"height\":126,\"name\":\"duck01\",\"x\":1}]}",
5 "texture": "63d3a691-20a5-4622-afca-51f9290fc5ec",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "63d3a691-20a5-4622-afca-51f9290fc5ec",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "duck_tex": {
10 "ver": "1.0.4",
11 "uuid": "1f32aa8a-f7e2-448c-9046-35d4b1c3a9c1",
12 "rawTextureUuid": "63d3a691-20a5-4622-afca-51f9290fc5ec",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -3,
17 "offsetY": 64,
18 "trimX": 1,
19 "trimY": 1,
20 "width": 248,
21 "height": 126,
22 "rawWidth": 256,
23 "rawHeight": 256,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "069ee358-70a4-453b-b438-87654e3f2611",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "e72a752b-f24b-4ebf-928b-450e07b429cc",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "00": {
10 "ver": "1.0.4",
11 "uuid": "1d0196a1-3cc6-4e2b-b46c-c9a27968e929",
12 "rawTextureUuid": "e72a752b-f24b-4ebf-928b-450e07b429cc",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 349,
21 "height": 461,
22 "rawWidth": 349,
23 "rawHeight": 461,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "30b4e545-93b6-4cbb-a5cf-76ae7da6665c",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "01": {
10 "ver": "1.0.4",
11 "uuid": "2b1bc8b8-0598-4205-b51c-4097d10661e4",
12 "rawTextureUuid": "30b4e545-93b6-4cbb-a5cf-76ae7da6665c",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -0.5,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 415,
21 "height": 355,
22 "rawWidth": 416,
23 "rawHeight": 355,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "6f964b8a-e739-4358-8b4a-dab225c0f08a",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "02": {
10 "ver": "1.0.4",
11 "uuid": "b07c103d-d179-4e96-a850-d5f955169fd4",
12 "rawTextureUuid": "6f964b8a-e739-4358-8b4a-dab225c0f08a",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -0.5,
18 "trimX": 0,
19 "trimY": 1,
20 "width": 411,
21 "height": 312,
22 "rawWidth": 411,
23 "rawHeight": 313,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "c9f930cc-9597-4c35-a5c8-d5775a87a7c3",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "03": {
10 "ver": "1.0.4",
11 "uuid": "213aba75-2642-4bb5-84ce-bf9bf2070594",
12 "rawTextureUuid": "c9f930cc-9597-4c35-a5c8-d5775a87a7c3",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 585,
21 "height": 400,
22 "rawWidth": 585,
23 "rawHeight": 400,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "f02b26f5-58cc-479d-b0aa-8fe6e708279c",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "04": {
10 "ver": "1.0.4",
11 "uuid": "c23c2b60-f284-4b86-b9f2-624ab32857e5",
12 "rawTextureUuid": "f02b26f5-58cc-479d-b0aa-8fe6e708279c",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 740,
21 "height": 520,
22 "rawWidth": 740,
23 "rawHeight": 520,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "8a0265eb-8240-4272-9215-a83ee7a9bfc5",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "barBg": {
10 "ver": "1.0.4",
11 "uuid": "f8a583a9-3227-402e-badd-2c187cd3c0ae",
12 "rawTextureUuid": "8a0265eb-8240-4272-9215-a83ee7a9bfc5",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 10,
21 "height": 29,
22 "rawWidth": 10,
23 "rawHeight": 29,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "c6921efe-53b7-4500-a75b-51708322e6eb",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg": {
10 "ver": "1.0.4",
11 "uuid": "5717b291-2bb1-4bfd-baed-935d5d0793e6",
12 "rawTextureUuid": "c6921efe-53b7-4500-a75b-51708322e6eb",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 1280,
21 "height": 720,
22 "rawWidth": 1280,
23 "rawHeight": 720,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 20,
27 "borderRight": 20,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "24f24320-092d-40b2-85ce-1a10f0d1cf69",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "cloud": {
10 "ver": "1.0.4",
11 "uuid": "9e735070-15f6-4934-8bf3-eee8306f4706",
12 "rawTextureUuid": "24f24320-092d-40b2-85ce-1a10f0d1cf69",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 1280,
21 "height": 720,
22 "rawWidth": 1280,
23 "rawHeight": 720,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "66ac86b2-f372-48be-83cd-67395214cb2a",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "explore_bg_a": {
10 "ver": "1.0.4",
11 "uuid": "14f1599c-036c-486d-abf5-b3566ed39f15",
12 "rawTextureUuid": "66ac86b2-f372-48be-83cd-67395214cb2a",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 1820,
21 "height": 720,
22 "rawWidth": 1820,
23 "rawHeight": 720,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "28af208d-8e1d-498a-a755-065a7f38f03a",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "explore_bg_b": {
10 "ver": "1.0.4",
11 "uuid": "987745dd-03d6-4de5-b98e-1d5e75c9f2d3",
12 "rawTextureUuid": "28af208d-8e1d-498a-a755-065a7f38f03a",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 1820,
21 "height": 720,
22 "rawWidth": 1820,
23 "rawHeight": 720,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "5990daa6-478b-4dd9-89ac-c45cf43f1d65",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "scrollview_bar": {
10 "ver": "1.0.4",
11 "uuid": "786069cb-0eaf-4cb1-9a45-38df6c47c36d",
12 "rawTextureUuid": "5990daa6-478b-4dd9-89ac-c45cf43f1d65",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 19,
21 "height": 57,
22 "rawWidth": 19,
23 "rawHeight": 57,
24 "borderTop": 8,
25 "borderBottom": 8,
26 "borderLeft": 7,
27 "borderRight": 7,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "fcae9dc2-cba0-41c2-b481-8ffef2a97edb",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "e677916b-8c99-4d82-86b2-b437dbd3d736",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "30039": {
10 "ver": "1.0.4",
11 "uuid": "6449f5f3-75e7-48d6-944c-7781bc891343",
12 "rawTextureUuid": "e677916b-8c99-4d82-86b2-b437dbd3d736",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 100,
21 "height": 147,
22 "rawWidth": 100,
23 "rawHeight": 147,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 <?xml version="1.0" encoding="UTF-8"?>
2 <map version="1.2" tiledversion="1.2.5" orientation="orthogonal" renderorder="right-down" width="114" height="10" tilewidth="32" tileheight="32" infinite="0" nextlayerid="4" nextobjectid="1">
3 <tileset firstgid="1" name="Animal" tilewidth="32" tileheight="32" tilecount="12" columns="3">
4 <image source="30039.png" width="100" height="147"/>
5 </tileset>
6 <layer id="1" name="Animal" width="114" height="10">
7 <properties>
8 <property name="isAnimal" value="true"/>
9 </properties>
10 <data encoding="csv">
11 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
12 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
13 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
14 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
15 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
16 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
17 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,
18 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,
19 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,
20 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12
21 </data>
22 </layer>
23 </map>
1 {
2 "ver": "2.0.1",
3 "uuid": "1c95a1c4-78d9-46c0-b092-56780f624d3b",
4 "subMetas": {}
5 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "08e26a54-3328-4734-82e5-412605015abc",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "58c7abbf-9039-440a-a998-690c4a582973",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "100001": {
10 "ver": "1.0.4",
11 "uuid": "b6c744bd-79a1-4a9b-a80f-177c0123cd7a",
12 "rawTextureUuid": "58c7abbf-9039-440a-a998-690c4a582973",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -1,
18 "trimX": 14,
19 "trimY": 14,
20 "width": 52,
21 "height": 54,
22 "rawWidth": 80,
23 "rawHeight": 80,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "bee7a51f-c4eb-41d3-8c0a-4e7c11e8e93c",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_app_title02": {
10 "ver": "1.0.4",
11 "uuid": "df6221d7-26fa-4ec1-989d-30a664ba20bb",
12 "rawTextureUuid": "bee7a51f-c4eb-41d3-8c0a-4e7c11e8e93c",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 609,
21 "height": 88,
22 "rawWidth": 609,
23 "rawHeight": 88,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "37388d0b-cd7a-4886-95d4-4cb98c76610e",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_app_view": {
10 "ver": "1.0.4",
11 "uuid": "c29cfe65-4329-4e03-b9ec-9d45cc468765",
12 "rawTextureUuid": "37388d0b-cd7a-4886-95d4-4cb98c76610e",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 1096,
21 "height": 633,
22 "rawWidth": 1096,
23 "rawHeight": 633,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "6bfbab13-0392-4902-8bb5-354a64c1712b",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_task_item_1": {
10 "ver": "1.0.4",
11 "uuid": "5558b261-b3b1-4932-aeec-5fd7c859fecb",
12 "rawTextureUuid": "6bfbab13-0392-4902-8bb5-354a64c1712b",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -0.5,
17 "offsetY": 0.5,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 1003,
21 "height": 153,
22 "rawWidth": 1004,
23 "rawHeight": 154,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "b1714e8e-bc44-4760-a774-822c8669cf69",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_task_progress": {
10 "ver": "1.0.4",
11 "uuid": "70ed836e-138a-453c-8bc0-df8d8b53af57",
12 "rawTextureUuid": "b1714e8e-bc44-4760-a774-822c8669cf69",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 148,
21 "height": 28,
22 "rawWidth": 148,
23 "rawHeight": 28,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "400e2ee4-8fae-49ed-8c8a-0ecbfa19ea54",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_task_progress_bar": {
10 "ver": "1.0.4",
11 "uuid": "7202611d-537f-4af8-af1f-4bf9b63e2ab2",
12 "rawTextureUuid": "400e2ee4-8fae-49ed-8c8a-0ecbfa19ea54",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 3,
19 "trimY": 3,
20 "width": 142,
21 "height": 22,
22 "rawWidth": 148,
23 "rawHeight": 28,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "2c6d662d-ebc8-4392-be9f-bbf74e798b4b",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn__activity_1": {
10 "ver": "1.0.4",
11 "uuid": "e003d50e-dd2b-4518-9b65-a8c2b763ff57",
12 "rawTextureUuid": "2c6d662d-ebc8-4392-be9f-bbf74e798b4b",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 77,
21 "height": 101,
22 "rawWidth": 77,
23 "rawHeight": 101,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "da6347ed-d7d9-4789-b7be-8c4d19f12a61",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_achievement_1": {
10 "ver": "1.0.4",
11 "uuid": "4c9565fa-9f4b-455f-a505-9fa3120a8c94",
12 "rawTextureUuid": "da6347ed-d7d9-4789-b7be-8c4d19f12a61",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -1,
17 "offsetY": -11.5,
18 "trimX": 2,
19 "trimY": 23,
20 "width": 87,
21 "height": 104,
22 "rawWidth": 93,
23 "rawHeight": 127,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "ccf96564-cebf-451e-8543-68a9cefa45ea",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_achievement_2": {
10 "ver": "1.0.4",
11 "uuid": "503d1ded-d0cd-4674-8bc1-9c94a8561d2a",
12 "rawTextureUuid": "ccf96564-cebf-451e-8543-68a9cefa45ea",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -1,
17 "offsetY": 0,
18 "trimX": 2,
19 "trimY": 0,
20 "width": 87,
21 "height": 127,
22 "rawWidth": 93,
23 "rawHeight": 127,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "57387c61-94ee-4e8e-a59f-eb58ead438b6",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_activity_2": {
10 "ver": "1.0.4",
11 "uuid": "5493b20b-db1e-40f2-a5c1-8264b0e7afd3",
12 "rawTextureUuid": "57387c61-94ee-4e8e-a59f-eb58ead438b6",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0.5,
17 "offsetY": 0.5,
18 "trimX": 1,
19 "trimY": 0,
20 "width": 76,
21 "height": 100,
22 "rawWidth": 77,
23 "rawHeight": 101,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "30103570-5dc9-4ff8-b0d9-2c85099a79e2",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_back": {
10 "ver": "1.0.4",
11 "uuid": "71e82de4-bc43-4a5b-be8e-9317edef0b71",
12 "rawTextureUuid": "30103570-5dc9-4ff8-b0d9-2c85099a79e2",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -0.5,
18 "trimX": 2,
19 "trimY": 1,
20 "width": 74,
21 "height": 77,
22 "rawWidth": 78,
23 "rawHeight": 78,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "4665e1b0-d43d-4f74-84be-fb282620869d",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_friend_1": {
10 "ver": "1.0.4",
11 "uuid": "a80514b8-78a2-4c6d-9067-e593a75dffa1",
12 "rawTextureUuid": "4665e1b0-d43d-4f74-84be-fb282620869d",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 100,
21 "height": 111,
22 "rawWidth": 100,
23 "rawHeight": 111,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "5ef53364-8efa-4498-b7a5-d0409885516e",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_friend_2": {
10 "ver": "1.0.4",
11 "uuid": "66883e2c-60d0-4f75-8b6d-3342dbc370c9",
12 "rawTextureUuid": "5ef53364-8efa-4498-b7a5-d0409885516e",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 100,
21 "height": 111,
22 "rawWidth": 100,
23 "rawHeight": 111,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "983ff5c1-124c-4d7c-8370-4049f43aab4c",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_get_reward": {
10 "ver": "1.0.4",
11 "uuid": "aaa402bf-ee20-43a1-9840-c1d3cdee6c98",
12 "rawTextureUuid": "983ff5c1-124c-4d7c-8370-4049f43aab4c",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 136,
21 "height": 48,
22 "rawWidth": 136,
23 "rawHeight": 48,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "ff6ce065-21b9-4f6c-9fb7-4af952c65af4",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_shop_1": {
10 "ver": "1.0.4",
11 "uuid": "96e7deca-fb32-41e9-bd42-d62f4cfea619",
12 "rawTextureUuid": "ff6ce065-21b9-4f6c-9fb7-4af952c65af4",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -9,
18 "trimX": 5,
19 "trimY": 18,
20 "width": 83,
21 "height": 109,
22 "rawWidth": 93,
23 "rawHeight": 127,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "77934cb7-2135-4ab8-952c-1d06237a4703",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_shop_2": {
10 "ver": "1.0.4",
11 "uuid": "0ab0ec32-c5a8-4286-9b0a-87b2f845b62a",
12 "rawTextureUuid": "77934cb7-2135-4ab8-952c-1d06237a4703",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 5,
19 "trimY": 0,
20 "width": 83,
21 "height": 127,
22 "rawWidth": 93,
23 "rawHeight": 127,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "83feb153-301e-4d2c-9e2c-7d1f264a510f",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_task_1": {
10 "ver": "1.0.4",
11 "uuid": "90662bc2-149a-43c8-9d3c-9a03e5c0ddcb",
12 "rawTextureUuid": "83feb153-301e-4d2c-9e2c-7d1f264a510f",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -12,
18 "trimX": 4,
19 "trimY": 24,
20 "width": 85,
21 "height": 103,
22 "rawWidth": 93,
23 "rawHeight": 127,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "3e55dec3-1bfb-4c7c-8219-11b130ab35f7",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_task_2": {
10 "ver": "1.0.4",
11 "uuid": "2a923b13-4a2f-4b43-ab97-9c29b86b5971",
12 "rawTextureUuid": "3e55dec3-1bfb-4c7c-8219-11b130ab35f7",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 4,
19 "trimY": 0,
20 "width": 85,
21 "height": 127,
22 "rawWidth": 93,
23 "rawHeight": 127,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "066a22ac-fc87-4863-b79a-a819df96b97b",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "icon_game": {
10 "ver": "1.0.4",
11 "uuid": "6ce7143e-90d5-4bda-a150-f74090661eff",
12 "rawTextureUuid": "066a22ac-fc87-4863-b79a-a819df96b97b",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 5,
17 "offsetY": -2.5,
18 "trimX": 18,
19 "trimY": 9,
20 "width": 98,
21 "height": 98,
22 "rawWidth": 124,
23 "rawHeight": 111,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "1522605a-7abe-4ea9-8fb8-c9bc9df90bf7",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "title_task_fnt": {
10 "ver": "1.0.4",
11 "uuid": "4a5802d1-101a-47c2-956a-9cb3bbda6e6d",
12 "rawTextureUuid": "1522605a-7abe-4ea9-8fb8-c9bc9df90bf7",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0.5,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 84,
21 "height": 43,
22 "rawWidth": 84,
23 "rawHeight": 44,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "8edced38-a69e-434d-9aa3-09be70f119b5",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "yiwancheng": {
10 "ver": "1.0.4",
11 "uuid": "53539fd8-942b-4d27-91ce-5270557ef036",
12 "rawTextureUuid": "8edced38-a69e-434d-9aa3-09be70f119b5",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -0.5,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 171,
21 "height": 58,
22 "rawWidth": 172,
23 "rawHeight": 58,
24 "borderTop": 0,
25 "borderBottom": 0,
26 "borderLeft": 0,
27 "borderRight": 0,
28 "subMetas": {}
29 }
30 }
31 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.1",
3 "uuid": "d6851383-8939-42a4-8efa-6ac2b4593a30",
4 "optimizationPolicy": "AUTO",
5 "asyncLoadAssets": false,
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
...@@ -51,15 +51,16 @@ ...@@ -51,15 +51,16 @@
51 "iOS", 51 "iOS",
52 "HTML5" 52 "HTML5"
53 ], 53 ],
54 "package_download_url": "https://download.cocos.com/CocosServices/plugins/service-matchvs/1.0.9_3.7.9.9.zip", 54 "package_download_url": "https://download.cocos.com/CocosServices/plugins/service-matchvs/1.0.10_3.7.9.10.zip",
55 "package_version_desc": "<p><strong>更新日期:</strong> 2019/07/18\n<strong>更新内容:</strong>\n1、修复多节点登录返回值错误\n2、修复FaceBook平台受限安全策略的问题</p>", 55 "package_version_desc": "<p><strong>更新日期:</strong> 2019/9/12\n<strong>更新内容:</strong>\n1.多语言支持\n2.SDK日常更新</p>",
56 "service_component_name": "service-matchvs", 56 "service_component_name": "service-matchvs",
57 "package_versions": [ 57 "package_versions": [
58 "1.0.9_3.7.9.9", 58 "1.0.9_3.7.9.9",
59 "1.0.7_3.7.9.6", 59 "1.0.7_3.7.9.6",
60 "1.0.6_3.7.9.2", 60 "1.0.6_3.7.9.2",
61 "1.0.5_3.7.7.3", 61 "1.0.5_3.7.7.3",
62 "1.0.3_3.7.6.4" 62 "1.0.3_3.7.6.4",
63 "1.0.10_3.7.9.10"
63 ], 64 ],
64 "build_platform": [], 65 "build_platform": [],
65 "require_verify": 0, 66 "require_verify": 0,
......