complete sceneGame
Showing
76 changed files
with
1306 additions
and
82 deletions
This diff could not be displayed because it is too large.
assets/Scene/sceneGameLobby.fire
0 → 100644
This diff is collapsed.
Click to expand it.
assets/Scene/sceneGameLobby.fire.meta
0 → 100644
This diff is collapsed.
Click to expand it.
... | @@ -31,16 +31,8 @@ cc.Class({ | ... | @@ -31,16 +31,8 @@ cc.Class({ |
31 | this._oSceneContext.focusPath = "CategoryList/DataContainerMask/DataContainer/StarListCell0"; | 31 | this._oSceneContext.focusPath = "CategoryList/DataContainerMask/DataContainer/StarListCell0"; |
32 | // } | 32 | // } |
33 | //---------上下文及参数相关处理结束----------- | 33 | //---------上下文及参数相关处理结束----------- |
34 | this._nodeCategoryList = this.node.getChildByName('CategoryList'); | 34 | this._nodeCategoryList = cc.find("CategoryList",this.node); |
35 | let lvCategoryList = this._nodeCategoryList.addComponent(ListView); | 35 | this._nodeCategoryList.addComponent(ListView); |
36 | lvCategoryList.init(this, 3, 1, 3, 4, 'GameCategoryListCell', | ||
37 | -380, 230,//起始位置 | ||
38 | 0, 30, 15, 0, //margin | ||
39 | 1, 1, | ||
40 | function () { | ||
41 | this.getCategoryList(); | ||
42 | } | ||
43 | ); | ||
44 | //滚动条位置 | 36 | //滚动条位置 |
45 | let nodeScrollBtn = cc.find("CategoryList/ScrollBarContainer/ScrollBarShadow/ScrollBarBlock", this.node); | 37 | let nodeScrollBtn = cc.find("CategoryList/ScrollBarContainer/ScrollBarShadow/ScrollBarBlock", this.node); |
46 | var fiScrollBtn = nodeScrollBtn.addComponent(FocusInfo); | 38 | var fiScrollBtn = nodeScrollBtn.addComponent(FocusInfo); |
... | @@ -49,10 +41,27 @@ cc.Class({ | ... | @@ -49,10 +41,27 @@ cc.Class({ |
49 | 41 | ||
50 | // this.getPageBg(this, "background"); | 42 | // this.getPageBg(this, "background"); |
51 | this.addHomeIcon(this); | 43 | this.addHomeIcon(this); |
44 | this.resetCategory(1); | ||
45 | |||
52 | }, | 46 | }, |
53 | 47 | ||
54 | getCategoryList: function () { | 48 | resetCategory:function(index){ |
49 | this._nodeCategoryList.getChildByName('DataContainerMask').getChildByName('DataContainer').destroyAllChildren(); | ||
50 | |||
55 | let lvCategoryList = this._nodeCategoryList.getComponent(ListView); | 51 | let lvCategoryList = this._nodeCategoryList.getComponent(ListView); |
52 | lvCategoryList.init(this, 3, 1, 3, 5, 'GameCategoryListCell', | ||
53 | -380, 230,//起始位置 | ||
54 | 0, 30, 15, 0, //margin | ||
55 | 1, 1, | ||
56 | function () { | ||
57 | this.getCategoryList(index); | ||
58 | } | ||
59 | ); | ||
60 | }, | ||
61 | |||
62 | getCategoryList: function (index) { | ||
63 | let lvCategoryList = this._nodeCategoryList.getComponent(ListView); | ||
64 | |||
56 | let oCategoryRequestParameters = { | 65 | let oCategoryRequestParameters = { |
57 | "view": "json", | 66 | "view": "json", |
58 | "name": "starIndexnew", | 67 | "name": "starIndexnew", |
... | @@ -77,10 +86,17 @@ cc.Class({ | ... | @@ -77,10 +86,17 @@ cc.Class({ |
77 | iStart, (lvCategoryList.getShowCellRows() + lvCategoryList.getAlphaCellRows()) * lvCategoryList.getCellCountEachRow(), | 86 | iStart, (lvCategoryList.getShowCellRows() + lvCategoryList.getAlphaCellRows()) * lvCategoryList.getCellCountEachRow(), |
78 | "left", "desc" | 87 | "left", "desc" |
79 | ); | 88 | ); |
80 | 89 | cc.log("index---------------->"+index); | |
81 | lvCategoryList.loadData( | 90 | lvCategoryList.loadData( |
82 | function (strResponse) { | 91 | function (strResponse) { |
83 | strResponse = GameLobbyCategoryJson.gameCategory; //暂时采用假数据 | 92 | if(index==1){ |
93 | strResponse = GameLobbyCategoryJson.gameCategory; //暂时采用假数据 | ||
94 | }else if(index==2){ | ||
95 | strResponse = GameLobbyCategoryJson.gameCategory2; //暂时采用假数据 | ||
96 | }else if(index==3){ | ||
97 | strResponse = GameLobbyCategoryJson.gameCategory3; //暂时采用假数据 | ||
98 | } | ||
99 | |||
84 | // cc.log("网络列表:" + JSON.stringify(strResponse)); | 100 | // cc.log("网络列表:" + JSON.stringify(strResponse)); |
85 | lvCategoryList.renderInitData(JSON.stringify(strResponse)); //将假数据转成字符串在给过去 | 101 | lvCategoryList.renderInitData(JSON.stringify(strResponse)); //将假数据转成字符串在给过去 |
86 | this._bIsCategoryListDataInit = true; | 102 | this._bIsCategoryListDataInit = true; |
... | @@ -105,6 +121,7 @@ cc.Class({ | ... | @@ -105,6 +121,7 @@ cc.Class({ |
105 | }); | 121 | }); |
106 | }, | 122 | }, |
107 | 123 | ||
124 | |||
108 | checkDataReadyAndInitFocus: function () { | 125 | checkDataReadyAndInitFocus: function () { |
109 | if (this._bIsCategoryListDataInit && !this._bIsFocusInit) { | 126 | if (this._bIsCategoryListDataInit && !this._bIsFocusInit) { |
110 | this.scheduleOnce(() => { //指定0让回调函数在下一帧立即执行 | 127 | this.scheduleOnce(() => { //指定0让回调函数在下一帧立即执行 |
... | @@ -115,6 +132,25 @@ cc.Class({ | ... | @@ -115,6 +132,25 @@ cc.Class({ |
115 | }, | 132 | }, |
116 | 133 | ||
117 | initFocus: function () { | 134 | initFocus: function () { |
135 | |||
136 | var fiPuzzle = cc.find("PuzzleButton",this.node).addComponent(FocusInfo);// | ||
137 | this._aFocusTargets[0]['to_puzzle'] = cc.find("PuzzleButton",this.node); | ||
138 | fiPuzzle.init( | ||
139 | null, true | ||
140 | ); | ||
141 | |||
142 | var fiParkour = cc.find("ParkourButton",this.node).addComponent(FocusInfo);// | ||
143 | this._aFocusTargets[0]['to_parkour'] = cc.find("ParkourButton",this.node); | ||
144 | fiParkour.init( | ||
145 | null, true | ||
146 | ); | ||
147 | |||
148 | var fiMotion = cc.find("MotionButton",this.node).addComponent(FocusInfo);// | ||
149 | this._aFocusTargets[0]['to_motion'] = cc.find("MotionButton",this.node); | ||
150 | fiMotion.init( | ||
151 | null, true | ||
152 | ); | ||
153 | |||
118 | var nodeInitFocus = cc.find(this._oSceneContext.focusPath, this.node); | 154 | var nodeInitFocus = cc.find(this._oSceneContext.focusPath, this.node); |
119 | var nodeFocus = new cc.Node('nodeFocus'); | 155 | var nodeFocus = new cc.Node('nodeFocus'); |
120 | this.node.addChild(nodeFocus, 10); | 156 | this.node.addChild(nodeFocus, 10); |
... | @@ -201,11 +237,19 @@ cc.Class({ | ... | @@ -201,11 +237,19 @@ cc.Class({ |
201 | } | 237 | } |
202 | if (event.keyCode == cc.macro.KEY.enter || event.keyCode == Common.ANDROID_KEY.enter) { | 238 | if (event.keyCode == cc.macro.KEY.enter || event.keyCode == Common.ANDROID_KEY.enter) { |
203 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | 239 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); |
204 | 240 | if(0 == this._fiCurrentFocus.node.getName().indexOf('PuzzleButton')){ | |
205 | var apkName=this._fiCurrentFocus.node.getComponent(GameCategoryListCell).apkName; | 241 | this.resetCategory(1); |
206 | // cc.log("点击包名:"+apkName); | 242 | }else if(0 == this._fiCurrentFocus.node.getName().indexOf('ParkourButton')){ |
207 | let o1 = jsb.reflection.callStaticMethod("org/cocos2dx/javascript/TopdrawSDKWrapper", "startGame", "(ILjava/lang/String;Ljava/lang/String;)V", | 243 | this.resetCategory(2); |
208 | parseInt(1), apkName, "onGetPlayURL"); | 244 | }else if(0 == this._fiCurrentFocus.node.getName().indexOf('MotionButton')){ |
245 | this.resetCategory(3); | ||
246 | }else{ | ||
247 | var apkName=this._fiCurrentFocus.node.getComponent(GameCategoryListCell).apkName; | ||
248 | // cc.log("点击包名:"+apkName); | ||
249 | let o1 = jsb.reflection.callStaticMethod("org/cocos2dx/javascript/TopdrawSDKWrapper", "startGame", "(ILjava/lang/String;Ljava/lang/String;)V", | ||
250 | parseInt(1), apkName, "onGetPlayURL"); | ||
251 | } | ||
252 | |||
209 | } | 253 | } |
210 | if (event.keyCode == cc.macro.KEY.space) { | 254 | if (event.keyCode == cc.macro.KEY.space) { |
211 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | 255 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | ... | ... |
... | @@ -119,6 +119,156 @@ cc.Class({ | ... | @@ -119,6 +119,156 @@ cc.Class({ |
119 | ] | 119 | ] |
120 | } | 120 | } |
121 | ] | 121 | ] |
122 | }, | ||
123 | gameCategory2: { | ||
124 | "businessCode": "success", | ||
125 | "count": 10, | ||
126 | "currentTime": 1567477099396, | ||
127 | "description": "", | ||
128 | "resultSet": [ | ||
129 | { | ||
130 | "id": 233, | ||
131 | "title": "火箭小黄人", | ||
132 | "packageName":"com.topdraw.xhx.bird", | ||
133 | "image": [ | ||
134 | { | ||
135 | "bg": "game/bg_xyx_10", | ||
136 | "fileUrl": "game/xyx_10" | ||
137 | } | ||
138 | ] | ||
139 | }, | ||
140 | { | ||
141 | "id": 233, | ||
142 | "title": "接糖果", | ||
143 | "packageName":"com.topdraw.xhx.candy", | ||
144 | "image": [ | ||
145 | { | ||
146 | "bg": "game/bg_xyx_5", | ||
147 | "fileUrl": "game/xyx_5" | ||
148 | } | ||
149 | ] | ||
150 | }, | ||
151 | { | ||
152 | "id": 233, | ||
153 | "title": "欢乐叠蛋糕", | ||
154 | "packageName":"com.topdraw.xhx.cake", | ||
155 | "image": [ | ||
156 | { | ||
157 | "bg": "game/bg_xyx_1", | ||
158 | "fileUrl": "game/xyx_1" | ||
159 | } | ||
160 | ] | ||
161 | }, | ||
162 | { | ||
163 | "id": 233, | ||
164 | "title": "记忆翻牌", | ||
165 | "packageName":"com.topdraw.xhx.fanpai", | ||
166 | "image": [ | ||
167 | { | ||
168 | "bg": "game/bg_xyx_2", | ||
169 | "fileUrl": "game/xyx_2" | ||
170 | } | ||
171 | ] | ||
172 | }, | ||
173 | { | ||
174 | "id": 233, | ||
175 | "title": "飞檐走壁", | ||
176 | "packageName":"com.topdraw.xhx.feiyanzoubi", | ||
177 | "image": [ | ||
178 | { | ||
179 | "bg": "game/bg_xyx_9", | ||
180 | "fileUrl": "game/xyx_9" | ||
181 | } | ||
182 | ] | ||
183 | }, | ||
184 | { | ||
185 | "id": 233, | ||
186 | "title": "旋转海盗", | ||
187 | "packageName":"com.topdraw.xhx.haidao", | ||
188 | "image": [ | ||
189 | { | ||
190 | "bg": "game/bg_xyx_8", | ||
191 | "fileUrl": "game/xyx_8" | ||
192 | } | ||
193 | ] | ||
194 | }, | ||
195 | |||
196 | ] | ||
197 | }, | ||
198 | gameCategory3: { | ||
199 | "businessCode": "success", | ||
200 | "count": 10, | ||
201 | "currentTime": 1567477099396, | ||
202 | "description": "", | ||
203 | "resultSet": [ | ||
204 | |||
205 | { | ||
206 | "id": 233, | ||
207 | "title": "飞檐走壁", | ||
208 | "packageName":"com.topdraw.xhx.feiyanzoubi", | ||
209 | "image": [ | ||
210 | { | ||
211 | "bg": "game/bg_xyx_9", | ||
212 | "fileUrl": "game/xyx_9" | ||
213 | } | ||
214 | ] | ||
215 | }, | ||
216 | { | ||
217 | "id": 233, | ||
218 | "title": "旋转海盗", | ||
219 | "packageName":"com.topdraw.xhx.haidao", | ||
220 | "image": [ | ||
221 | { | ||
222 | "bg": "game/bg_xyx_8", | ||
223 | "fileUrl": "game/xyx_8" | ||
224 | } | ||
225 | ] | ||
226 | }, | ||
227 | { | ||
228 | "id": 233, | ||
229 | "title": "奔跑吧小马宝莉", | ||
230 | "packageName":"com.topdraw.xhx.run", | ||
231 | "image": [ | ||
232 | { | ||
233 | "bg": "game/bg_xyx_7", | ||
234 | "fileUrl": "game/xyx_7" | ||
235 | } | ||
236 | ] | ||
237 | }, | ||
238 | { | ||
239 | "id": 233, | ||
240 | "title": "猜猜我是谁", | ||
241 | "packageName":"com.topdraw.xhx.guess", | ||
242 | "image": [ | ||
243 | { | ||
244 | "bg": "game/bg_xyx_3", | ||
245 | "fileUrl": "game/xyx_3" | ||
246 | } | ||
247 | ] | ||
248 | }, | ||
249 | { | ||
250 | "id": 233, | ||
251 | "title": "它的颜色", | ||
252 | "packageName":"com.topdraw.xhx.guesscolor", | ||
253 | "image": [ | ||
254 | { | ||
255 | "bg": "game/bg_xyx_4", | ||
256 | "fileUrl": "game/xyx_4" | ||
257 | } | ||
258 | ] | ||
259 | }, | ||
260 | { | ||
261 | "id": 233, | ||
262 | "title": "数一数", | ||
263 | "packageName":"com.topdraw.xhx.shuyishu", | ||
264 | "image": [ | ||
265 | { | ||
266 | "bg": "game/bg_xyx_6", | ||
267 | "fileUrl": "game/xyx_6" | ||
268 | } | ||
269 | ] | ||
270 | } | ||
271 | ] | ||
122 | } | 272 | } |
123 | } | 273 | } |
124 | 274 | ... | ... |
1 | //明星列表ListCell | ||
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 | apkName:"", //包名 | ||
13 | bg: cc.Sprite, //背景 | ||
14 | starName: cc.Label, //名称 | ||
15 | pic: cc.Sprite, //动漫图片 | ||
16 | }, | ||
17 | |||
18 | statics: { | ||
19 | PFB_NAME: 'prefab/pfbGameAchievementCell', | ||
20 | CELL_NAME: 'StarListCell', | ||
21 | }, | ||
22 | |||
23 | init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) { | ||
24 | //准备焦点坐标 | ||
25 | let fiCategoryBlock = this.node.addComponent(FocusInfo); | ||
26 | fiCategoryBlock.init( | ||
27 | null, false, null, null, 1.0 | ||
28 | ); | ||
29 | compSceneCanvas.addNodeToFocusTarget(2, this.node.name, this.node); | ||
30 | }, | ||
31 | |||
32 | render(oData, iRecordIndex) { | ||
33 | // this.id = oData.id; | ||
34 | // this.starName.string = oData.title; | ||
35 | // this.apkName=oData.packageName; | ||
36 | // var self = this; | ||
37 | // cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) { | ||
38 | // self.pic.spriteFrame = new cc.SpriteFrame(texture); | ||
39 | // }); | ||
40 | // //准备焦点坐标oData.tvlink | ||
41 | // this.node.getComponent(FocusInfo).setTVLink(""); | ||
42 | }, | ||
43 | |||
44 | enableFocusInfo: function () { | ||
45 | this.node.getComponent(FocusInfo).setEnable(true); | ||
46 | }, | ||
47 | |||
48 | disableFocusInfo: function () { | ||
49 | this.node.getComponent(FocusInfo).setEnable(false); | ||
50 | }, | ||
51 | |||
52 | }); |
... | @@ -22,7 +22,7 @@ cc.Class({ | ... | @@ -22,7 +22,7 @@ cc.Class({ |
22 | fiCategoryBlock.init( | 22 | fiCategoryBlock.init( |
23 | null, false, null, null, 1.0 | 23 | null, false, null, null, 1.0 |
24 | ); | 24 | ); |
25 | compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node); //注意层级 | 25 | compSceneCanvas.addNodeToFocusTarget(1, this.node.name, this.node); //注意层级 |
26 | }, | 26 | }, |
27 | 27 | ||
28 | render(oData, iRecordIndex) { | 28 | render(oData, iRecordIndex) { | ... | ... |
assets/Texture/game/600001.png
0 → 100644

3.13 KB
assets/Texture/game/600001.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "409f60d1-2156-4e4a-a4f3-d1e982878564", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "600001": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "437d0612-8583-46d0-ad75-46a400680bbb", | ||
12 | "rawTextureUuid": "409f60d1-2156-4e4a-a4f3-d1e982878564", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 1.5, | ||
17 | "offsetY": -1.5, | ||
18 | "trimX": 11, | ||
19 | "trimY": 11, | ||
20 | "width": 61, | ||
21 | "height": 61, | ||
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 |
assets/Texture/game/Pointer.png
0 → 100644

9.14 KB
assets/Texture/game/Pointer.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "24ce75a5-c1b9-454e-a757-157b03ca9506", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "Pointer": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "a956bde8-57c1-4af1-ba91-36106f41c114", | ||
12 | "rawTextureUuid": "24ce75a5-c1b9-454e-a757-157b03ca9506", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0.5, | ||
17 | "offsetY": 15.5, | ||
18 | "trimX": 31, | ||
19 | "trimY": 0, | ||
20 | "width": 205, | ||
21 | "height": 235, | ||
22 | "rawWidth": 266, | ||
23 | "rawHeight": 266, | ||
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 |

17.6 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "b7e746e3-ff4a-4a25-8161-effeaffb509e", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "arrow_daily_lottery01": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "fddd76b7-597b-4769-9ab7-ddd0d022e740", | ||
12 | "rawTextureUuid": "b7e746e3-ff4a-4a25-8161-effeaffb509e", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 170, | ||
21 | "height": 235, | ||
22 | "rawWidth": 170, | ||
23 | "rawHeight": 235, | ||
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 |

9.13 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "51928b49-218d-403b-af4b-d255825b78f7", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_activity_seven_item": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "82a44771-f114-4ba0-912e-676fe1b12602", | ||
12 | "rawTextureUuid": "51928b49-218d-403b-af4b-d255825b78f7", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 159, | ||
21 | "height": 190, | ||
22 | "rawWidth": 159, | ||
23 | "rawHeight": 190, | ||
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 |

16.8 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "2e798e17-b81d-4c5e-94f4-eba2bf61c324", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_activity_seven_item1": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "1d80fff8-06f8-4209-92f4-b080808bf09e", | ||
12 | "rawTextureUuid": "2e798e17-b81d-4c5e-94f4-eba2bf61c324", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 333, | ||
21 | "height": 190, | ||
22 | "rawWidth": 333, | ||
23 | "rawHeight": 190, | ||
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 |

20.5 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "ce33461d-51a6-47e9-beba-fb9d42faecf4", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_daily_lottery_circle": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "c8e1dd8c-76eb-4c4a-8a03-221e88fb60c5", | ||
12 | "rawTextureUuid": "ce33461d-51a6-47e9-beba-fb9d42faecf4", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 532, | ||
21 | "height": 532, | ||
22 | "rawWidth": 532, | ||
23 | "rawHeight": 532, | ||
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 |

51.3 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "02bbf382-bda0-4cff-ae99-0508e21d318c", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_daily_lottery_circle1": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "3d265b88-4ebe-45df-adb8-6b76dbf608e4", | ||
12 | "rawTextureUuid": "02bbf382-bda0-4cff-ae99-0508e21d318c", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": -0.5, | ||
18 | "trimX": 0, | ||
19 | "trimY": 1, | ||
20 | "width": 1208, | ||
21 | "height": 618, | ||
22 | "rawWidth": 1208, | ||
23 | "rawHeight": 619, | ||
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 |
assets/Texture/game/fnt_turntable_go.png
0 → 100644

1.71 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "be9daaff-84e3-46eb-996b-d7420876e2d7", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "fnt_turntable_go": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "bfe3eedc-4671-4c93-891e-bcbea9544f84", | ||
12 | "rawTextureUuid": "be9daaff-84e3-46eb-996b-d7420876e2d7", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 72, | ||
21 | "height": 77, | ||
22 | "rawWidth": 72, | ||
23 | "rawHeight": 77, | ||
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 |

5.05 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "259ca892-d146-4e2f-8f6b-34f5252f442c", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "fnt_turntable_tomorrow": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "ce7644e8-0193-4c87-b66e-bdc7b7d4096d", | ||
12 | "rawTextureUuid": "259ca892-d146-4e2f-8f6b-34f5252f442c", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 1, | ||
20 | "width": 94, | ||
21 | "height": 97, | ||
22 | "rawWidth": 94, | ||
23 | "rawHeight": 99, | ||
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 |

2.21 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "945a0c28-162b-4049-8b69-298515d2dd57", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "img_daily_lottery_check": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "7d6b6c4d-d381-41cf-9706-a192b470feca", | ||
12 | "rawTextureUuid": "945a0c28-162b-4049-8b69-298515d2dd57", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 74, | ||
21 | "height": 51, | ||
22 | "rawWidth": 74, | ||
23 | "rawHeight": 51, | ||
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 |
assets/Texture/game/leaf01.png
0 → 100644

9.06 KB
assets/Texture/game/leaf01.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "8e572e3c-6f88-4fc7-89d7-dc4a5da3458a", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "leaf01": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "9dd23944-0630-4ca0-943a-910755f4eb4e", | ||
12 | "rawTextureUuid": "8e572e3c-6f88-4fc7-89d7-dc4a5da3458a", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 151, | ||
21 | "height": 170, | ||
22 | "rawWidth": 151, | ||
23 | "rawHeight": 170, | ||
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 |
assets/Texture/game/leaf02.png
0 → 100644

7.02 KB
assets/Texture/game/leaf02.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "708b5c6f-384e-4cd4-ac15-8e45f8753b6f", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "leaf02": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "53366657-dd3f-4a07-a645-d1a12e371da0", | ||
12 | "rawTextureUuid": "708b5c6f-384e-4cd4-ac15-8e45f8753b6f", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 95, | ||
21 | "height": 156, | ||
22 | "rawWidth": 95, | ||
23 | "rawHeight": 156, | ||
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 |
assets/Texture/game/leaf03.png
0 → 100644

4.88 KB
assets/Texture/game/leaf03.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "cd86dd51-0ebf-4b02-bb1a-324b7cca9eb8", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "leaf03": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "8ca924dc-e4ae-452e-bea5-641d89c6fdd8", | ||
12 | "rawTextureUuid": "cd86dd51-0ebf-4b02-bb1a-324b7cca9eb8", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 110, | ||
21 | "height": 135, | ||
22 | "rawWidth": 110, | ||
23 | "rawHeight": 135, | ||
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 |
assets/Texture/game/yilingqu.png
0 → 100644

3.62 KB
assets/Texture/game/yilingqu.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "51bbc4a7-3c57-433d-8482-df67a696ece1", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "yilingqu": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "9dac7245-a40f-4e78-8dd1-951f636e33c4", | ||
12 | "rawTextureUuid": "51bbc4a7-3c57-433d-8482-df67a696ece1", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 108, | ||
21 | "height": 38, | ||
22 | "rawWidth": 108, | ||
23 | "rawHeight": 38, | ||
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 |
assets/resources/game/achieve.meta
0 → 100644
assets/resources/game/achieve/1_1.png
0 → 100644

8.07 KB
assets/resources/game/achieve/1_1.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "9eaa0e27-2881-4264-adc9-27196b626a97", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "1_1": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "b746751a-39c5-41b2-8743-b1d11a04a4bb", | ||
12 | "rawTextureUuid": "9eaa0e27-2881-4264-adc9-27196b626a97", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 120, | ||
21 | "height": 121, | ||
22 | "rawWidth": 120, | ||
23 | "rawHeight": 121, | ||
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 |

524 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "3e74f62f-5b8c-47fa-8525-fdb30b6a7836", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "achievement_flash": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "930ad6a1-7eee-4c78-9e3f-627e19933ddb", | ||
12 | "rawTextureUuid": "3e74f62f-5b8c-47fa-8525-fdb30b6a7836", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 680, | ||
21 | "height": 634, | ||
22 | "rawWidth": 680, | ||
23 | "rawHeight": 634, | ||
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 |

607 Bytes
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "18700de6-2376-4bd6-a515-6a27c67efe75", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "achievement_progress_bar": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "43165d30-711e-473c-95c7-5c37411dc642", | ||
12 | "rawTextureUuid": "18700de6-2376-4bd6-a515-6a27c67efe75", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 1, | ||
18 | "trimX": 2, | ||
19 | "trimY": 1, | ||
20 | "width": 169, | ||
21 | "height": 22, | ||
22 | "rawWidth": 173, | ||
23 | "rawHeight": 26, | ||
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 |

10.3 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "61c0ac95-1760-4978-b9ea-413fe14559fc", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "be_achievement_item_select": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "f65072fa-894e-4679-a3af-febf6a180efd", | ||
12 | "rawTextureUuid": "61c0ac95-1760-4978-b9ea-413fe14559fc", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 219, | ||
21 | "height": 258, | ||
22 | "rawWidth": 219, | ||
23 | "rawHeight": 258, | ||
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 |

9.72 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "5f1db1ee-ed20-4bb4-91ed-58222c04bda3", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_achievement": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "8b7bec50-d26f-44c7-9586-54e64885d11e", | ||
12 | "rawTextureUuid": "5f1db1ee-ed20-4bb4-91ed-58222c04bda3", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 270, | ||
21 | "height": 518, | ||
22 | "rawWidth": 270, | ||
23 | "rawHeight": 518, | ||
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 |

8.52 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "110f9359-cdb1-4594-b2a9-8f6095f142af", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_achievement_item": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "731026b3-2a00-4a22-87b3-b96a303aeb61", | ||
12 | "rawTextureUuid": "110f9359-cdb1-4594-b2a9-8f6095f142af", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 207, | ||
21 | "height": 246, | ||
22 | "rawWidth": 207, | ||
23 | "rawHeight": 246, | ||
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 |

375 Bytes
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "024c3d09-1931-43a5-a389-fec56dfd66d9", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_achievement_progress": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "2cf58cc3-c3d8-47ea-8523-db3766f71e60", | ||
12 | "rawTextureUuid": "024c3d09-1931-43a5-a389-fec56dfd66d9", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 173, | ||
21 | "height": 26, | ||
22 | "rawWidth": 173, | ||
23 | "rawHeight": 26, | ||
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 |

735 Bytes
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "dd7ef9d2-6f4a-42eb-b19a-c9dd0a411cab", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_achievement_progress_detail": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "5635629a-e257-4842-b116-021a8f00c026", | ||
12 | "rawTextureUuid": "dd7ef9d2-6f4a-42eb-b19a-c9dd0a411cab", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 195, | ||
21 | "height": 25, | ||
22 | "rawWidth": 195, | ||
23 | "rawHeight": 25, | ||
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 |

191 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "67a87a04-fd3b-4d1c-86dd-86d3a0b83b2a", | ||
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": "48720ccd-68e6-4985-aceb-034f7a39f6d7", | ||
12 | "rawTextureUuid": "67a87a04-fd3b-4d1c-86dd-86d3a0b83b2a", | ||
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 |

48.4 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "1a7b7733-92a3-4b4a-b10d-066a0cbfe513", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_app_view02": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "0b851ec3-2e28-4215-ae14-df27e0873af7", | ||
12 | "rawTextureUuid": "1a7b7733-92a3-4b4a-b10d-066a0cbfe513", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0.5, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 996, | ||
21 | "height": 633, | ||
22 | "rawWidth": 996, | ||
23 | "rawHeight": 634, | ||
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 |

3.46 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "4fdf6a75-a6aa-45b2-8d05-bcf2277b1a58", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "bg_huodong_top": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "c0cb3e7f-70a9-4b49-9c2a-1ce9e61d2845", | ||
12 | "rawTextureUuid": "4fdf6a75-a6aa-45b2-8d05-bcf2277b1a58", | ||
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": 645, | ||
21 | "height": 307, | ||
22 | "rawWidth": 646, | ||
23 | "rawHeight": 308, | ||
24 | "borderTop": 10, | ||
25 | "borderBottom": 10, | ||
26 | "borderLeft": 10, | ||
27 | "borderRight": 10, | ||
28 | "subMetas": {} | ||
29 | } | ||
30 | } | ||
31 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

3.49 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "1af673bd-676d-4848-97f1-b383cf2cc22d", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "btn_get_achievement_reward": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "90c64657-d9ac-46a6-9377-1c1575d7e817", | ||
12 | "rawTextureUuid": "1af673bd-676d-4848-97f1-b383cf2cc22d", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 152, | ||
21 | "height": 50, | ||
22 | "rawWidth": 152, | ||
23 | "rawHeight": 50, | ||
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.92 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "f24d867b-2db0-41dc-8f30-6c23116ed390", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "icon_head_achievement": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "389bd99c-d88d-4afa-b4ea-5f56ecb74917", | ||
12 | "rawTextureUuid": "f24d867b-2db0-41dc-8f30-6c23116ed390", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 97, | ||
21 | "height": 96, | ||
22 | "rawWidth": 97, | ||
23 | "rawHeight": 96, | ||
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 |

3.2 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "2ad11764-824f-4874-bfb4-1ad6f5063503", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "iocn_achievement": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "ff982228-b4a3-4ed5-967d-7ce4fc19e540", | ||
12 | "rawTextureUuid": "2ad11764-824f-4874-bfb4-1ad6f5063503", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0.5, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 1, | ||
19 | "trimY": 0, | ||
20 | "width": 123, | ||
21 | "height": 124, | ||
22 | "rawWidth": 124, | ||
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 |

11 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "2cb46b94-241b-4d4c-a10d-1fc8c8c16e97", | ||
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": "74b9b03a-23fd-4098-9a3b-00b0693308f9", | ||
12 | "rawTextureUuid": "2cb46b94-241b-4d4c-a10d-1fc8c8c16e97", | ||
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 |

4.5 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "9c3affe9-802d-41f3-9b4b-7d3da952cfd6", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "look_achievement_yilingqu": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "90d6ad43-bdb6-4eb5-9613-d3ed0d5a2432", | ||
12 | "rawTextureUuid": "9c3affe9-802d-41f3-9b4b-7d3da952cfd6", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": -1, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 114, | ||
21 | "height": 51, | ||
22 | "rawWidth": 116, | ||
23 | "rawHeight": 51, | ||
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 |

2.3 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "5cd2bb22-ff04-4d23-9583-05e41af5102f", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "title_achievement": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "5a058a3f-6878-4acc-ad8a-5cfa48ed17f7", | ||
12 | "rawTextureUuid": "5cd2bb22-ff04-4d23-9583-05e41af5102f", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0.5, | ||
18 | "trimX": 12, | ||
19 | "trimY": 3, | ||
20 | "width": 85, | ||
21 | "height": 43, | ||
22 | "rawWidth": 109, | ||
23 | "rawHeight": 50, | ||
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 |
This diff is collapsed.
Click to expand it.
... | @@ -8,8 +8,7 @@ | ... | @@ -8,8 +8,7 @@ |
8 | "__id__": 1 | 8 | "__id__": 1 |
9 | }, | 9 | }, |
10 | "optimizationPolicy": 0, | 10 | "optimizationPolicy": 0, |
11 | "asyncLoadAssets": false, | 11 | "asyncLoadAssets": false |
12 | "readonly": false | ||
13 | }, | 12 | }, |
14 | { | 13 | { |
15 | "__type__": "cc.Node", | 14 | "__type__": "cc.Node", |
... | @@ -47,8 +46,8 @@ | ... | @@ -47,8 +46,8 @@ |
47 | }, | 46 | }, |
48 | "_contentSize": { | 47 | "_contentSize": { |
49 | "__type__": "cc.Size", | 48 | "__type__": "cc.Size", |
50 | "width": 220, | 49 | "width": 154, |
51 | "height": 220 | 50 | "height": 154 |
52 | }, | 51 | }, |
53 | "_anchorPoint": { | 52 | "_anchorPoint": { |
54 | "__type__": "cc.Vec2", | 53 | "__type__": "cc.Vec2", |
... | @@ -67,18 +66,18 @@ | ... | @@ -67,18 +66,18 @@ |
67 | "y": 1, | 66 | "y": 1, |
68 | "z": 1 | 67 | "z": 1 |
69 | }, | 68 | }, |
70 | "_eulerAngles": { | 69 | "_rotationX": 0, |
71 | "__type__": "cc.Vec3", | 70 | "_rotationY": 0, |
71 | "_quat": { | ||
72 | "__type__": "cc.Quat", | ||
72 | "x": 0, | 73 | "x": 0, |
73 | "y": 0, | 74 | "y": 0, |
74 | "z": 0 | 75 | "z": 0, |
76 | "w": 1 | ||
75 | }, | 77 | }, |
76 | "_skewX": 0, | 78 | "_skewX": 0, |
77 | "_skewY": 0, | 79 | "_skewY": 0, |
78 | "_is3DNode": false, | ||
79 | "groupIndex": 0, | 80 | "groupIndex": 0, |
80 | "_rotationX": 0, | ||
81 | "_rotationY": 0, | ||
82 | "_id": "" | 81 | "_id": "" |
83 | }, | 82 | }, |
84 | { | 83 | { |
... | @@ -125,22 +124,22 @@ | ... | @@ -125,22 +124,22 @@ |
125 | }, | 124 | }, |
126 | "_scale": { | 125 | "_scale": { |
127 | "__type__": "cc.Vec3", | 126 | "__type__": "cc.Vec3", |
128 | "x": 1, | 127 | "x": 0.7, |
129 | "y": 1, | 128 | "y": 0.7, |
130 | "z": 1 | 129 | "z": 1 |
131 | }, | 130 | }, |
132 | "_eulerAngles": { | 131 | "_rotationX": 0, |
133 | "__type__": "cc.Vec3", | 132 | "_rotationY": 0, |
133 | "_quat": { | ||
134 | "__type__": "cc.Quat", | ||
134 | "x": 0, | 135 | "x": 0, |
135 | "y": 0, | 136 | "y": 0, |
136 | "z": 0 | 137 | "z": 0, |
138 | "w": 1 | ||
137 | }, | 139 | }, |
138 | "_skewX": 0, | 140 | "_skewX": 0, |
139 | "_skewY": 0, | 141 | "_skewY": 0, |
140 | "_is3DNode": false, | ||
141 | "groupIndex": 0, | 142 | "groupIndex": 0, |
142 | "_rotationX": 0, | ||
143 | "_rotationY": 0, | ||
144 | "_id": "" | 143 | "_id": "" |
145 | }, | 144 | }, |
146 | { | 145 | { |
... | @@ -151,11 +150,6 @@ | ... | @@ -151,11 +150,6 @@ |
151 | "__id__": 2 | 150 | "__id__": 2 |
152 | }, | 151 | }, |
153 | "_enabled": true, | 152 | "_enabled": true, |
154 | "_materials": [ | ||
155 | { | ||
156 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
157 | } | ||
158 | ], | ||
159 | "_srcBlendFactor": 770, | 153 | "_srcBlendFactor": 770, |
160 | "_dstBlendFactor": 771, | 154 | "_dstBlendFactor": 771, |
161 | "_spriteFrame": { | 155 | "_spriteFrame": { |
... | @@ -172,6 +166,7 @@ | ... | @@ -172,6 +166,7 @@ |
172 | "_fillStart": 0, | 166 | "_fillStart": 0, |
173 | "_fillRange": 0, | 167 | "_fillRange": 0, |
174 | "_isTrimmedMode": true, | 168 | "_isTrimmedMode": true, |
169 | "_state": 0, | ||
175 | "_atlas": null, | 170 | "_atlas": null, |
176 | "_id": "" | 171 | "_id": "" |
177 | }, | 172 | }, |
... | @@ -218,7 +213,7 @@ | ... | @@ -218,7 +213,7 @@ |
218 | "_contentSize": { | 213 | "_contentSize": { |
219 | "__type__": "cc.Size", | 214 | "__type__": "cc.Size", |
220 | "width": 0, | 215 | "width": 0, |
221 | "height": 27.72 | 216 | "height": 22 |
222 | }, | 217 | }, |
223 | "_anchorPoint": { | 218 | "_anchorPoint": { |
224 | "__type__": "cc.Vec2", | 219 | "__type__": "cc.Vec2", |
... | @@ -228,27 +223,27 @@ | ... | @@ -228,27 +223,27 @@ |
228 | "_position": { | 223 | "_position": { |
229 | "__type__": "cc.Vec3", | 224 | "__type__": "cc.Vec3", |
230 | "x": 0, | 225 | "x": 0, |
231 | "y": -86.14, | 226 | "y": -62.3, |
232 | "z": 0 | 227 | "z": 0 |
233 | }, | 228 | }, |
234 | "_scale": { | 229 | "_scale": { |
235 | "__type__": "cc.Vec3", | 230 | "__type__": "cc.Vec3", |
236 | "x": 1, | 231 | "x": 0.7, |
237 | "y": 1, | 232 | "y": 0.7, |
238 | "z": 1 | 233 | "z": 1 |
239 | }, | 234 | }, |
240 | "_eulerAngles": { | 235 | "_rotationX": 0, |
241 | "__type__": "cc.Vec3", | 236 | "_rotationY": 0, |
237 | "_quat": { | ||
238 | "__type__": "cc.Quat", | ||
242 | "x": 0, | 239 | "x": 0, |
243 | "y": 0, | 240 | "y": 0, |
244 | "z": 0 | 241 | "z": 0, |
242 | "w": 1 | ||
245 | }, | 243 | }, |
246 | "_skewX": 0, | 244 | "_skewX": 0, |
247 | "_skewY": 0, | 245 | "_skewY": 0, |
248 | "_is3DNode": false, | ||
249 | "groupIndex": 0, | 246 | "groupIndex": 0, |
250 | "_rotationX": 0, | ||
251 | "_rotationY": 0, | ||
252 | "_id": "" | 247 | "_id": "" |
253 | }, | 248 | }, |
254 | { | 249 | { |
... | @@ -259,11 +254,6 @@ | ... | @@ -259,11 +254,6 @@ |
259 | "__id__": 5 | 254 | "__id__": 5 |
260 | }, | 255 | }, |
261 | "_enabled": true, | 256 | "_enabled": true, |
262 | "_materials": [ | ||
263 | { | ||
264 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
265 | } | ||
266 | ], | ||
267 | "_useOriginalSize": false, | 257 | "_useOriginalSize": false, |
268 | "_string": "", | 258 | "_string": "", |
269 | "_N$string": "", | 259 | "_N$string": "", |
... | @@ -295,7 +285,7 @@ | ... | @@ -295,7 +285,7 @@ |
295 | "_left": 0, | 285 | "_left": 0, |
296 | "_right": 0, | 286 | "_right": 0, |
297 | "_top": 0, | 287 | "_top": 0, |
298 | "_bottom": 10, | 288 | "_bottom": 7, |
299 | "_verticalCenter": 0, | 289 | "_verticalCenter": 0, |
300 | "_horizontalCenter": 0, | 290 | "_horizontalCenter": 0, |
301 | "_isAbsLeft": true, | 291 | "_isAbsLeft": true, |
... | @@ -362,27 +352,27 @@ | ... | @@ -362,27 +352,27 @@ |
362 | "_position": { | 352 | "_position": { |
363 | "__type__": "cc.Vec3", | 353 | "__type__": "cc.Vec3", |
364 | "x": 0, | 354 | "x": 0, |
365 | "y": 24.7, | 355 | "y": 10.7, |
366 | "z": 0 | 356 | "z": 0 |
367 | }, | 357 | }, |
368 | "_scale": { | 358 | "_scale": { |
369 | "__type__": "cc.Vec3", | 359 | "__type__": "cc.Vec3", |
370 | "x": 1, | 360 | "x": 0.7, |
371 | "y": 1, | 361 | "y": 0.7, |
372 | "z": 1 | 362 | "z": 1 |
373 | }, | 363 | }, |
374 | "_eulerAngles": { | 364 | "_rotationX": 0, |
375 | "__type__": "cc.Vec3", | 365 | "_rotationY": 0, |
366 | "_quat": { | ||
367 | "__type__": "cc.Quat", | ||
376 | "x": 0, | 368 | "x": 0, |
377 | "y": 0, | 369 | "y": 0, |
378 | "z": 0 | 370 | "z": 0, |
371 | "w": 1 | ||
379 | }, | 372 | }, |
380 | "_skewX": 0, | 373 | "_skewX": 0, |
381 | "_skewY": 0, | 374 | "_skewY": 0, |
382 | "_is3DNode": false, | ||
383 | "groupIndex": 0, | 375 | "groupIndex": 0, |
384 | "_rotationX": 0, | ||
385 | "_rotationY": 0, | ||
386 | "_id": "" | 376 | "_id": "" |
387 | }, | 377 | }, |
388 | { | 378 | { |
... | @@ -432,22 +422,22 @@ | ... | @@ -432,22 +422,22 @@ |
432 | }, | 422 | }, |
433 | "_scale": { | 423 | "_scale": { |
434 | "__type__": "cc.Vec3", | 424 | "__type__": "cc.Vec3", |
435 | "x": 1, | 425 | "x": 0.7, |
436 | "y": 1, | 426 | "y": 0.7, |
437 | "z": 1 | 427 | "z": 1 |
438 | }, | 428 | }, |
439 | "_eulerAngles": { | 429 | "_rotationX": 0, |
440 | "__type__": "cc.Vec3", | 430 | "_rotationY": 0, |
431 | "_quat": { | ||
432 | "__type__": "cc.Quat", | ||
441 | "x": 0, | 433 | "x": 0, |
442 | "y": 0, | 434 | "y": 0, |
443 | "z": 0 | 435 | "z": 0, |
436 | "w": 1 | ||
444 | }, | 437 | }, |
445 | "_skewX": 0, | 438 | "_skewX": 0, |
446 | "_skewY": 0, | 439 | "_skewY": 0, |
447 | "_is3DNode": false, | ||
448 | "groupIndex": 0, | 440 | "groupIndex": 0, |
449 | "_rotationX": 0, | ||
450 | "_rotationY": 0, | ||
451 | "_id": "" | 441 | "_id": "" |
452 | }, | 442 | }, |
453 | { | 443 | { |
... | @@ -458,7 +448,6 @@ | ... | @@ -458,7 +448,6 @@ |
458 | "__id__": 10 | 448 | "__id__": 10 |
459 | }, | 449 | }, |
460 | "_enabled": true, | 450 | "_enabled": true, |
461 | "_materials": [], | ||
462 | "_srcBlendFactor": 770, | 451 | "_srcBlendFactor": 770, |
463 | "_dstBlendFactor": 771, | 452 | "_dstBlendFactor": 771, |
464 | "_spriteFrame": null, | 453 | "_spriteFrame": null, |
... | @@ -473,6 +462,7 @@ | ... | @@ -473,6 +462,7 @@ |
473 | "_fillStart": 0, | 462 | "_fillStart": 0, |
474 | "_fillRange": 0, | 463 | "_fillRange": 0, |
475 | "_isTrimmedMode": true, | 464 | "_isTrimmedMode": true, |
465 | "_state": 0, | ||
476 | "_atlas": null, | 466 | "_atlas": null, |
477 | "_id": "" | 467 | "_id": "" |
478 | }, | 468 | }, |
... | @@ -522,11 +512,6 @@ | ... | @@ -522,11 +512,6 @@ |
522 | "__id__": 9 | 512 | "__id__": 9 |
523 | }, | 513 | }, |
524 | "_enabled": true, | 514 | "_enabled": true, |
525 | "_materials": [ | ||
526 | { | ||
527 | "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" | ||
528 | } | ||
529 | ], | ||
530 | "_spriteFrame": null, | 515 | "_spriteFrame": null, |
531 | "_type": 0, | 516 | "_type": 0, |
532 | "_segments": 64, | 517 | "_segments": 64, |
... | @@ -555,6 +540,7 @@ | ... | @@ -555,6 +540,7 @@ |
555 | "_enabled": true, | 540 | "_enabled": true, |
556 | "_iCellIndex": -1, | 541 | "_iCellIndex": -1, |
557 | "id": 0, | 542 | "id": 0, |
543 | "apkName": "", | ||
558 | "bg": { | 544 | "bg": { |
559 | "__id__": 3 | 545 | "__id__": 3 |
560 | }, | 546 | }, | ... | ... |
... | @@ -1202,13 +1202,14 @@ | ... | @@ -1202,13 +1202,14 @@ |
1202 | "sync": false | 1202 | "sync": false |
1203 | }, | 1203 | }, |
1204 | { | 1204 | { |
1205 | "__type__": "ed50d35S6JKUaVKplnKPkwd", | 1205 | "__type__": "92745XSFfFOD5u3F0tSYu9h", |
1206 | "_name": "", | 1206 | "_name": "", |
1207 | "_objFlags": 0, | 1207 | "_objFlags": 0, |
1208 | "node": { | 1208 | "node": { |
1209 | "__id__": 1 | 1209 | "__id__": 1 |
1210 | }, | 1210 | }, |
1211 | "_enabled": true, | 1211 | "_enabled": true, |
1212 | "_iCellIndex": -1, | ||
1212 | "id": 0, | 1213 | "id": 0, |
1213 | "_id": "" | 1214 | "_id": "" |
1214 | }, | 1215 | }, | ... | ... |
-
Please register or sign in to post a comment