Commit 99844b52 99844b523402ed5cd47d5bfc42de042da63ef0df by jinwawa

complete scenePerson

1 parent 89d466f9
Showing 118 changed files with 1446 additions and 21 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": 1.2059856672775, 44 "x": 0.625,
45 "y": 1.2059856672775, 45 "y": 0.625,
46 "z": 1 46 "z": 1
47 }, 47 },
48 "_quat": { 48 "_quat": {
...@@ -1001,8 +1001,8 @@ ...@@ -1001,8 +1001,8 @@
1001 }, 1001 },
1002 "_position": { 1002 "_position": {
1003 "__type__": "cc.Vec3", 1003 "__type__": "cc.Vec3",
1004 "x": -229, 1004 "x": -226,
1005 "y": -229, 1005 "y": -191,
1006 "z": 0 1006 "z": 0
1007 }, 1007 },
1008 "_scale": { 1008 "_scale": {
...@@ -1034,12 +1034,12 @@ ...@@ -1034,12 +1034,12 @@
1034 }, 1034 },
1035 "_enabled": true, 1035 "_enabled": true,
1036 "_armatureName": "armatureName", 1036 "_armatureName": "armatureName",
1037 "_animationName": "", 1037 "_animationName": "Animation1",
1038 "_preCacheMode": 0, 1038 "_preCacheMode": 0,
1039 "_cacheMode": 0, 1039 "_cacheMode": 0,
1040 "playTimes": -1, 1040 "playTimes": -1,
1041 "premultipliedAlpha": false, 1041 "premultipliedAlpha": false,
1042 "_armatureKey": "12fcf88d-19e6-4c0e-a0e9-90493cbd8988#3348c645-59e4-4bf2-b5ac-02172ce7f044", 1042 "_armatureKey": "1fb6a032-7469-4cf7-b0bc-a0a8af4f61a3#d341b1fa-07a0-4b06-86cc-09313f8b8c5d",
1043 "_accTime": 0, 1043 "_accTime": 0,
1044 "_playCount": 0, 1044 "_playCount": 0,
1045 "_frameCache": null, 1045 "_frameCache": null,
...@@ -1047,13 +1047,13 @@ ...@@ -1047,13 +1047,13 @@
1047 "_playing": false, 1047 "_playing": false,
1048 "_armatureCache": null, 1048 "_armatureCache": null,
1049 "_N$dragonAsset": { 1049 "_N$dragonAsset": {
1050 "__uuid__": "12fcf88d-19e6-4c0e-a0e9-90493cbd8988" 1050 "__uuid__": "1fb6a032-7469-4cf7-b0bc-a0a8af4f61a3"
1051 }, 1051 },
1052 "_N$dragonAtlasAsset": { 1052 "_N$dragonAtlasAsset": {
1053 "__uuid__": "3348c645-59e4-4bf2-b5ac-02172ce7f044" 1053 "__uuid__": "d341b1fa-07a0-4b06-86cc-09313f8b8c5d"
1054 }, 1054 },
1055 "_N$_defaultArmatureIndex": 0, 1055 "_N$_defaultArmatureIndex": 0,
1056 "_N$_animationIndex": 0, 1056 "_N$_animationIndex": 1,
1057 "_N$_defaultCacheMode": 0, 1057 "_N$_defaultCacheMode": 0,
1058 "_N$timeScale": 1, 1058 "_N$timeScale": 1,
1059 "_N$debugBones": false, 1059 "_N$debugBones": false,
......
1 {
2 "ver": "1.0.1",
3 "uuid": "ffd37b62-1e07-4e9b-a521-1ffcb990e3a9",
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": "540ca08d-2ed5-4b15-8fcb-89d525c1852c",
4 "asyncLoadAssets": false,
5 "autoReleaseAssets": false,
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
...@@ -27,6 +27,7 @@ cc.Class({ ...@@ -27,6 +27,7 @@ cc.Class({
27 roleAnim: dragonBones.ArmatureDisplay, 27 roleAnim: dragonBones.ArmatureDisplay,
28 pointer: cc.Sprite, //大转盘指针 28 pointer: cc.Sprite, //大转盘指针
29 pointerButton: cc.Sprite, //大转盘按钮 29 pointerButton: cc.Sprite, //大转盘按钮
30 achievement_detail_close: cc.Sprite,
30 PFB_GAME_TASKITEM: { 31 PFB_GAME_TASKITEM: {
31 default: null, 32 default: null,
32 type: cc.Prefab 33 type: cc.Prefab
...@@ -43,6 +44,7 @@ cc.Class({ ...@@ -43,6 +44,7 @@ cc.Class({
43 this._aFocusTargets[1] = []; //任务弹窗焦点 44 this._aFocusTargets[1] = []; //任务弹窗焦点
44 this._aFocusTargets[2] = []; //成就弹窗焦点 45 this._aFocusTargets[2] = []; //成就弹窗焦点
45 this._aFocusTargets[3] = []; //活动大转盘弹窗 46 this._aFocusTargets[3] = []; //活动大转盘弹窗
47 this._aFocusTargets[4] = []; //成就列表详情
46 this._iSceneStatus = 0; //焦点层级 48 this._iSceneStatus = 0; //焦点层级
47 this.roleAnim.node.zIndex = 40; 49 this.roleAnim.node.zIndex = 40;
48 this.initFocus(); 50 this.initFocus();
...@@ -165,15 +167,15 @@ cc.Class({ ...@@ -165,15 +167,15 @@ cc.Class({
165 let fiIslandSprite = cc.find("bgScrollView/viewport/content/island_" + i, this.node).addComponent(FocusInfo);// 167 let fiIslandSprite = cc.find("bgScrollView/viewport/content/island_" + i, this.node).addComponent(FocusInfo);//
166 this._aFocusTargets[0]['to_island' + i] = cc.find("bgScrollView/viewport/content/island_" + i, this.node); 168 this._aFocusTargets[0]['to_island' + i] = cc.find("bgScrollView/viewport/content/island_" + i, this.node);
167 fiIslandSprite.init( 169 fiIslandSprite.init(
168 '{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneExploreNew","order":"'+ i +'"}}]}', 170 '{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneExploreNew","order":"' + i + '"}}]}',
169 true, null, null, 1 171 true, null, null, 1
170 ); 172 );
171 173
172 //弄小岛下方的进度信息 174 //弄小岛下方的进度信息
173 if(cc.find("scrollViewBg/scrollViewBar",fiIslandSprite.node) && cc.find("progress",fiIslandSprite.node)){ 175 if (cc.find("scrollViewBg/scrollViewBar", fiIslandSprite.node) && cc.find("progress", fiIslandSprite.node)) {
174 this.totalTask = GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_BAR_VALUE; 176 this.totalTask = GlobalValue.ISLAND_CONFIG[i - 1].PROGRESS_BAR_VALUE;
175 cc.find("scrollViewBg/scrollViewBar",fiIslandSprite.node).width=GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_BAR_VALUE * 200; 177 cc.find("scrollViewBg/scrollViewBar", fiIslandSprite.node).width = GlobalValue.ISLAND_CONFIG[i - 1].PROGRESS_BAR_VALUE * 200;
176 cc.find("progress",fiIslandSprite.node).getComponent(cc.Label).string=GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_LABEL_VALUE; 178 cc.find("progress", fiIslandSprite.node).getComponent(cc.Label).string = GlobalValue.ISLAND_CONFIG[i - 1].PROGRESS_LABEL_VALUE;
177 } 179 }
178 180
179 if (i == 1) { 181 if (i == 1) {
...@@ -213,7 +215,7 @@ cc.Class({ ...@@ -213,7 +215,7 @@ cc.Class({
213 var fiShopSprite = this.shopSprite.addComponent(FocusInfo);// 215 var fiShopSprite = this.shopSprite.addComponent(FocusInfo);//
214 this._aFocusTargets[0]['to_shop'] = this.shopSprite; 216 this._aFocusTargets[0]['to_shop'] = this.shopSprite;
215 fiShopSprite.init( 217 fiShopSprite.init(
216 null, true 218 '{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneMall"}}]}', true
217 ); 219 );
218 220
219 var fiPointerButton = this.pointerButton.addComponent(FocusInfo);// 221 var fiPointerButton = this.pointerButton.addComponent(FocusInfo);//
...@@ -402,7 +404,25 @@ cc.Class({ ...@@ -402,7 +404,25 @@ cc.Class({
402 } else if (0 == this._fiCurrentFocus.node.getName().indexOf('PointerButton')) { 404 } else if (0 == this._fiCurrentFocus.node.getName().indexOf('PointerButton')) {
403 if (!GlobalValue.ACTIVITY_IS_TURN) 405 if (!GlobalValue.ACTIVITY_IS_TURN)
404 this.pointerButtonStartControl(); 406 this.pointerButtonStartControl();
405 } else 407 } else if (0 == this._fiCurrentFocus.node.getName().indexOf('StarListCell')) {
408 this._iSceneStatus = 4;
409 cc.find("achievement/achievement_detail", this.node).active = true;
410 var fiAchievementDetailCloseSprite = this.achievement_detail_close.addComponent(FocusInfo);//
411 this._aFocusTargets[4]['to_achievement_detail_close'] = this.achievement_detail_close;
412 fiAchievementDetailCloseSprite.init(
413 null, true
414 );
415
416 var fiFocusTarget = this.achievement_detail_close.getComponent(FocusInfo);
417 this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_UP, null, null);
418 }else if (0 == this._fiCurrentFocus.node.getName().indexOf('CloseAchievementDetail')) {
419 cc.find("achievement/achievement_detail", this.node).active = false;
420 this._iSceneStatus = 2;
421 var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_DOWN);
422 // var fiFocusTarget = this.activitySprite.getComponent(FocusInfo);
423 this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_DOWN, null, null);
424 }
425 else
406 this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); 426 this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK);
407 break; 427 break;
408 case cc.macro.KEY.backspace: 428 case cc.macro.KEY.backspace:
......
1 {
2 "ver": "1.0.5",
3 "uuid": "4b38c174-2705-4e1e-8846-9ada58650906",
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": "95ca7470-6ed7-463a-b286-713b2960e249",
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
...@@ -68,6 +68,7 @@ cc.Class({ ...@@ -68,6 +68,7 @@ cc.Class({
68 // TOPDRAW_IMAGE_SERVER : "http://111.11.189.12:8080/hyperion.resource/", 68 // TOPDRAW_IMAGE_SERVER : "http://111.11.189.12:8080/hyperion.resource/",
69 // TOPDRAW_API_SERVER2:'http://111.11.189.12:8080/hyperion.archer/', 69 // TOPDRAW_API_SERVER2:'http://111.11.189.12:8080/hyperion.archer/',
70 TEST_API_TOKEN: 'dd4b1968eb5b417e834c2687e23d2471', 70 TEST_API_TOKEN: 'dd4b1968eb5b417e834c2687e23d2471',
71 TEST_API_TOKEN2: '2016f5a5ada24b86afebf6cd2ba30c70',
71 72
72 //教育 73 //教育
73 TOPDRAW_API_SERVER_EDU: 'http://139.196.4.234:38080/hyperion.chimera/', 74 TOPDRAW_API_SERVER_EDU: 'http://139.196.4.234:38080/hyperion.chimera/',
......
...@@ -476,7 +476,10 @@ cc.Class({ ...@@ -476,7 +476,10 @@ cc.Class({
476 delete oAllParameters.sortDirection; 476 delete oAllParameters.sortDirection;
477 } 477 }
478 478
479 oAllParameters.token = Common.TEST_API_TOKEN_EDU; 479 //这个进行优化,不能写死,需要灵活使用token
480 if(null==oAllParameters.token || ''==oAllParameters.token){
481 oAllParameters.token = Common.TEST_API_TOKEN_EDU;
482 }
480 483
481 if (null == onSuccess) { 484 if (null == onSuccess) {
482 onSuccess = this.renderInitData; 485 onSuccess = this.renderInitData;
......
1 //明星列表ListCell
2 var Common = require('Common');
3 var FocusInfo = require('FocusInfo');
4 var ListView = require('ListView');
5 var ListCell = require('ListCell');
6 var Network = require('Network');
7
8 cc.Class({
9 extends: ListCell,
10
11 properties: {
12
13 },
14
15 statics: {
16 PFB_NAME: 'prefab/pfbPersonRoleInstallCategoryListCell',
17 CELL_NAME: 'RoleInstallListCell',
18 },
19
20 init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) {
21 this._compSceneCanvas = compSceneCanvas;
22 this._iCellIndex = iCellIndex;
23 this.node.zIndex=20; //TODO:提升权值,显示在背景框上层
24 var self=this;
25 // cc.loader.loadRes('texture/ui/personal_cell_focus', cc.SpriteFrame, function (err, spriteFrame) {
26 // cc.find('Bg', self.node).getComponent(cc.Sprite).spriteFrame = spriteFrame;
27 // });
28 let nodeExplainText = cc.find('Explain/Text', this.node);
29
30 nodeExplainText.getComponent(cc.Label).string = "载入中...";
31
32 //准备焦点坐标
33 let fiCategoryBlock = this.node.addComponent(FocusInfo);
34 fiCategoryBlock.init(
35 '{"click":[{\
36 "action":"ChangeScene",\
37 "parameters":{\
38 "sceneName":"sceneStarList",\
39 "categoryId":"",\
40 "elderLevel":"1",\
41 "appId":""\
42 }\
43 }]}',
44 false, null, null, 1.0
45 );
46 compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node);
47 },
48
49 render(oData, iRecordIndex) {
50 let nodePic = this.node.getChildByName('Pic');
51 let nodeExplainText=cc.find('Explain/Text',this.node);
52 let nodeInstallIcon=cc.find('InstallIcon',this.node); //是否安装
53 // oData.in_use==1?nodeInstallIcon.opacity=255:nodeInstallIcon.opacity=0;
54 if(oData.in_use){
55 nodeInstallIcon.opacity=255;
56 nodeExplainText.getComponent(cc.Label).string="按【确定】卸载";
57 }else{
58 nodeInstallIcon.opacity=0;
59 nodeExplainText.getComponent(cc.Label).string="按【确定】使用";
60 }
61 var fileURL = '';
62 if (typeof (oData.images) != 'undefined' && oData.images.map.thumbnail != null) {
63 var index = oData.images.map.thumbnail[0];
64 fileURL = oData.images.list[index].fileUrl;
65 }
66 Network.loadImageInNativeRuntime(
67 Common.TOPDRAW_IMAGE_SERVER + fileURL,
68 function (texture) {
69 nodePic.getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture);
70 }, null, this
71 );
72
73
74 //准备焦点坐标
75 let fiCategoryBlock = this.node.getComponent(FocusInfo);
76 fiCategoryBlock.setTVLink('{"click": [{"action": "ChangeScene",' +
77 '"parameters": {' +
78 '"sceneName":"sceneClassifyDetail",' +
79 '"categoryId": "' + oData.id + '",' +
80 '"elderLevel":"1",' +
81 '"appId":"' + this._compSceneCanvas._strAppId + '"' +
82 '}}]}');
83 },
84
85 enableFocusInfo: function () {
86 this.node.getComponent(FocusInfo).setEnable(true);
87 },
88
89 disableFocusInfo: function () {
90 this.node.getComponent(FocusInfo).setEnable(false);
91 },
92
93 setUIWithFocus: function () {
94
95 //let nodeSongListCell=;
96 let nodeCollection = this.node.getChildByName('Collection');
97 nodeCollection.opacity = 255;
98 //nodeCollection.getComponent(FocusInfo).setEnable(true);
99
100 //转起来 这部分以后要尽量放到Cell里去
101 let nodeTitleMask = this.node.getChildByName('ImageBlock').getChildByName('TitleMask');
102 let nodeTitleContainer = nodeTitleMask.getChildByName('TitleContainer');
103 let nodeTitleText1 = nodeTitleContainer.getChildByName("TitleText1");
104 let nodeTitleText2 = nodeTitleContainer.getChildByName("TitleText2");
105
106 let fOriginalX = nodeTitleContainer.x;
107 let fOriginalY = nodeTitleContainer.y;
108
109 if (nodeTitleText1.width > nodeTitleMask.width) { //字超出长度才滚动
110
111 let fEndPositionDelta = nodeTitleText1.width / 2 + 50 + nodeTitleText2.width / 2;
112
113 //下方时长和字有关系,才能速度一样
114 var ftaTitleMoveToTarget = cc.moveTo(10, fOriginalX - fEndPositionDelta, fOriginalY);
115 var ftaTitleMoveToBack = cc.moveTo(0, fOriginalX, fOriginalY);
116
117 var sequenceTitle = cc.sequence(ftaTitleMoveToTarget, ftaTitleMoveToBack);
118
119 var repeatTitle = cc.repeat(sequenceTitle, 10);
120 repeatTitle.setTag(Common.OVERLENGTH_MOVING);
121
122 nodeTitleContainer.stopAction(nodeTitleContainer.getActionByTag(Common.OVERLENGTH_MOVING));
123 nodeTitleContainer.runAction(repeatTitle);
124 }
125
126 },
127 setUIWithoutFocus: function () {
128
129
130 let nodeImageBlock = this.node.getChildByName('ImageBlock')
131 let nodeTitleMask = nodeImageBlock.getChildByName('TitleMask');
132 let nodeTitleContainer = nodeTitleMask.getChildByName('TitleContainer');
133
134 let nodeCollection = this.node.getChildByName('Collection');
135
136 //if (nodeTo!=nodeCollectionFrom){ //离开图片并且去的不是图片所在的Collection区
137 // nodeCollectionFrom.opacity=0;
138 // nodeCollectionFrom.getComponent(FocusInfo).setEnable(false);
139 //}
140
141 //let nodeTitleContainer=this.node.getChildByName('ImageBlock').getChildByName('TitleMask').getChildByName('TitleContainer');
142 nodeTitleContainer.stopAction(nodeTitleContainer.getActionByTag(Common.OVERLENGTH_MOVING));
143 nodeTitleContainer.x = 0;
144 },
145
146 });
1 {
2 "ver": "1.0.5",
3 "uuid": "607d3036-ff56-4141-8450-dedddafd371f",
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": "2.2.0",
3 "uuid": "90d4d590-8873-4723-9054-5b24c8848f9f",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_icon": {
10 "ver": "1.0.4",
11 "uuid": "0e4c4f09-1d93-4dfe-8693-2b671edaa98e",
12 "rawTextureUuid": "90d4d590-8873-4723-9054-5b24c8848f9f",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 122,
21 "height": 124,
22 "rawWidth": 122,
23 "rawHeight": 124,
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": "8d0f4825-f294-496f-876b-b2ea47e1c126",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "gray_11_3": {
10 "ver": "1.0.4",
11 "uuid": "f90defe6-c102-4f22-b187-2006f74b00bb",
12 "rawTextureUuid": "8d0f4825-f294-496f-876b-b2ea47e1c126",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 121,
21 "height": 122,
22 "rawWidth": 121,
23 "rawHeight": 122,
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": "a68ad0a8-b10d-44bf-814a-f4a0acebb0d3",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "item_achievement_detail": {
10 "ver": "1.0.4",
11 "uuid": "6d600646-daa5-47a5-a089-242cdb4979a8",
12 "rawTextureUuid": "a68ad0a8-b10d-44bf-814a-f4a0acebb0d3",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 428,
21 "height": 582,
22 "rawWidth": 428,
23 "rawHeight": 582,
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": "142d89ba-194d-4d05-9007-30d14827acca",
4 "isSubpackage": false,
5 "subpackageName": "",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {"frameRate":60,"isGlobal":0,"armature":[{"skin":[{"name":"","slot":[{"display":[{"path":"02","type":"image","name":"02","transform":{"y":6.2733,"skX":-119.1113,"skY":-119.1113,"x":17.3692}}],"name":"Layer11"},{"display":[{"path":"07","type":"image","name":"07","transform":{"y":3.739,"skX":-50.6953,"skY":-50.6953,"x":27.2676}}],"name":"Layer13"},{"display":[{"path":"05","type":"image","name":"05","transform":{"y":1.1972,"skX":-82.0928,"skY":-82.0928,"x":6.6553}}],"name":"Layer28"},{"display":[{"path":"06","type":"image","name":"06","transform":{"y":0.2939,"skX":-111.5226,"skY":-111.5226,"x":8.8317}}],"name":"Layer27"},{"display":[{"path":"04","type":"image","name":"04","transform":{"y":3.5717,"skX":-91.3639,"skY":-91.364,"x":16.592}}],"name":"Layer9"},{"display":[{"path":"01","type":"image","name":"01","transform":{"y":-12.8269,"skX":89.8606,"skY":89.8606,"x":56.3632}}],"name":"Layer10"},{"display":[{"path":"03","type":"image","name":"03","transform":{"y":1.7248,"skX":-121.6215,"skY":-121.6215,"x":18.3763}}],"name":"Layer12"},{"display":[{"path":"08","type":"image","name":"08","transform":{}}],"name":"Layer8"}]}],"animation":[{"duration":60,"frame":[],"bone":[{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":6.2202,"skY":6.2202},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":-11.9779,"skY":-11.9779},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer12"},{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":-3.7757,"skY":-3.7757},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":3.743,"skY":3.743},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer10"},{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"y":-5},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"y":-5},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer9"},{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":-22.1552,"skY":-22.1552},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":21.8057,"skY":21.8057},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer27"},{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":20.7598,"skY":20.7598},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":-20.0587,"skY":-20.0587},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer28"},{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":-8.2143,"skY":-8.2143},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":8.484,"skY":8.484},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer13"},{"frame":[{"duration":17,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"skX":-1.8837,"skY":-1.8837},"tweenEasing":0},{"duration":13,"transform":{},"tweenEasing":0},{"duration":1,"transform":{"skX":1.3519,"skY":1.3519},"tweenEasing":0},{"duration":14,"transform":{"skX":1.0185,"skY":1.0185},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer11"},{"frame":[{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"scX":0.9},"tweenEasing":0},{"duration":15,"transform":{},"tweenEasing":0},{"duration":15,"transform":{"scX":0.7},"tweenEasing":0},{"duration":0,"transform":{}}],"name":"Layer8"},{"frame":[{"duration":60,"transform":{}}],"name":"root"}],"slot":[{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer12"},{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer10"},{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer9"},{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer27"},{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer28"},{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer13"},{"frame":[{"tweenEasing":0,"duration":17},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":13},{"tweenEasing":0,"duration":1},{"tweenEasing":0,"duration":14},{"tweenEasing":null,"duration":0}],"name":"Layer11"},{"frame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":null,"duration":0}],"name":"Layer8"}],"ffd":[],"ik":[],"playTimes":0,"name":"Animation1"}],"type":"Armature","bone":[{"name":"root","transform":{}},{"inheritScale":false,"transform":{"y":58.7707,"x":-0.5776},"name":"Layer8","parent":"root"},{"length":86,"transform":{"y":1.8201,"skX":91.3639,"skY":91.3639,"x":2.2156},"parent":"root","name":"Layer9","inheritScale":false},{"length":90,"transform":{"y":-11.9506,"skX":-40.6686,"skY":-40.6686,"x":-5.1135},"parent":"Layer9","name":"Layer13","inheritScale":false},{"length":58,"transform":{"y":-7.2719,"skX":-0.1904,"skY":-0.1904,"x":34.6615},"parent":"Layer9","name":"Layer28","inheritScale":false},{"length":61,"transform":{"y":5.1635,"skX":3.5165,"skY":3.5165,"x":34.6872},"parent":"Layer9","name":"Layer27","inheritScale":false},{"length":141,"transform":{"y":-1.4118,"skX":178.7755,"skY":178.7755,"x":-13.1408},"parent":"Layer9","name":"Layer10","inheritScale":false},{"length":92,"transform":{"y":18.0245,"skX":30.2575,"skY":30.2575,"x":-3.71},"parent":"Layer9","name":"Layer12","inheritScale":false},{"length":135,"transform":{"y":-2.8937,"skX":-151.0281,"skY":-151.0281,"x":55.5104},"parent":"Layer10","name":"Layer11","inheritScale":false}],"aabb":{"width":167,"y":-138.67761378937917,"height":203.44831378937917,"x":-96.24993711129599},"ik":[],"defaultActions":[{"gotoAndPlay":"Animation1"}],"name":"armatureName","frameRate":60,"slot":[{"color":{},"name":"Layer8","parent":"Layer8"},{"z":1,"color":{},"name":"Layer11","parent":"Layer11"},{"z":2,"color":{},"name":"Layer13","parent":"Layer13"},{"z":3,"color":{},"name":"Layer28","parent":"Layer28"},{"z":4,"color":{},"name":"Layer27","parent":"Layer27"},{"z":5,"color":{},"name":"Layer9","parent":"Layer9"},{"z":6,"color":{},"name":"Layer10","parent":"Layer10"},{"z":7,"color":{},"name":"Layer12","parent":"Layer12"}]}],"name":"sea_beach","version":"5.0"}
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.0",
3 "uuid": "1fb6a032-7469-4cf7-b0bc-a0a8af4f61a3",
4 "dragonBonesJson": "{\"frameRate\":60,\"isGlobal\":0,\"armature\":[{\"skin\":[{\"name\":\"\",\"slot\":[{\"display\":[{\"path\":\"02\",\"type\":\"image\",\"name\":\"02\",\"transform\":{\"y\":6.2733,\"skX\":-119.1113,\"skY\":-119.1113,\"x\":17.3692}}],\"name\":\"Layer11\"},{\"display\":[{\"path\":\"07\",\"type\":\"image\",\"name\":\"07\",\"transform\":{\"y\":3.739,\"skX\":-50.6953,\"skY\":-50.6953,\"x\":27.2676}}],\"name\":\"Layer13\"},{\"display\":[{\"path\":\"05\",\"type\":\"image\",\"name\":\"05\",\"transform\":{\"y\":1.1972,\"skX\":-82.0928,\"skY\":-82.0928,\"x\":6.6553}}],\"name\":\"Layer28\"},{\"display\":[{\"path\":\"06\",\"type\":\"image\",\"name\":\"06\",\"transform\":{\"y\":0.2939,\"skX\":-111.5226,\"skY\":-111.5226,\"x\":8.8317}}],\"name\":\"Layer27\"},{\"display\":[{\"path\":\"04\",\"type\":\"image\",\"name\":\"04\",\"transform\":{\"y\":3.5717,\"skX\":-91.3639,\"skY\":-91.364,\"x\":16.592}}],\"name\":\"Layer9\"},{\"display\":[{\"path\":\"01\",\"type\":\"image\",\"name\":\"01\",\"transform\":{\"y\":-12.8269,\"skX\":89.8606,\"skY\":89.8606,\"x\":56.3632}}],\"name\":\"Layer10\"},{\"display\":[{\"path\":\"03\",\"type\":\"image\",\"name\":\"03\",\"transform\":{\"y\":1.7248,\"skX\":-121.6215,\"skY\":-121.6215,\"x\":18.3763}}],\"name\":\"Layer12\"},{\"display\":[{\"path\":\"08\",\"type\":\"image\",\"name\":\"08\",\"transform\":{}}],\"name\":\"Layer8\"}]}],\"animation\":[{\"duration\":60,\"frame\":[],\"bone\":[{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":6.2202,\"skY\":6.2202},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":-11.9779,\"skY\":-11.9779},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer12\"},{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":-3.7757,\"skY\":-3.7757},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":3.743,\"skY\":3.743},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer10\"},{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"y\":-5},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"y\":-5},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer9\"},{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":-22.1552,\"skY\":-22.1552},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":21.8057,\"skY\":21.8057},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer27\"},{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":20.7598,\"skY\":20.7598},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":-20.0587,\"skY\":-20.0587},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer28\"},{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":-8.2143,\"skY\":-8.2143},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":8.484,\"skY\":8.484},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer13\"},{\"frame\":[{\"duration\":17,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"skX\":-1.8837,\"skY\":-1.8837},\"tweenEasing\":0},{\"duration\":13,\"transform\":{},\"tweenEasing\":0},{\"duration\":1,\"transform\":{\"skX\":1.3519,\"skY\":1.3519},\"tweenEasing\":0},{\"duration\":14,\"transform\":{\"skX\":1.0185,\"skY\":1.0185},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer11\"},{\"frame\":[{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"scX\":0.9},\"tweenEasing\":0},{\"duration\":15,\"transform\":{},\"tweenEasing\":0},{\"duration\":15,\"transform\":{\"scX\":0.7},\"tweenEasing\":0},{\"duration\":0,\"transform\":{}}],\"name\":\"Layer8\"},{\"frame\":[{\"duration\":60,\"transform\":{}}],\"name\":\"root\"}],\"slot\":[{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer12\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer10\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer9\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer27\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer28\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer13\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":17},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":13},{\"tweenEasing\":0,\"duration\":1},{\"tweenEasing\":0,\"duration\":14},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer11\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer8\"}],\"ffd\":[],\"ik\":[],\"playTimes\":0,\"name\":\"Animation1\"}],\"type\":\"Armature\",\"bone\":[{\"name\":\"root\",\"transform\":{}},{\"inheritScale\":false,\"transform\":{\"y\":58.7707,\"x\":-0.5776},\"name\":\"Layer8\",\"parent\":\"root\"},{\"length\":86,\"transform\":{\"y\":1.8201,\"skX\":91.3639,\"skY\":91.3639,\"x\":2.2156},\"parent\":\"root\",\"name\":\"Layer9\",\"inheritScale\":false},{\"length\":90,\"transform\":{\"y\":-11.9506,\"skX\":-40.6686,\"skY\":-40.6686,\"x\":-5.1135},\"parent\":\"Layer9\",\"name\":\"Layer13\",\"inheritScale\":false},{\"length\":58,\"transform\":{\"y\":-7.2719,\"skX\":-0.1904,\"skY\":-0.1904,\"x\":34.6615},\"parent\":\"Layer9\",\"name\":\"Layer28\",\"inheritScale\":false},{\"length\":61,\"transform\":{\"y\":5.1635,\"skX\":3.5165,\"skY\":3.5165,\"x\":34.6872},\"parent\":\"Layer9\",\"name\":\"Layer27\",\"inheritScale\":false},{\"length\":141,\"transform\":{\"y\":-1.4118,\"skX\":178.7755,\"skY\":178.7755,\"x\":-13.1408},\"parent\":\"Layer9\",\"name\":\"Layer10\",\"inheritScale\":false},{\"length\":92,\"transform\":{\"y\":18.0245,\"skX\":30.2575,\"skY\":30.2575,\"x\":-3.71},\"parent\":\"Layer9\",\"name\":\"Layer12\",\"inheritScale\":false},{\"length\":135,\"transform\":{\"y\":-2.8937,\"skX\":-151.0281,\"skY\":-151.0281,\"x\":55.5104},\"parent\":\"Layer10\",\"name\":\"Layer11\",\"inheritScale\":false}],\"aabb\":{\"width\":167,\"y\":-138.67761378937917,\"height\":203.44831378937917,\"x\":-96.24993711129599},\"ik\":[],\"defaultActions\":[{\"gotoAndPlay\":\"Animation1\"}],\"name\":\"armatureName\",\"frameRate\":60,\"slot\":[{\"color\":{},\"name\":\"Layer8\",\"parent\":\"Layer8\"},{\"z\":1,\"color\":{},\"name\":\"Layer11\",\"parent\":\"Layer11\"},{\"z\":2,\"color\":{},\"name\":\"Layer13\",\"parent\":\"Layer13\"},{\"z\":3,\"color\":{},\"name\":\"Layer28\",\"parent\":\"Layer28\"},{\"z\":4,\"color\":{},\"name\":\"Layer27\",\"parent\":\"Layer27\"},{\"z\":5,\"color\":{},\"name\":\"Layer9\",\"parent\":\"Layer9\"},{\"z\":6,\"color\":{},\"name\":\"Layer10\",\"parent\":\"Layer10\"},{\"z\":7,\"color\":{},\"name\":\"Layer12\",\"parent\":\"Layer12\"}]}],\"name\":\"sea_beach\",\"version\":\"5.0\"}",
5 "subMetas": {}
6 }
...\ No newline at end of file ...\ No newline at end of file
1 {"width":256,"imagePath":"sea_beach_tex.png","height":512,"name":"sea_beach","SubTexture":[{"width":68,"y":103,"height":12,"name":"08","x":170},{"width":167,"y":1,"height":144,"name":"02","x":1},{"width":46,"y":1,"height":58,"name":"07","x":170},{"width":19,"y":61,"height":33,"name":"05","x":226},{"width":23,"y":61,"height":32,"name":"06","x":201},{"width":51,"y":147,"height":60,"name":"04","x":162},{"width":159,"y":147,"height":142,"name":"01","x":1},{"width":29,"y":61,"height":40,"name":"03","x":170}]}
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "1.0.0",
3 "uuid": "d341b1fa-07a0-4b06-86cc-09313f8b8c5d",
4 "atlasJson": "{\"width\":256,\"imagePath\":\"sea_beach_tex.png\",\"height\":512,\"name\":\"sea_beach\",\"SubTexture\":[{\"width\":68,\"y\":103,\"height\":12,\"name\":\"08\",\"x\":170},{\"width\":167,\"y\":1,\"height\":144,\"name\":\"02\",\"x\":1},{\"width\":46,\"y\":1,\"height\":58,\"name\":\"07\",\"x\":170},{\"width\":19,\"y\":61,\"height\":33,\"name\":\"05\",\"x\":226},{\"width\":23,\"y\":61,\"height\":32,\"name\":\"06\",\"x\":201},{\"width\":51,\"y\":147,\"height\":60,\"name\":\"04\",\"x\":162},{\"width\":159,\"y\":147,\"height\":142,\"name\":\"01\",\"x\":1},{\"width\":29,\"y\":61,\"height\":40,\"name\":\"03\",\"x\":170}]}",
5 "texture": "87f3540d-d648-429c-9303-588a924a5a17",
6 "subMetas": {}
7 }
...\ No newline at end of file ...\ No newline at end of file
1 {
2 "ver": "2.2.0",
3 "uuid": "87f3540d-d648-429c-9303-588a924a5a17",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "sea_beach_tex": {
10 "ver": "1.0.4",
11 "uuid": "8ecb1fb4-c6a8-48b9-bf23-717e320240d7",
12 "rawTextureUuid": "87f3540d-d648-429c-9303-588a924a5a17",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": -5,
17 "offsetY": 111,
18 "trimX": 1,
19 "trimY": 1,
20 "width": 244,
21 "height": 288,
22 "rawWidth": 256,
23 "rawHeight": 512,
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": "573666a2-0fd3-42ff-870e-9503a18c45ef",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "1000011": {
10 "ver": "1.0.4",
11 "uuid": "ec7118b9-0675-447e-aaff-37f5bab6628e",
12 "rawTextureUuid": "573666a2-0fd3-42ff-870e-9503a18c45ef",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 3,
17 "offsetY": -5,
18 "trimX": 19,
19 "trimY": 11,
20 "width": 68,
21 "height": 88,
22 "rawWidth": 100,
23 "rawHeight": 100,
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
...@@ -21,10 +21,10 @@ ...@@ -21,10 +21,10 @@
21 "height": 22, 21 "height": 22,
22 "rawWidth": 148, 22 "rawWidth": 148,
23 "rawHeight": 28, 23 "rawHeight": 28,
24 "borderTop": 0, 24 "borderTop": 10,
25 "borderBottom": 0, 25 "borderBottom": 10,
26 "borderLeft": 0, 26 "borderLeft": 10,
27 "borderRight": 0, 27 "borderRight": 10,
28 "subMetas": {} 28 "subMetas": {}
29 } 29 }
30 } 30 }
......
1 {
2 "ver": "1.0.1",
3 "uuid": "c502409c-1a14-49b7-b67b-73ab700e8b0f",
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": "6094c71b-2153-4529-9f0d-3aad6a311043",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "TipBoxBg": {
10 "ver": "1.0.4",
11 "uuid": "cd6060cb-4720-46da-b0cf-3fef99080273",
12 "rawTextureUuid": "6094c71b-2153-4529-9f0d-3aad6a311043",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 492,
21 "height": 460,
22 "rawWidth": 492,
23 "rawHeight": 460,
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": "48e45826-1f71-40af-83c6-1675cc31dc20",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "arrow_left": {
10 "ver": "1.0.4",
11 "uuid": "e08aeb85-518b-436c-b8fc-cd3815e1e904",
12 "rawTextureUuid": "48e45826-1f71-40af-83c6-1675cc31dc20",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 26,
21 "height": 100,
22 "rawWidth": 26,
23 "rawHeight": 100,
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": "d2c771a8-f07b-420e-a413-139cf414894f",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "arrow_right": {
10 "ver": "1.0.4",
11 "uuid": "d1efcd3b-ea8a-4cb5-a4dc-3993b908fea1",
12 "rawTextureUuid": "d2c771a8-f07b-420e-a413-139cf414894f",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 26,
21 "height": 100,
22 "rawWidth": 26,
23 "rawHeight": 100,
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": "9e90a2df-05f1-4ba4-9f77-95e2f794e002",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_number": {
10 "ver": "1.0.4",
11 "uuid": "2a340bf2-de50-474f-bd6f-d0ff6f4ceecc",
12 "rawTextureUuid": "9e90a2df-05f1-4ba4-9f77-95e2f794e002",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 73,
21 "height": 64,
22 "rawWidth": 73,
23 "rawHeight": 64,
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": "7806420d-382b-4052-836a-cfbb03d6f067",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_shop": {
10 "ver": "1.0.4",
11 "uuid": "0ed67b23-6492-474c-a421-b782e878abf7",
12 "rawTextureUuid": "7806420d-382b-4052-836a-cfbb03d6f067",
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": 575,
22 "rawWidth": 1280,
23 "rawHeight": 575,
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": "4dfb86d5-0fc1-49bd-8430-2c735fc6a263",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_shop_wall": {
10 "ver": "1.0.4",
11 "uuid": "a6023221-f0f5-413c-90da-dfcc12d2601c",
12 "rawTextureUuid": "4dfb86d5-0fc1-49bd-8430-2c735fc6a263",
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": 575,
22 "rawWidth": 1280,
23 "rawHeight": 575,
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": "087da30b-a798-4947-9cb5-78a305453443",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "checkBox_no": {
10 "ver": "1.0.4",
11 "uuid": "4cedbbb8-7bde-451d-b96f-9c41cf563d7d",
12 "rawTextureUuid": "087da30b-a798-4947-9cb5-78a305453443",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -0.5,
18 "trimX": 0,
19 "trimY": 1,
20 "width": 152,
21 "height": 117,
22 "rawWidth": 152,
23 "rawHeight": 118,
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": "f51e40fa-45b5-48a1-be0a-d20317e0b98a",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "checkBox_yes": {
10 "ver": "1.0.4",
11 "uuid": "6e058650-ffdb-4a44-a4d9-4efff644205b",
12 "rawTextureUuid": "f51e40fa-45b5-48a1-be0a-d20317e0b98a",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -0.5,
18 "trimX": 0,
19 "trimY": 1,
20 "width": 152,
21 "height": 117,
22 "rawWidth": 152,
23 "rawHeight": 118,
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": "1e353b2d-d31a-4c7d-92cd-efa4aa55aa87",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "has_bought": {
10 "ver": "1.0.4",
11 "uuid": "3e262f8d-6def-47a6-b2cf-e96b40b2105a",
12 "rawTextureUuid": "1e353b2d-d31a-4c7d-92cd-efa4aa55aa87",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 128,
21 "height": 56,
22 "rawWidth": 128,
23 "rawHeight": 56,
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": "c0ba7656-5062-4477-95d5-ebceeb59bad5",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "item_price_bg": {
10 "ver": "1.0.4",
11 "uuid": "6cc7f320-8297-4a9d-b11d-4a5fa80eaf91",
12 "rawTextureUuid": "c0ba7656-5062-4477-95d5-ebceeb59bad5",
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": 112,
22 "rawWidth": 148,
23 "rawHeight": 112,
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": "8076f293-488e-4fc0-9d2d-35708529e455",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "itemsAD_bg": {
10 "ver": "1.0.4",
11 "uuid": "2d0b3575-aea3-4e2c-9d47-6a1207adee3a",
12 "rawTextureUuid": "8076f293-488e-4fc0-9d2d-35708529e455",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 229,
21 "height": 167,
22 "rawWidth": 229,
23 "rawHeight": 167,
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": "c7f6493b-e957-42e1-b5a9-da31b02de8ec",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "my_beans_bg": {
10 "ver": "1.0.4",
11 "uuid": "4d8dfa67-bcfa-43cd-a9b3-f227b84e925c",
12 "rawTextureUuid": "c7f6493b-e957-42e1-b5a9-da31b02de8ec",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 165,
21 "height": 41,
22 "rawWidth": 165,
23 "rawHeight": 41,
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": "fa0184be-328a-4bc5-bf7a-043d58e91e1d",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "number_add": {
10 "ver": "1.0.4",
11 "uuid": "c76550ee-e848-4173-86f6-514081cb1674",
12 "rawTextureUuid": "fa0184be-328a-4bc5-bf7a-043d58e91e1d",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 57,
21 "height": 59,
22 "rawWidth": 57,
23 "rawHeight": 59,
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": "c3bace71-bb45-4cdf-86f5-7938fd90292c",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "number_reduce": {
10 "ver": "1.0.4",
11 "uuid": "22e9985d-a850-4502-bd88-6a6c25147fe6",
12 "rawTextureUuid": "c3bace71-bb45-4cdf-86f5-7938fd90292c",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 57,
21 "height": 59,
22 "rawWidth": 57,
23 "rawHeight": 59,
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": "cdbb020a-6c38-49b1-bb0d-7512e5f2bc79",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "shop_textures": {
10 "ver": "1.0.4",
11 "uuid": "61117caa-902a-44c3-b42c-16605a1c35ec",
12 "rawTextureUuid": "cdbb020a-6c38-49b1-bb0d-7512e5f2bc79",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 1.5,
18 "trimX": 2,
19 "trimY": 2,
20 "width": 508,
21 "height": 505,
22 "rawWidth": 512,
23 "rawHeight": 512,
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": "d53f13fb-e0b9-4f24-9ad5-d19cc81936be",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "shop_textures_shdx": {
10 "ver": "1.0.4",
11 "uuid": "5316270e-f6bb-44a2-88f8-8c388ddda8f3",
12 "rawTextureUuid": "d53f13fb-e0b9-4f24-9ad5-d19cc81936be",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 63,
21 "height": 62,
22 "rawWidth": 63,
23 "rawHeight": 62,
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": "2ecfbd74-ef8f-4d1c-97ec-a099f1668350",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_coin_1": {
10 "ver": "1.0.4",
11 "uuid": "f18e5819-f552-4d8c-b6fe-be0213e3e925",
12 "rawTextureUuid": "2ecfbd74-ef8f-4d1c-97ec-a099f1668350",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 17,
19 "trimY": 16,
20 "width": 134,
21 "height": 48,
22 "rawWidth": 168,
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": "729955d6-4f39-499d-82ee-4b9dfc663226",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_coin_2": {
10 "ver": "1.0.4",
11 "uuid": "4eb1f64b-c5e6-4066-bc43-fe66e1d5b2e2",
12 "rawTextureUuid": "729955d6-4f39-499d-82ee-4b9dfc663226",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 11,
19 "trimY": 11,
20 "width": 146,
21 "height": 58,
22 "rawWidth": 168,
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": "f8b80a63-5bcc-40c6-abc0-1342fe5b5045",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_dress_1": {
10 "ver": "1.0.4",
11 "uuid": "6c8f2a4d-1e71-4695-8384-31c7e0a3b413",
12 "rawTextureUuid": "f8b80a63-5bcc-40c6-abc0-1342fe5b5045",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 17,
19 "trimY": 16,
20 "width": 134,
21 "height": 48,
22 "rawWidth": 168,
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": "d09ee427-cf78-473e-b6a5-053fb4334bec",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_dress_2": {
10 "ver": "1.0.4",
11 "uuid": "4cb53cc0-22c4-4174-8da9-149d334070d1",
12 "rawTextureUuid": "d09ee427-cf78-473e-b6a5-053fb4334bec",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 11,
19 "trimY": 11,
20 "width": 146,
21 "height": 58,
22 "rawWidth": 168,
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": "ab794b09-f71b-451f-9243-524177c1b339",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_food_1": {
10 "ver": "1.0.4",
11 "uuid": "c604631b-fbcf-4a4a-86d4-b1124f367302",
12 "rawTextureUuid": "ab794b09-f71b-451f-9243-524177c1b339",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 17,
19 "trimY": 16,
20 "width": 134,
21 "height": 48,
22 "rawWidth": 168,
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": "6e8c401d-93b8-4515-a14b-5ff5a17e54aa",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_food_2": {
10 "ver": "1.0.4",
11 "uuid": "9b200ad8-a2e8-441e-9195-1777cb805223",
12 "rawTextureUuid": "6e8c401d-93b8-4515-a14b-5ff5a17e54aa",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 11,
19 "trimY": 11,
20 "width": 146,
21 "height": 58,
22 "rawWidth": 168,
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": "c80f4107-be33-47f9-9ced-687830e772bf",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_house_1": {
10 "ver": "1.0.4",
11 "uuid": "5c9dbce2-8fb2-4837-8d31-5125edb07491",
12 "rawTextureUuid": "c80f4107-be33-47f9-9ced-687830e772bf",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 17,
19 "trimY": 16,
20 "width": 134,
21 "height": 48,
22 "rawWidth": 168,
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": "84d53454-939f-4ee2-842d-ca889c317a7f",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_house_2": {
10 "ver": "1.0.4",
11 "uuid": "427f1b16-0861-422b-89dd-d2c4fe938673",
12 "rawTextureUuid": "84d53454-939f-4ee2-842d-ca889c317a7f",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 11,
19 "trimY": 11,
20 "width": 146,
21 "height": 58,
22 "rawWidth": 168,
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": "2fa65e2f-ace3-4e26-af03-996ee359f646",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_pet_1": {
10 "ver": "1.0.4",
11 "uuid": "23f61df4-8635-488e-8c16-9091cbb4adfb",
12 "rawTextureUuid": "2fa65e2f-ace3-4e26-af03-996ee359f646",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": -2.5,
18 "trimX": 6,
19 "trimY": 5,
20 "width": 156,
21 "height": 75,
22 "rawWidth": 168,
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": "7b87690c-e424-4899-9130-38a8f9e308c7",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_pet_2": {
10 "ver": "1.0.4",
11 "uuid": "d012dcc0-23d9-465c-9d1b-f1f7ea91c3ac",
12 "rawTextureUuid": "7b87690c-e424-4899-9130-38a8f9e308c7",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 2,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 168,
21 "height": 76,
22 "rawWidth": 168,
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": "eda33341-5f1e-4497-a718-da97c977b0ff",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_recharge_1": {
10 "ver": "1.0.4",
11 "uuid": "27537b3f-7609-4321-b522-428ecff84097",
12 "rawTextureUuid": "eda33341-5f1e-4497-a718-da97c977b0ff",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 17,
19 "trimY": 16,
20 "width": 134,
21 "height": 48,
22 "rawWidth": 168,
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": "d8f627f6-7756-46d7-af1e-fba9e503732e",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_recharge_2": {
10 "ver": "1.0.4",
11 "uuid": "444224af-ac0c-4d44-8428-57bec7000bfb",
12 "rawTextureUuid": "d8f627f6-7756-46d7-af1e-fba9e503732e",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 11,
19 "trimY": 11,
20 "width": 146,
21 "height": 58,
22 "rawWidth": 168,
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": "693e2e02-fd0e-43dd-8d93-a928a23f3900",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_wall_1": {
10 "ver": "1.0.4",
11 "uuid": "8d7a9182-e339-4dc1-97d0-aa1b4b8be1b2",
12 "rawTextureUuid": "693e2e02-fd0e-43dd-8d93-a928a23f3900",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 17,
19 "trimY": 16,
20 "width": 134,
21 "height": 48,
22 "rawWidth": 168,
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": "c2210a5f-1a60-478b-ac35-0be4cbd4ef36",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "tab_wall_2": {
10 "ver": "1.0.4",
11 "uuid": "9938d5ef-a1c5-4566-bcdd-ca50d9a5ce25",
12 "rawTextureUuid": "c2210a5f-1a60-478b-ac35-0be4cbd4ef36",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 11,
19 "trimY": 11,
20 "width": 146,
21 "height": 58,
22 "rawWidth": 168,
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": "1.0.1",
3 "uuid": "a9286607-f4c0-4812-876b-dc02014fde63",
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": "f84e57b8-964a-4064-8da6-03b6436e7ea1",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "bg_dress": {
10 "ver": "1.0.4",
11 "uuid": "68ace0c6-ad88-4d11-9a61-d099bef15faa",
12 "rawTextureUuid": "f84e57b8-964a-4064-8da6-03b6436e7ea1",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 865,
21 "height": 519,
22 "rawWidth": 865,
23 "rawHeight": 519,
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": "2903e0f0-98ee-400e-aea5-955c634044da",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_businesscard_1": {
10 "ver": "1.0.4",
11 "uuid": "6be46273-a6d7-4e8c-8b88-b5fc6f8ae7a1",
12 "rawTextureUuid": "2903e0f0-98ee-400e-aea5-955c634044da",
13 "trimType": "auto",
14 "trimThreshold": 1,
15 "rotated": false,
16 "offsetX": 0,
17 "offsetY": 0,
18 "trimX": 0,
19 "trimY": 0,
20 "width": 140,
21 "height": 82,
22 "rawWidth": 140,
23 "rawHeight": 82,
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": "d3c8ff4e-226a-413e-a2e5-d5cfd42736e8",
4 "type": "sprite",
5 "wrapMode": "clamp",
6 "filterMode": "bilinear",
7 "premultiplyAlpha": false,
8 "subMetas": {
9 "btn_businesscard_2": {
10 "ver": "1.0.4",
11 "uuid": "196de764-718f-4a6a-84a9-cdb576a7f80d",
12 "rawTextureUuid": "d3c8ff4e-226a-413e-a2e5-d5cfd42736e8",
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": 157,
21 "height": 81,
22 "rawWidth": 158,
23 "rawHeight": 82,
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