fix some problem in STB
Showing
129 changed files
with
303 additions
and
45 deletions
... | @@ -2222,6 +2222,6 @@ | ... | @@ -2222,6 +2222,6 @@ |
2222 | "PFB_POP": { | 2222 | "PFB_POP": { |
2223 | "__uuid__": "8fc297a9-26e1-4936-aaa0-59dffbb57d8d" | 2223 | "__uuid__": "8fc297a9-26e1-4936-aaa0-59dffbb57d8d" |
2224 | }, | 2224 | }, |
2225 | "_id": "01a+mE585Ho7WhSVhlk2o5" | 2225 | "_id": "e8raHAVZ1MfIIaEBIDoVFh" |
2226 | } | 2226 | } |
2227 | ] | 2227 | ] |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
... | @@ -7,6 +7,7 @@ var TVScrollParameter = require('TVScrollParameter'); | ... | @@ -7,6 +7,7 @@ var TVScrollParameter = require('TVScrollParameter'); |
7 | var ListView = require('ListView'); | 7 | var ListView = require('ListView'); |
8 | var ListCell = require('ListCell'); | 8 | var ListCell = require('ListCell'); |
9 | var xmlToJSON = require('xmlToJSON'); | 9 | var xmlToJSON = require('xmlToJSON'); |
10 | var GlobalValue = require('GlobalValue'); | ||
10 | 11 | ||
11 | cc.Class({ | 12 | cc.Class({ |
12 | extends: TVCanvas, | 13 | extends: TVCanvas, |
... | @@ -37,14 +38,23 @@ cc.Class({ | ... | @@ -37,14 +38,23 @@ cc.Class({ |
37 | onLoad: function () { | 38 | onLoad: function () { |
38 | this._super(); | 39 | this._super(); |
39 | 40 | ||
41 | let oSceneParameter = this._cApplication.getTopSceneParameter(); | ||
42 | if (oSceneParameter) { | ||
43 | this._islandOrder = oSceneParameter.order-1; //当前位于哪个岛屿,岛屿从1开始排序,故需要-1 | ||
44 | } | ||
45 | |||
40 | this._aFocusTargets[1] = []; //弹窗焦点 | 46 | this._aFocusTargets[1] = []; //弹窗焦点 |
41 | this._iSceneStatus = 0; //焦点层级 | 47 | this._iSceneStatus = 0; //焦点层级 |
42 | this._remindString = this.node.getChildByName("Remind").getComponent(cc.Label); | 48 | this._remindString = this.node.getChildByName("Remind").getComponent(cc.Label); |
43 | this._progressString = cc.find("Progress/progress", this.node).getComponent(cc.Label); | 49 | this._progressString = cc.find("Progress/progress", this.node).getComponent(cc.Label); |
44 | this._progressBg = cc.find("Progress/scrollViewBg", this.node); | 50 | this._progressBg = cc.find("Progress/scrollViewBg", this.node); |
45 | this._progressBar = cc.find("Progress/scrollViewBg/scrollViewBar", this.node); | 51 | this._progressBar = cc.find("Progress/scrollViewBg/scrollViewBar", this.node); |
52 | cc.log("-------------------->"+this._islandOrder); | ||
53 | this.totalTask = GlobalValue.ISLAND_CONFIG[this._islandOrder].EXPLORE_TOTAL_TASK; //任务进度,根据配置表, | ||
54 | this._progressString.string = 20 * this.totalTask + "%"; //处理上方任务进度条 | ||
55 | this._progressBar.width = 20 * this.totalTask / 100 * 800; | ||
46 | 56 | ||
47 | this.totalTask = 0; //任务进度,根据配置表,每个 | 57 | cc.log("进来的任务进度表:" + this.totalTask); |
48 | this.bg_long = this.node.getChildByName("Bg_long"); | 58 | this.bg_long = this.node.getChildByName("Bg_long"); |
49 | // this.bg_long.getComponent(cc.Animation).play(); //播放动画 | 59 | // this.bg_long.getComponent(cc.Animation).play(); //播放动画 |
50 | // this.bg_long.getComponent(cc.Animation).stop(); //暂停播放动画 | 60 | // this.bg_long.getComponent(cc.Animation).stop(); //暂停播放动画 |
... | @@ -69,11 +79,11 @@ cc.Class({ | ... | @@ -69,11 +79,11 @@ cc.Class({ |
69 | this._nodeDialogList = cc.find("DialogList", this._nodeDialogListWrapper); | 79 | this._nodeDialogList = cc.find("DialogList", this._nodeDialogListWrapper); |
70 | // this._nodeDialogList.addComponent(TVScrollParameter); | 80 | // this._nodeDialogList.addComponent(TVScrollParameter); |
71 | 81 | ||
72 | cc.loader.loadRes("config/explore_config", function (err, str) { | 82 | cc.loader.loadRes("config/explore_config_json", function (err, str) { |
73 | var x2js = new xmlToJSON(); | 83 | // var x2js = new xmlToJSON(); |
74 | self._exploreConfig = x2js.xml_str2json(str); //解析xml | 84 | // self._exploreConfig = x2js.xml_str2json(str); //解析xml,打包APK崩溃,无法使用! |
75 | cc.log("解析后xml------------>" + JSON.stringify(self._exploreConfig)); | 85 | self._exploreConfig = str.json; |
76 | // cc.log("解析后xml------------>"+result.root.explore[0]["_choice2"]); | 86 | cc.log("解析后xml------------>" + JSON.stringify(str)); |
77 | }); | 87 | }); |
78 | 88 | ||
79 | this.initFocus(); | 89 | this.initFocus(); |
... | @@ -92,8 +102,8 @@ cc.Class({ | ... | @@ -92,8 +102,8 @@ cc.Class({ |
92 | '', true | 102 | '', true |
93 | ); | 103 | ); |
94 | 104 | ||
95 | var fiDiloaClose = cc.find("PopWindow/Close",this.node).addComponent(FocusInfo);// | 105 | var fiDiloaClose = cc.find("PopWindow/Close", this.node).addComponent(FocusInfo);// |
96 | this._aFocusTargets[1]['to_close_popwindow'] = cc.find("PopWindow/Close",this.node); | 106 | this._aFocusTargets[1]['to_close_popwindow'] = cc.find("PopWindow/Close", this.node); |
97 | fiDiloaClose.init( | 107 | fiDiloaClose.init( |
98 | '{"click": [{"action": "Close"}]}', true | 108 | '{"click": [{"action": "Close"}]}', true |
99 | ); | 109 | ); |
... | @@ -151,10 +161,10 @@ cc.Class({ | ... | @@ -151,10 +161,10 @@ cc.Class({ |
151 | if (0 == this._fiCurrentFocus.node.getName().indexOf('Next')) { | 161 | if (0 == this._fiCurrentFocus.node.getName().indexOf('Next')) { |
152 | this.nextTask(); | 162 | this.nextTask(); |
153 | break; | 163 | break; |
154 | }else if(0 == this._fiCurrentFocus.node.getName().indexOf('BackAScene')){ | 164 | } else if (0 == this._fiCurrentFocus.node.getName().indexOf('BackAScene')) { |
155 | this.backAScene(); | 165 | this.backAScene(); |
156 | } | 166 | } |
157 | this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | 167 | this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); |
158 | break; | 168 | break; |
159 | case cc.macro.KEY.backspace: | 169 | case cc.macro.KEY.backspace: |
160 | case Common.ANDROID_KEY.back: | 170 | case Common.ANDROID_KEY.back: |
... | @@ -174,14 +184,15 @@ cc.Class({ | ... | @@ -174,14 +184,15 @@ cc.Class({ |
174 | this.scheduleOnce(() => { | 184 | this.scheduleOnce(() => { |
175 | this._remindString.node.active = false; | 185 | this._remindString.node.active = false; |
176 | }, 3); | 186 | }, 3); |
177 | return ; | 187 | return; |
178 | } | 188 | } |
179 | this.bg_long.getComponent(cc.Animation).resume(); //播放动画 | 189 | this.bg_long.getComponent(cc.Animation).resume(); //播放动画 |
180 | this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation(); | 190 | this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation("Animation1"); |
181 | 191 | ||
182 | this.scheduleOnce(() => { | 192 | this.scheduleOnce(() => { |
183 | this.bg_long.getComponent(cc.Animation).pause(); //暂停播放动画 | 193 | this.bg_long.getComponent(cc.Animation).pause(); //暂停播放动画 |
184 | this.hero.getComponent(dragonBones.ArmatureDisplay)._armature.animation.stop(); | 194 | // this.hero.getComponent(dragonBones.ArmatureDisplay)._armature.animation.stop(); //APK不支持 |
195 | this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation("Animation1").stop(); | ||
185 | 196 | ||
186 | let randomNum = this.random(1, 7); | 197 | let randomNum = this.random(1, 7); |
187 | cc.log("随机数-------->" + randomNum); | 198 | cc.log("随机数-------->" + randomNum); |
... | @@ -220,24 +231,24 @@ cc.Class({ | ... | @@ -220,24 +231,24 @@ cc.Class({ |
220 | this.totalTask += 1; | 231 | this.totalTask += 1; |
221 | this._remindString.string = "恭喜您发现了宝箱!"; | 232 | this._remindString.string = "恭喜您发现了宝箱!"; |
222 | this._remindString.node.active = true; | 233 | this._remindString.node.active = true; |
223 | this._remindString.node.getChildByName("Box").active=true; | 234 | this._remindString.node.getChildByName("Box").active = true; |
224 | this.scheduleOnce(() => { | 235 | this.scheduleOnce(() => { |
225 | this._remindString.node.getChildByName("Box").active=false; | 236 | this._remindString.node.getChildByName("Box").active = false; |
226 | this._remindString.node.active = false; | 237 | this._remindString.node.active = false; |
227 | }, 2); | 238 | }, 2); |
228 | 239 | ||
229 | let popItem=cc.instantiate(this.PFB_POP); | 240 | let popItem = cc.instantiate(this.PFB_POP); |
230 | this.node.addChild(popItem,100); | 241 | this.node.addChild(popItem, 100); |
231 | this.node.anchorX=0; //解决飘窗显示位置不在屏幕中央的问题 | 242 | this.node.anchorX = 0; //解决飘窗显示位置不在屏幕中央的问题 |
232 | this.node.anchorY=0; | 243 | this.node.anchorY = 0; |
233 | function fadeOutBack(){ | 244 | function fadeOutBack() { |
234 | popItem.destroy(); //用完就销毁 | 245 | popItem.destroy(); //用完就销毁 |
235 | cc.log("处理飘窗彻底消失后的逻辑。。。。。。"); | 246 | cc.log("处理飘窗彻底消失后的逻辑。。。。。。"); |
236 | }; | 247 | }; |
237 | let fadeOut=cc.fadeOut(1.0); | 248 | let fadeOut = cc.fadeOut(1.0); |
238 | let moveBy=cc.moveBy(1,cc.v2(0,200)); | 249 | let moveBy = cc.moveBy(1, cc.v2(0, 200)); |
239 | popItem.runAction(moveBy); | 250 | popItem.runAction(moveBy); |
240 | popItem.runAction(cc.sequence(fadeOut,cc.callFunc(fadeOutBack))); | 251 | popItem.runAction(cc.sequence(fadeOut, cc.callFunc(fadeOutBack))); |
241 | } else if (type == 3) { //倒退事件,触发后地图探索进度减少 | 252 | } else if (type == 3) { //倒退事件,触发后地图探索进度减少 |
242 | this.totalTask += 1; | 253 | this.totalTask += 1; |
243 | this._remindString.string = "找到了捷径,进度增加20%"; | 254 | this._remindString.string = "找到了捷径,进度增加20%"; |
... | @@ -246,7 +257,7 @@ cc.Class({ | ... | @@ -246,7 +257,7 @@ cc.Class({ |
246 | this._remindString.node.active = false; | 257 | this._remindString.node.active = false; |
247 | }, 2); | 258 | }, 2); |
248 | } else if (type == 4) { //前进事件,触发后地图探索进度增加 | 259 | } else if (type == 4) { //前进事件,触发后地图探索进度增加 |
249 | if(this.totalTask>0) this.totalTask -= 1; | 260 | if (this.totalTask > 0) this.totalTask -= 1; |
250 | this._remindString.string = "迷路了,进度减少20%"; | 261 | this._remindString.string = "迷路了,进度减少20%"; |
251 | this._remindString.node.active = true; | 262 | this._remindString.node.active = true; |
252 | this.scheduleOnce(() => { | 263 | this.scheduleOnce(() => { |
... | @@ -264,8 +275,11 @@ cc.Class({ | ... | @@ -264,8 +275,11 @@ cc.Class({ |
264 | } | 275 | } |
265 | else if (this.totalTask >= 0) { | 276 | else if (this.totalTask >= 0) { |
266 | this._progressString.string = 20 * this.totalTask + "%"; | 277 | this._progressString.string = 20 * this.totalTask + "%"; |
267 | this._progressBar.width = 20 * this.totalTask / 100 * 800; | 278 | this._progressBar.width = 20 * this.totalTask / 100 * 800; //800是进度条长度 |
268 | cc.log("进度-----》" + this._progressBar.width); | 279 | // cc.log("进度-----》" + this._progressBar.width); |
280 | GlobalValue.ISLAND_CONFIG[this._islandOrder].PROGRESS_BAR_VALUE=20 * this.totalTask / 100; //20是:100/该岛屿一共的任务数量,这样暂且使用5个任务量 | ||
281 | GlobalValue.ISLAND_CONFIG[this._islandOrder].PROGRESS_LABEL_VALUE=this._progressString.string; | ||
282 | GlobalValue.ISLAND_CONFIG[this._islandOrder].EXPLORE_TOTAL_TASK = this.totalTask; | ||
269 | } | 283 | } |
270 | }, 5); | 284 | }, 5); |
271 | }, | 285 | }, | ... | ... |
... | @@ -10,6 +10,7 @@ var BusinessParameter = require('BusinessParameter'); | ... | @@ -10,6 +10,7 @@ var BusinessParameter = require('BusinessParameter'); |
10 | var ListView = require('ListView'); | 10 | var ListView = require('ListView'); |
11 | var ListCell = require('ListCell'); | 11 | var ListCell = require('ListCell'); |
12 | var GameLobbyCategoryJson = require('GameLobbyCategoryJson'); | 12 | var GameLobbyCategoryJson = require('GameLobbyCategoryJson'); |
13 | var GlobalValue = require('GlobalValue'); | ||
13 | 14 | ||
14 | cc.Class({ | 15 | cc.Class({ |
15 | extends: TVCanvas, | 16 | extends: TVCanvas, |
... | @@ -38,7 +39,7 @@ cc.Class({ | ... | @@ -38,7 +39,7 @@ cc.Class({ |
38 | 39 | ||
39 | onLoad: function () { | 40 | onLoad: function () { |
40 | this._super(); | 41 | this._super(); |
41 | 42 | ||
42 | this._aFocusTargets[1] = []; //任务弹窗焦点 | 43 | this._aFocusTargets[1] = []; //任务弹窗焦点 |
43 | this._aFocusTargets[2] = []; //成就弹窗焦点 | 44 | this._aFocusTargets[2] = []; //成就弹窗焦点 |
44 | this._aFocusTargets[3] = []; //活动大转盘弹窗 | 45 | this._aFocusTargets[3] = []; //活动大转盘弹窗 |
... | @@ -160,13 +161,29 @@ cc.Class({ | ... | @@ -160,13 +161,29 @@ cc.Class({ |
160 | initFocus: function () { | 161 | initFocus: function () { |
161 | 162 | ||
162 | //弄各个小岛焦点 | 163 | //弄各个小岛焦点 |
163 | for (let i = 1; i < 6; i++) { | 164 | for (let i = 1; i < 4; i++) { |
164 | let fiIslandSprite = cc.find("bgScrollView/viewport/content/island_" + i, this.node).addComponent(FocusInfo);// | 165 | let fiIslandSprite = cc.find("bgScrollView/viewport/content/island_" + i, this.node).addComponent(FocusInfo);// |
165 | this._aFocusTargets[0]['to_island' + i] = cc.find("bgScrollView/viewport/content/island_" + i, this.node); | 166 | this._aFocusTargets[0]['to_island' + i] = cc.find("bgScrollView/viewport/content/island_" + i, this.node); |
166 | fiIslandSprite.init( | 167 | fiIslandSprite.init( |
167 | '{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneExploreNew"}}]}', | 168 | '{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneExploreNew","order":"'+ i +'"}}]}', |
168 | true, null, null, 1 | 169 | true, null, null, 1 |
169 | ); | 170 | ); |
171 | |||
172 | //弄小岛下方的进度信息 | ||
173 | if(cc.find("scrollViewBg/scrollViewBar",fiIslandSprite.node) && cc.find("progress",fiIslandSprite.node)){ | ||
174 | 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; | ||
176 | cc.find("progress",fiIslandSprite.node).getComponent(cc.Label).string=GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_LABEL_VALUE; | ||
177 | } | ||
178 | |||
179 | if (i == 1) { | ||
180 | fiIslandSprite.setTVLink(""); | ||
181 | } | ||
182 | |||
183 | if (i == 3) { //这里是测试时使用数据,保证角色在第二个小岛上 | ||
184 | this.roleAnim.node.x = fiIslandSprite.node.x; | ||
185 | this.roleAnim.node.y = fiIslandSprite.node.y; | ||
186 | } | ||
170 | } | 187 | } |
171 | 188 | ||
172 | var fiActivitySprite = this.activitySprite.addComponent(FocusInfo);// | 189 | var fiActivitySprite = this.activitySprite.addComponent(FocusInfo);// |
... | @@ -244,8 +261,10 @@ cc.Class({ | ... | @@ -244,8 +261,10 @@ cc.Class({ |
244 | //小岛之间跳转需要处理ScrollView | 261 | //小岛之间跳转需要处理ScrollView |
245 | if (0 == fiFocusTarget.node.name.indexOf("island_")) { | 262 | if (0 == fiFocusTarget.node.name.indexOf("island_")) { |
246 | this._cFocus.hide(); | 263 | this._cFocus.hide(); |
264 | this.roleAnim.playAnimation("Animation1"); | ||
247 | } else { | 265 | } else { |
248 | this._cFocus.show(); | 266 | this._cFocus.show(); |
267 | this.roleAnim._armature.animation.stop(); | ||
249 | } | 268 | } |
250 | if (0 == this._fiCurrentFocus.node.name.indexOf("island_") && 0 == fiFocusTarget.node.name.indexOf("island_")) { | 269 | if (0 == this._fiCurrentFocus.node.name.indexOf("island_") && 0 == fiFocusTarget.node.name.indexOf("island_")) { |
251 | let index = fiFocusTarget.node.name.replace("island_", ""); | 270 | let index = fiFocusTarget.node.name.replace("island_", ""); |
... | @@ -340,7 +359,7 @@ cc.Class({ | ... | @@ -340,7 +359,7 @@ cc.Class({ |
340 | this.taskSprite.node.zIndex = 0; | 359 | this.taskSprite.node.zIndex = 0; |
341 | this.achievementSprite.node.zIndex = 0; | 360 | this.achievementSprite.node.zIndex = 0; |
342 | this.shopSprite.node.zIndex = 0; | 361 | this.shopSprite.node.zIndex = 0; |
343 | } else if (0 == this._fiCurrentFocus.node.getName().indexOf('spriteAchievement')) { //任务 | 362 | } else if (0 == this._fiCurrentFocus.node.getName().indexOf('spriteAchievement')) { //成就 |
344 | cc.find("achievement", this.node).active = true; | 363 | cc.find("achievement", this.node).active = true; |
345 | this._iSceneStatus = 2; | 364 | this._iSceneStatus = 2; |
346 | var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT); | 365 | var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT); |
... | @@ -381,7 +400,8 @@ cc.Class({ | ... | @@ -381,7 +400,8 @@ cc.Class({ |
381 | var fiFocusTarget = this.activitySprite.getComponent(FocusInfo); | 400 | var fiFocusTarget = this.activitySprite.getComponent(FocusInfo); |
382 | this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_UP, null, null); | 401 | this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_UP, null, null); |
383 | } else if (0 == this._fiCurrentFocus.node.getName().indexOf('PointerButton')) { | 402 | } else if (0 == this._fiCurrentFocus.node.getName().indexOf('PointerButton')) { |
384 | this.pointerButtonStartControl(); | 403 | if (!GlobalValue.ACTIVITY_IS_TURN) |
404 | this.pointerButtonStartControl(); | ||
385 | } else | 405 | } else |
386 | this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | 406 | this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); |
387 | break; | 407 | break; |
... | @@ -411,28 +431,30 @@ cc.Class({ | ... | @@ -411,28 +431,30 @@ cc.Class({ |
411 | 431 | ||
412 | 432 | ||
413 | var adValue = 9; //这里应该灵活获取角度 | 433 | var adValue = 9; //这里应该灵活获取角度 |
414 | var self=this; | 434 | var self = this; |
415 | function infoDelayShow() { | 435 | function infoDelayShow() { |
416 | _this.scheduleOnce(function () { | 436 | _this.scheduleOnce(function () { |
417 | cc.log("转盘转动结束,可以处理一些逻辑啦。。。"); | 437 | cc.log("转盘转动结束,可以处理一些逻辑啦。。。"); |
438 | GlobalValue.ACTIVITY_IS_TURN = true; | ||
439 | this.pointerButton.getComponent(FocusInfo).setEnable(false); | ||
418 | cc.loader.loadRes("game/main/turntable_tomorrow", cc.Texture2D, function (err, texture) { | 440 | cc.loader.loadRes("game/main/turntable_tomorrow", cc.Texture2D, function (err, texture) { |
419 | self.pointerButton.spriteFrame = new cc.SpriteFrame(texture); | 441 | self.pointerButton.spriteFrame = new cc.SpriteFrame(texture); |
420 | }); | 442 | }); |
421 | var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT); | 443 | var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT); |
422 | this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_LEFT, null, null); | 444 | this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_LEFT, null, null); |
423 | 445 | ||
424 | let popItem=cc.instantiate(this.PFB_POP); | 446 | let popItem = cc.instantiate(this.PFB_POP); |
425 | this.node.addChild(popItem,100); | 447 | this.node.addChild(popItem, 100); |
426 | this.node.anchorX=0; //解决飘窗显示位置不在屏幕中央的问题 | 448 | this.node.anchorX = 0; //解决飘窗显示位置不在屏幕中央的问题 |
427 | this.node.anchorY=0; | 449 | this.node.anchorY = 0; |
428 | function fadeOutBack(){ | 450 | function fadeOutBack() { |
429 | popItem.destroy(); //用完就销毁 | 451 | popItem.destroy(); //用完就销毁 |
430 | cc.log("处理飘窗彻底消失后的逻辑。。。。。。"); | 452 | cc.log("处理飘窗彻底消失后的逻辑。。。。。。"); |
431 | }; | 453 | }; |
432 | let fadeOut=cc.fadeOut(1.0); | 454 | let fadeOut = cc.fadeOut(1.0); |
433 | let moveBy=cc.moveBy(1,cc.v2(0,200)); | 455 | let moveBy = cc.moveBy(1, cc.v2(0, 200)); |
434 | popItem.runAction(moveBy); | 456 | popItem.runAction(moveBy); |
435 | popItem.runAction(cc.sequence(fadeOut,cc.callFunc(fadeOutBack))); | 457 | popItem.runAction(cc.sequence(fadeOut, cc.callFunc(fadeOutBack))); |
436 | }, clickTimes + 0.5); | 458 | }, clickTimes + 0.5); |
437 | }; | 459 | }; |
438 | 460 | ... | ... |
assets/Script/GlobalValue.js
0 → 100644
1 | //保存全局变量 | ||
2 | |||
3 | module.exports = { | ||
4 | ACTIVITY_IS_TURN: false, | ||
5 | ISLAND_CONFIG: [ | ||
6 | {EXPLORE_TOTAL_TASK: 0 ,PROGRESS_BAR_VALUE:0,PROGRESS_LABEL_VALUE:"0%"}, | ||
7 | {EXPLORE_TOTAL_TASK: 5,PROGRESS_BAR_VALUE:"1",PROGRESS_LABEL_VALUE:"100%"}, | ||
8 | {EXPLORE_TOTAL_TASK: 0,PROGRESS_BAR_VALUE:"0",PROGRESS_LABEL_VALUE:"0%"}, | ||
9 | {EXPLORE_TOTAL_TASK: 0,PROGRESS_BAR_VALUE:"0",PROGRESS_LABEL_VALUE:"0%"}, | ||
10 | {EXPLORE_TOTAL_TASK: 0,PROGRESS_BAR_VALUE:"0",PROGRESS_LABEL_VALUE:"0%"}, | ||
11 | ], | ||
12 | } |
assets/Script/GlobalValue.js.meta
0 → 100644
1 | { | ||
2 | "root": { | ||
3 | "explore": [{ | ||
4 | "_id": "1", | ||
5 | "_id2": "1", | ||
6 | "_name": "555,没人陪我玩,好寂寞。", | ||
7 | "_type": "1", | ||
8 | "_map": "1", | ||
9 | "_choice1": "陪陪蜥蜴,和它交朋友", | ||
10 | "_choice2": "陪它去看《小猪佩奇》,开朗的孩子朋友多。", | ||
11 | "_function": "1:500054", | ||
12 | "_image": "xiyi.png", | ||
13 | "_reward": "10001:100" | ||
14 | }, { | ||
15 | "_id": "2", | ||
16 | "_id2": "1", | ||
17 | "_name": "555,没人陪我玩,好寂寞。", | ||
18 | "_type": "2", | ||
19 | "_map": "1", | ||
20 | "_choice1": "陪陪蜥蜴,和它交朋友", | ||
21 | "_choice2": "去玩叠蛋糕给它看,这个小游戏可好玩了!", | ||
22 | "_function": "2:300056", | ||
23 | "_image": "xiyi.png", | ||
24 | "_reward": "10001:100" | ||
25 | }, { | ||
26 | "_id": "3", | ||
27 | "_id2": "1", | ||
28 | "_name": "555,没人陪我玩,好寂寞。", | ||
29 | "_type": "2", | ||
30 | "_map": "1", | ||
31 | "_choice1": "陪陪蜥蜴,和它交朋友", | ||
32 | "_choice2": "和小狗一起听儿歌:工程车之歌", | ||
33 | "_function": "3:18897", | ||
34 | "_image": "xiyi.png", | ||
35 | "_reward": "10001:100" | ||
36 | }, { | ||
37 | "_id": "4", | ||
38 | "_id2": "1", | ||
39 | "_name": "555,没人陪我玩,好寂寞。", | ||
40 | "_type": "1", | ||
41 | "_map": "1", | ||
42 | "_choice1": "我想和别的小动物一起玩。", | ||
43 | "_choice2": "", | ||
44 | "_function": "1:500054", | ||
45 | "_image": "xiyi.png", | ||
46 | "_reward": "10001:100" | ||
47 | }, { | ||
48 | "_id": "5", | ||
49 | "_id2": "1", | ||
50 | "_name": "捡到一个宝箱。", | ||
51 | "_type": "2", | ||
52 | "_map": "1", | ||
53 | "_choice1": "", | ||
54 | "_choice2": "", | ||
55 | "_function": "1:500054", | ||
56 | "_image": "baoxiang.png", | ||
57 | "_reward": "10001:100" | ||
58 | }, { | ||
59 | "_id": "6", | ||
60 | "_id2": "1", | ||
61 | "_name": "迷路了,进度减少10%", | ||
62 | "_type": "3", | ||
63 | "_map": "1", | ||
64 | "_choice1": "", | ||
65 | "_choice2": "", | ||
66 | "_function": "1:500054", | ||
67 | "_image": "xiyi.png", | ||
68 | "_reward": "10001:100" | ||
69 | }, { | ||
70 | "_id": "7", | ||
71 | "_id2": "1", | ||
72 | "_name": "找到了捷径,进度增加10%", | ||
73 | "_type": "4", | ||
74 | "_map": "1", | ||
75 | "_choice1": "", | ||
76 | "_choice2": "", | ||
77 | "_function": "1:500054", | ||
78 | "_image": "xiyi.png", | ||
79 | "_reward": "10001:100" | ||
80 | }] | ||
81 | } | ||
82 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/game/explore_plus1.png
0 → 100644

63 KB
assets/resources/game/explore_plus1.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "154f1aad-5677-4723-a6ea-bed25fb67b49", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "explore_plus1": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "2a6ce217-b4e3-4c8e-8b70-c8b93ef28c80", | ||
12 | "rawTextureUuid": "154f1aad-5677-4723-a6ea-bed25fb67b49", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 912, | ||
21 | "height": 1110, | ||
22 | "rawWidth": 912, | ||
23 | "rawHeight": 1110, | ||
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/explore_plus2.png
0 → 100644

77.6 KB
assets/resources/game/explore_plus2.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "08ea60a8-ed09-414d-aa25-34e6139d2942", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "explore_plus2": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "b9ee3250-661a-448e-8e7b-cf4dd91afe8e", | ||
12 | "rawTextureUuid": "08ea60a8-ed09-414d-aa25-34e6139d2942", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 1520, | ||
21 | "height": 720, | ||
22 | "rawWidth": 1520, | ||
23 | "rawHeight": 720, | ||
24 | "borderTop": 0, | ||
25 | "borderBottom": 0, | ||
26 | "borderLeft": 0, | ||
27 | "borderRight": 0, | ||
28 | "subMetas": {} | ||
29 | } | ||
30 | } | ||
31 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/game/main/pet_turn_lock.png
0 → 100644

2.93 KB
1 | { | ||
2 | "ver": "2.2.0", | ||
3 | "uuid": "140f4c32-0cb9-40f9-bf70-9b74aa4d8d3a", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "subMetas": { | ||
9 | "pet_turn_lock": { | ||
10 | "ver": "1.0.4", | ||
11 | "uuid": "c8b5b75c-c8ca-4860-862a-41248d4b9009", | ||
12 | "rawTextureUuid": "140f4c32-0cb9-40f9-bf70-9b74aa4d8d3a", | ||
13 | "trimType": "auto", | ||
14 | "trimThreshold": 1, | ||
15 | "rotated": false, | ||
16 | "offsetX": 0, | ||
17 | "offsetY": 0, | ||
18 | "trimX": 0, | ||
19 | "trimY": 0, | ||
20 | "width": 241, | ||
21 | "height": 42, | ||
22 | "rawWidth": 241, | ||
23 | "rawHeight": 42, | ||
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.
This diff is collapsed.
Click to expand it.
This file is too large to display.
build/jsb-link/res/import/02/020b46e63.json
0 → 100644
This diff is collapsed.
Click to expand it.
build/jsb-link/res/import/03/034fffa68.json
0 → 100644
1 | [{"__type__":"cc.SpriteFrame","content":{"name":"bg_task_item_1","texture":"6b+6sTA5JJAou1NUpkwXEr","rect":[0,0,1003,153],"offset":[-0.5,0.5],"originalSize":[1004,154],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"icon_game","texture":"06aiKs/IdIY7eaqBnflrl7","rect":[18,9,98,98],"offset":[5,-2.5],"originalSize":[124,111],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"bg_task_progress","texture":"b1cU6OvERHYKd0giyGac9p","rect":[0,0,148,28],"offset":[0,0],"originalSize":[148,28],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"bg_task_progress_bar","texture":"40Di7kj65J7YyKDsv6GepU","rect":[3,3,142,22],"offset":[0,0],"originalSize":[148,28],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"btn_get_reward","texture":"98P/XBEkxNfINwQEn0OqtM","rect":[0,0,136,48],"offset":[0,0],"originalSize":[136,48],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"100001","texture":"58x6u/kDlECqmYaQxKWClz","rect":[14,14,52,54],"offset":[0,-1],"originalSize":[80,80],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"pfbGameTaskItemCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbGameTaskItemCell","_children":[{"__id__":2},{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":6},{"__id__":7},{"__id__":8},{"__id__":9},{"__id__":10},{"__id__":11}],"_level":1,"_components":[{"__type__":"92745XSFfFOD5u3F0tSYu9h","node":{"__id__":1}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"43je+l5UZHppZNWqV9PaIl"},"_contentSize":{"__type__":"cc.Size","width":700,"height":107}},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"55WLJhs7FJMq7sX9fIWf7L"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"592x6ksi9BRrRAJCVkUIic"},"_contentSize":{"__type__":"cc.Size","width":1003,"height":153},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"6c5xQ+kNVL2qFQ90CQZh7/"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"81aYx3VhZAypzcXPrrCMiZ"},"_contentSize":{"__type__":"cc.Size","width":98,"height":98},"_position":{"__type__":"cc.Vec3","x":-300,"y":5},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1},"_rotationX":5,"_rotationY":5,"_quat":{"__type__":"cc.Quat","z":-0.043619387365336,"w":0.9990482215818578}},{"__type__":"cc.Node","_name":"txt_title","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_string":"玩小游戏","_N$string":"玩小游戏","_fontSize":32,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"d8myqG4xFEjZjR5/e+deRr"},"_color":{"__type__":"cc.Color","r":151,"g":86,"b":43},"_contentSize":{"__type__":"cc.Size","width":300,"height":40},"_position":{"__type__":"cc.Vec3","x":-147,"y":29},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"txt_desc","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":5},"_useOriginalSize":false,"_string":"玩小游戏,获得奖励","_N$string":"玩小游戏,获得奖励","_fontSize":24,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"2aoUNBLSJPyodfXGk0lcpq"},"_color":{"__type__":"cc.Color","r":166,"g":105,"b":45},"_contentSize":{"__type__":"cc.Size","width":400,"height":40},"_position":{"__type__":"cc.Vec3","x":-113,"y":-18},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"bg_task_progress","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"707YNuE4pFPIvA342LU69X"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"f2hMaj6TNE1Lfk9BP0YZY2"},"_contentSize":{"__type__":"cc.Size","width":148,"height":28},"_position":{"__type__":"cc.Vec3","x":253.4,"y":28.3},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"bg_task_progress_bar","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"72AmEdU39K+K8fS/m2Piqy"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"b2OwCWKi9Lp5htQ0oeu+QB"},"_contentSize":{"__type__":"cc.Size","width":142,"height":22},"_position":{"__type__":"cc.Vec3","x":253.2,"y":27.9},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"txt_progress","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":8},"_useOriginalSize":false,"_string":"2/5","_N$string":"2/5","_fontSize":20,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"35UE3RIYNPb4C/FpDrW9YN"},"_color":{"__type__":"cc.Color","g":107,"b":105},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_position":{"__type__":"cc.Vec3","x":255,"y":27},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"100001","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":9},"_spriteFrame":{"__uuid__":"b6x0S9eaFKm6gPF3wBI816"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"2axIrBgdRAuK1OEEb7y5oa"},"_contentSize":{"__type__":"cc.Size","width":52,"height":54},"_position":{"__type__":"cc.Vec3","x":80,"y":-14},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"txt_num","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":10},"_useOriginalSize":false,"_string":"x10000","_N$string":"x10000","_fontSize":24,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"e5tUYqvpBEwofqG+AljulE"},"_color":{"__type__":"cc.Color","r":255,"g":126},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_position":{"__type__":"cc.Vec3","x":168,"y":-12},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"btn_get_reward","_parent":{"__id__":1},"_children":[{"__id__":12}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":11},"_spriteFrame":{"__uuid__":"aapAK/7iBDoZhAwdPN7myY"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"4cHPmFpxJB7KVFPZSy5bY3"},"_contentSize":{"__type__":"cc.Size","width":136,"height":48},"_position":{"__type__":"cc.Vec3","x":251.7,"y":-13.1},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":11},"_level":3,"_components":[{"__type__":"cc.Label","node":{"__id__":12},"_useOriginalSize":false,"_string":"领取奖励","_N$string":"领取奖励","_fontSize":24,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d6hRODiTlCpI76asK0WTow"},"fileId":"8f9Z8tBO1P0IZn4+IqAZX5"},"_color":{"__type__":"cc.Color","r":190,"g":86,"b":10},"_contentSize":{"__type__":"cc.Size","width":96,"height":40}}]] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
This diff is collapsed.
Click to expand it.
build/jsb-link/res/import/05/05d219335.json
0 → 100644
1 | [[{"__type__":"cc.Prefab","_name":"pfbGameAchievementCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbGameAchievementCell","_children":[{"__id__":2},{"__id__":4},{"__id__":5},{"__id__":7},{"__id__":9},{"__id__":10}],"_level":1,"_components":[{"__type__":"d6ed0t89AFMVrgmEXmL99iM","node":{"__id__":1},"bg":{"__id__":3},"starName":{"__id__":6},"pic":{"__id__":8}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"27etC+ZVVOYZnJudRHXFbJ"},"_contentSize":{"__type__":"cc.Size","width":130,"height":150}},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"86Tty55gJOdruyfqc8Q4C0"},"_contentSize":{"__type__":"cc.Size","width":207,"height":246},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"73ECazKgBKIoezuWowOuth"}},{"__type__":"cc.Node","_name":"Selected","_parent":{"__id__":1},"_active":false,"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"f6UHL6iU5GeaOv/r9qGA79"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"d0u02q2o5DwLaDjQlhvUc7"},"_contentSize":{"__type__":"cc.Size","width":219,"height":258},"_position":{"__type__":"cc.Vec3","x":2,"y":-2},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"Text","_parent":{"__id__":1},"_components":[{"__id__":6},{"__type__":"cc.Widget","node":{"__id__":5},"alignMode":0,"_alignFlags":4,"_bottom":121.5}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"47SvBdlfRC5439WouRfxN7"},"_contentSize":{"__type__":"cc.Size","width":120,"height":30},"_position":{"__type__":"cc.Vec3","y":55.5},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Label","node":{"__id__":5},"_useOriginalSize":false,"_string":"爱宠天使","_N$string":"爱宠天使","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"Pic","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":8},{"__type__":"cc.Widget","node":{"__id__":7},"alignMode":0,"_bottom":-10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"cdX6PwTxFK67huEiO1ccbD"},"_contentSize":{"__type__":"cc.Size","width":120,"height":121},"_position":{"__type__":"cc.Vec3","x":-0.49,"y":0.2},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"b7RnUaOcVBsodDsdEaBKS7"}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":9},"_useOriginalSize":false,"_string":"(充值点券30)","_N$string":"(充值点券30)","_fontSize":18,"_lineHeight":18,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"aa1SLLmUlPuIxKBAusVKc1"},"_color":{"__type__":"cc.Color","r":34,"g":95,"b":148},"_contentSize":{"__type__":"cc.Size","width":104.01,"height":18},"_position":{"__type__":"cc.Vec3","y":-42.4},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":1},"_children":[{"__id__":11},{"__id__":12}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":10},"_spriteFrame":{"__uuid__":"2c9YzDw9hH6oUj2zdm9x5g"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"387pPShUBEt4uZKa9AGIBQ"},"_contentSize":{"__type__":"cc.Size","width":173,"height":26},"_position":{"__type__":"cc.Vec3","x":1.6,"y":-57.900000000000006},"_scale":{"__type__":"cc.Vec3","x":0.5,"y":0.5,"z":1}},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":10},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":11},"_spriteFrame":{"__uuid__":"43Fl0wcR5HPJXHXDdBHcZC"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"d4q9leIVRF3o2QBCzau4EW"},"_contentSize":{"__type__":"cc.Size","width":169,"height":22}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":10},"_level":3,"_components":[{"__type__":"cc.Label","node":{"__id__":12},"_useOriginalSize":false,"_string":"2/3","_N$string":"2/3","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"1dyh9OacdA+bA3DHLQz5nG"},"fileId":"a3uK8cULhB84IAfQMDezeF"},"_contentSize":{"__type__":"cc.Size","width":27.8,"height":20}}],{"__type__":"cc.SpriteFrame","content":{"name":"bg_achievement_progress","texture":"02TD0JGTFDpaOJ/sVt/WbZ","rect":[0,0,173,26],"offset":[0,0],"originalSize":[173,26],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"achievement_progress_bar","texture":"18cA3mI3ZL1qUVaifGfv51","rect":[2,1,169,22],"offset":[0,1],"originalSize":[173,26],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"bg_achievement_item","texture":"11D5NZzbFFlLKpj2CV8UKv","rect":[0,0,207,246],"offset":[0,0],"originalSize":[207,246],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"1_1","texture":"9eqg4nKIFCZK3JJxlrYmqX","rect":[0,0,120,121],"offset":[0,0],"originalSize":[120,121],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"be_achievement_item_select","texture":"61wKyVF2BJeLnqQT/hRVn8","rect":[0,0,219,258],"offset":[0,0],"originalSize":[219,258],"capInsets":[0,0,0,0]}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"type":"cc.Texture2D","data":"0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0"} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"type":"cc.Texture2D","data":"0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0"} | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
build/jsb-link/res/import/07/0792aac26.json
0 → 100644
1 | [{"__type__":"cc.SpriteFrame","content":{"name":"bg_shop_item_icon","texture":"76ijy+6ipBKpkVW6IG8hIL","rect":[0,0,75,75],"offset":[0,0],"originalSize":[75,75],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"600001","texture":"40n2DRIVZOSqTz0emCh4Vk","rect":[11,11,61,61],"offset":[1.5,-1.5],"originalSize":[80,80],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"pfbPopItemCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbShowCategory","_children":[{"__id__":2},{"__id__":3},{"__id__":4},{"__id__":5}],"_level":1,"_components":[{"__type__":"cc.Widget","node":{"__id__":1},"_alignFlags":9,"_left":-249.5,"_top":665.5}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"8fwpepJuFJNqqgWd/7tX2N"},"fileId":"f3FKYd7SJEvrs4s48MPI1G"},"_contentSize":{"__type__":"cc.Size","width":499,"height":109}},{"__type__":"cc.Node","_name":"New Sprite(Splash)","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"8fwpepJuFJNqqgWd/7tX2N"},"fileId":"e4M4WCL31CNrUEnnaC/ZIS"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":499,"height":109}},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"20oJhJT6xBWatFZVAeD5Rb"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"8fwpepJuFJNqqgWd/7tX2N"},"fileId":"29CRPS5n1LD55GZeLNDFrY"},"_contentSize":{"__type__":"cc.Size","width":75,"height":75},"_position":{"__type__":"cc.Vec3","x":-132}},{"__type__":"cc.Node","_name":"Pic","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"43fQYShYNG0K11RqQAaAu7"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"8fwpepJuFJNqqgWd/7tX2N"},"fileId":"38ud78dPJMv4KKCPooxuqe"},"_contentSize":{"__type__":"cc.Size","width":61,"height":61},"_position":{"__type__":"cc.Vec3","x":-133}},{"__type__":"cc.Node","_name":"Txt","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":5},"_useOriginalSize":false,"_string":"获取宠物饼干*7200","_N$string":"获取宠物饼干*7200","_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"8fwpepJuFJNqqgWd/7tX2N"},"fileId":"a0QHVGyY1JEbOrO+g9hWvC"},"_contentSize":{"__type__":"cc.Size","width":300,"height":40},"_position":{"__type__":"cc.Vec3","x":66}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
build/jsb-link/res/import/07/07e162edb.json
0 → 100644
1 | [{"__type__":"cc.SpriteFrame","content":{"name":"explore_bg_a","texture":"66rIay83JIvoPNZzlSFMsq","rect":[0,0,1820,720],"offset":[0,0],"originalSize":[1820,720],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"explore_bg_b","texture":"28ryCNjh1JiqdVBlp/OPA6","rect":[0,0,1820,720],"offset":[0,0],"originalSize":[1820,720],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"sceneExplore","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"_scale":{"__type__":"cc.Vec3","x":0.13871663973241932,"y":0.13871663973241932,"z":1},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":6},{"__id__":7}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1280,"height":720}},{"__type__":"856cf23YdtFzKounHiG7WR5","node":{"__id__":2}}],"_contentSize":{"__type__":"cc.Size","width":1280,"height":720},"_position":{"__type__":"cc.Vec3","x":640,"y":360},"_id":"a1Dzl/aJtJ+r17kFiMwPbz"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_level":1,"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}]},{"__type__":"cc.Node","_name":"bg_1","_parent":{"__id__":2},"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_srcBlendFactor":1,"_dstBlendFactor":769,"_spriteFrame":{"__uuid__":"148VmcA2xIbav1s1Zu058V"}},{"__type__":"cc.Widget","node":{"__id__":4},"_alignFlags":8}],"_contentSize":{"__type__":"cc.Size","width":1820,"height":720},"_position":{"__type__":"cc.Vec3","x":270}},{"__type__":"cc.Node","_name":"bg_2","_parent":{"__id__":2},"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_srcBlendFactor":1,"_spriteFrame":{"__uuid__":"98d0XdA9ZN5bmOHV51yfLT"}},{"__type__":"cc.Widget","node":{"__id__":5},"_alignFlags":8,"_left":1820}],"_contentSize":{"__type__":"cc.Size","width":1820,"height":720},"_position":{"__type__":"cc.Vec3","x":2090,"y":-2.2737367544323206e-13}},{"__type__":"cc.Node","_name":"hero","_parent":{"__id__":2},"_level":1,"_components":[{"__type__":"dragonBones.ArmatureDisplay","node":{"__id__":6},"_armatureName":"armatureName","_animationName":"Animation1","_preCacheMode":0,"_armatureKey":"e3ad9b78-ae63-4929-81c2-5781ca616f08#cdd960ea-e3ab-4991-a37d-3f8f88243de7","_N$dragonAsset":{"__uuid__":"e3rZt4rmNJKYHCV4HKYW8I"},"_N$dragonAtlasAsset":{"__uuid__":"cd2WDq46tJkaN9P4+IJD3n"}}],"_position":{"__type__":"cc.Vec3","x":-217,"y":-144}},{"__type__":"cc.Node","_name":"testmap","_parent":{"__id__":2},"_children":[{"__id__":8}],"_level":1,"_components":[{"__type__":"cc.TiledMap","node":{"__id__":7},"_tmxFile":{"__uuid__":"1claHEeNlGwLCSVngPYk07"}}],"_contentSize":{"__type__":"cc.Size","width":3648,"height":320},"_position":{"__type__":"cc.Vec3","x":1185,"y":4}},{"__type__":"cc.Node","_name":"Animal","_parent":{"__id__":7},"_level":2,"_components":[{"__type__":"cc.TiledLayer","node":{"__id__":8}}],"_contentSize":{"__type__":"cc.Size","width":3648,"height":320}}]] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | [[{"__type__":"cc.Prefab","_name":"pfbGameCategoryListCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbStarCategoryListCell","_children":[{"__id__":2},{"__id__":4},{"__id__":6}],"_level":1,"_components":[{"__type__":"041c1c6/NNH9Lz0dMm1Bx73","node":{"__id__":1},"bg":{"__id__":3},"starName":{"__id__":5},"pic":{"__id__":8}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"27etC+ZVVOYZnJudRHXFbJ"},"_contentSize":{"__type__":"cc.Size","width":220,"height":220}},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"86Tty55gJOdruyfqc8Q4C0"},"_contentSize":{"__type__":"cc.Size","width":214,"height":214}},{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"d4surbe+dOTLTc5CBA46vT"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Text","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":4},"alignMode":0,"_alignFlags":4,"_bottom":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"47SvBdlfRC5439WouRfxN7"},"_contentSize":{"__type__":"cc.Size","height":27.72},"_position":{"__type__":"cc.Vec3","y":-86.14}},{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_fontSize":22,"_lineHeight":22,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"PicWrapper","_parent":{"__id__":1},"_children":[{"__id__":7}],"_components":[{"__type__":"cc.Mask","node":{"__id__":6},"_N$alphaThreshold":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"bbVVQfhsZKpaOBw/dWklQT"},"_contentSize":{"__type__":"cc.Size","width":201,"height":183},"_position":{"__type__":"cc.Vec3","y":24.7}},{"__type__":"cc.Node","_name":"Pic","_parent":{"__id__":6},"_components":[{"__id__":8},{"__type__":"cc.Widget","node":{"__id__":7},"alignMode":0,"_bottom":-10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"19ee1+uHFK5ZehQeRYOSz5"},"_contentSize":{"__type__":"cc.Size","width":201,"height":183},"_position":{"__type__":"cc.Vec3","x":-0.7,"y":-15}},{"__type__":"cc.Sprite","node":{"__id__":7},"_sizeMode":0}],{"__type__":"cc.SpriteFrame","content":{"name":"bg_item_1","texture":"9asJfrZaNHjIDYuiIFlFqr","rect":[0,0,308,314],"offset":[0,0],"originalSize":[308,314],"capInsets":[0,0,0,0]}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | [[{"__type__":"cc.Prefab","_name":"pfbGameCategoryListCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbStarCategoryListCell","_children":[{"__id__":2},{"__id__":4},{"__id__":6}],"_level":1,"_components":[{"__type__":"041c1c6/NNH9Lz0dMm1Bx73","node":{"__id__":1},"bg":{"__id__":3},"starName":{"__id__":5},"pic":{"__id__":8}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"27etC+ZVVOYZnJudRHXFbJ"},"_contentSize":{"__type__":"cc.Size","width":154,"height":154}},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"86Tty55gJOdruyfqc8Q4C0"},"_contentSize":{"__type__":"cc.Size","width":214,"height":214},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"d4surbe+dOTLTc5CBA46vT"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Text","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":4},"alignMode":0,"_alignFlags":4,"_bottom":7}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"47SvBdlfRC5439WouRfxN7"},"_contentSize":{"__type__":"cc.Size","height":22},"_position":{"__type__":"cc.Vec3","y":-62.3},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_fontSize":22,"_lineHeight":22,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"PicWrapper","_parent":{"__id__":1},"_children":[{"__id__":7}],"_components":[{"__type__":"cc.Mask","node":{"__id__":6},"_N$alphaThreshold":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"bbVVQfhsZKpaOBw/dWklQT"},"_contentSize":{"__type__":"cc.Size","width":201,"height":183},"_position":{"__type__":"cc.Vec3","y":10.7},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Node","_name":"Pic","_parent":{"__id__":6},"_components":[{"__id__":8},{"__type__":"cc.Widget","node":{"__id__":7},"alignMode":0,"_bottom":-10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"d3SGKeMVlKKaDQV8GczB2H"},"fileId":"19ee1+uHFK5ZehQeRYOSz5"},"_contentSize":{"__type__":"cc.Size","width":201,"height":183},"_position":{"__type__":"cc.Vec3","x":-0.7,"y":-15},"_scale":{"__type__":"cc.Vec3","x":0.7,"y":0.7,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":7},"_sizeMode":0}],{"__type__":"cc.SpriteFrame","content":{"name":"bg_item_1","texture":"9asJfrZaNHjIDYuiIFlFqr","rect":[0,0,308,314],"offset":[0,0],"originalSize":[308,314],"capInsets":[0,0,0,0]}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
1 | [{"__type__":"cc.Prefab","_name":"pfbCommonCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbShowCategory","_children":[{"__id__":2}],"_level":1,"_components":[{"__type__":"cc.Widget","node":{"__id__":1},"_alignFlags":9,"_left":-20,"_top":702},{"__type__":"43a14tHFN5CvrH8W3z8wxz4","node":{"__id__":1},"pic":{"__id__":3}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0amshbbYpJi5LO0bNbCSkg"},"fileId":"f3FKYd7SJEvrs4s48MPI1G"},"_contentSize":{"__type__":"cc.Size","width":40,"height":36}},{"__type__":"cc.Node","_name":"Pic","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0amshbbYpJi5LO0bNbCSkg"},"fileId":"cahAospA9KiZ8bJwfuwSSJ"},"_contentSize":{"__type__":"cc.Size","width":40,"height":36}},{"__type__":"cc.Sprite","node":{"__id__":2}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | [{"__type__":"cc.Prefab","_name":"pfbCommonCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbShowCategory","_children":[{"__id__":2}],"_level":1,"_components":[{"__type__":"cc.Widget","node":{"__id__":1},"_alignFlags":9,"_left":-79.5,"_top":684},{"__type__":"43a14tHFN5CvrH8W3z8wxz4","node":{"__id__":1},"pic":{"__id__":3}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0amshbbYpJi5LO0bNbCSkg"},"fileId":"f3FKYd7SJEvrs4s48MPI1G"},"_contentSize":{"__type__":"cc.Size","width":159,"height":72}},{"__type__":"cc.Node","_name":"Pic","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0amshbbYpJi5LO0bNbCSkg"},"fileId":"cahAospA9KiZ8bJwfuwSSJ"},"_contentSize":{"__type__":"cc.Size","width":159,"height":72}},{"__type__":"cc.Sprite","node":{"__id__":2}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"bg_app_view02","texture":"1ae3czkqNLSrENBmoMv+UT","rect":[0,0,996,633],"offset":[0,0.5],"originalSize":[996,634],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
build/jsb-link/res/import/0d/0d105a244.json
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
build/jsb-link/res/import/0d/0d6a27cd0.json
0 → 100644
This diff is collapsed.
Click to expand it.
1 | {"__type__":"cc.SpriteFrame","content":{"name":"explore_plus","texture":"4a3p3kPTlLh6grkvje0pZG","rect":[0,0,7280,1110],"offset":[0,0],"originalSize":[7280,1110],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"dragonBones.DragonBonesAsset","_name":"duck_ske","_dragonBonesJson":"{\"frameRate\":60,\"isGlobal\":0,\"armature\":[{\"bone\":[{\"name\":\"root\",\"transform\":{}},{\"inheritScale\":false,\"transform\":{\"y\":20.9393,\"x\":-3.83},\"name\":\"Layer1\",\"parent\":\"root\"},{\"length\":112,\"transform\":{\"y\":-39.8899,\"skX\":90.9548,\"skY\":90.9548,\"x\":-2.4595},\"parent\":\"root\",\"inheritScale\":false,\"name\":\"Layer19\"},{\"length\":101,\"transform\":{\"y\":-10.561,\"skX\":-38.9536,\"skY\":-38.9536,\"x\":-3.9265},\"parent\":\"Layer19\",\"inheritScale\":false,\"name\":\"Layer17\"},{\"length\":81,\"transform\":{\"y\":-10.2153,\"skX\":-20.483,\"skY\":-20.483,\"x\":35.3347},\"parent\":\"Layer19\",\"inheritScale\":false,\"name\":\"Layer10\"},{\"length\":78,\"transform\":{\"y\":10.034,\"skX\":15.7006,\"skY\":15.7006,\"x\":35.5472},\"parent\":\"Layer19\",\"inheritScale\":false,\"name\":\"Layer12\"},{\"length\":82,\"transform\":{\"y\":16.279,\"skX\":40.4526,\"skY\":40.4526,\"x\":-1.6039},\"parent\":\"Layer19\",\"inheritScale\":false,\"name\":\"Layer14\"},{\"length\":160,\"transform\":{\"y\":-1.7706,\"skX\":178.5993,\"skY\":178.5993,\"x\":-6.2804},\"parent\":\"Layer19\",\"inheritScale\":false,\"name\":\"Layer21\"}],\"type\":\"Armature\",\"frameRate\":60,\"animation\":[{\"playTimes\":0,\"bone\":[{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"skX\":-2.3659,\"skY\":-2.3659},\"duration\":15},{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"skX\":3.2177,\"skY\":3.2177},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer21\"},{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"skX\":13.2312,\"skY\":13.2312},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":-2.5206,\"skX\":-12.3228,\"skY\":-12.3228,\"x\":1.2082},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":-6.2492,\"skX\":-62.777,\"skY\":-62.777,\"x\":-0.1042},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer14\"},{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":-4},\"duration\":15},{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":-4},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer19\"},{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":-7.499,\"skX\":-38.8025,\"skY\":-38.8025,\"x\":-0.125},\"duration\":15},{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":2.4997,\"skX\":15.1876,\"skY\":15.1876,\"x\":0.0417},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer12\"},{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":1.8748,\"skX\":32.7635,\"skY\":32.7635,\"x\":0.0313},\"duration\":15},{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":-3.7496,\"skX\":-17.9195,\"skY\":-17.9195,\"x\":-0.0625},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer10\"},{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"skX\":-22.4995,\"skY\":-22.4995},\"duration\":15},{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"y\":1.2498,\"skX\":23.6194,\"skY\":23.6194,\"x\":0.0208},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer17\"},{\"frame\":[{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"scX\":0.9},\"duration\":15},{\"tweenEasing\":0,\"transform\":{},\"duration\":15},{\"tweenEasing\":0,\"transform\":{\"scX\":0.9},\"duration\":15},{\"transform\":{},\"duration\":0}],\"name\":\"Layer1\"},{\"frame\":[{\"transform\":{},\"duration\":60}],\"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\":\"Layer21\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer14\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer19\"},{\"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\":\"Layer17\"},{\"frame\":[{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":0,\"duration\":15},{\"tweenEasing\":null,\"duration\":0}],\"name\":\"Layer1\"}],\"ffd\":[],\"ik\":[],\"frame\":[],\"name\":\"Animation1\",\"duration\":60}],\"defaultActions\":[{\"gotoAndPlay\":\"Animation1\"}],\"aabb\":{\"width\":157,\"y\":-168.93573553683655,\"height\":194.87503553683655,\"x\":-89.9550723745457},\"ik\":[],\"name\":\"armatureName\",\"skin\":[{\"slot\":[{\"display\":[{\"path\":\"duck05\",\"type\":\"image\",\"name\":\"duck05\",\"transform\":{\"y\":2.0343,\"skX\":-60.474,\"skY\":-60.474,\"x\":8.4202}}],\"name\":\"Layer10\"},{\"display\":[{\"path\":\"duck06\",\"type\":\"image\",\"name\":\"duck06\",\"transform\":{\"y\":-0.0025,\"skX\":-116.3619,\"skY\":-116.3619,\"x\":10.4107}}],\"name\":\"Layer12\"},{\"display\":[{\"path\":\"duck03\",\"type\":\"image\",\"name\":\"duck03\",\"transform\":{\"y\":1.4731,\"skX\":-90.9548,\"skY\":-90.9548,\"x\":16.3561}}],\"name\":\"Layer19\"},{\"display\":[{\"path\":\"duck02\",\"type\":\"image\",\"name\":\"duck02\",\"transform\":{\"y\":1.0493,\"skX\":-122.6046,\"skY\":-122.6045,\"x\":19.4616}}],\"name\":\"Layer14\"},{\"display\":[{\"path\":\"duck01\",\"type\":\"image\",\"name\":\"duck01\",\"transform\":{\"y\":-10.4049,\"skX\":90.4459,\"skY\":90.4459,\"x\":59.8786}}],\"name\":\"Layer21\"},{\"display\":[{\"path\":\"duck07\",\"type\":\"image\",\"name\":\"duck07\",\"transform\":{}}],\"name\":\"Layer1\"},{\"display\":[{\"path\":\"duck04\",\"type\":\"image\",\"name\":\"duck04\",\"transform\":{\"y\":0.273,\"skX\":-52.0013,\"skY\":-52.0012,\"x\":19.2394}}],\"name\":\"Layer17\"}],\"name\":\"\"}],\"slot\":[{\"name\":\"Layer1\",\"parent\":\"Layer1\",\"color\":{}},{\"z\":1,\"name\":\"Layer17\",\"parent\":\"Layer17\",\"color\":{}},{\"z\":2,\"name\":\"Layer10\",\"parent\":\"Layer10\",\"color\":{}},{\"z\":3,\"name\":\"Layer12\",\"parent\":\"Layer12\",\"color\":{}},{\"z\":4,\"name\":\"Layer19\",\"parent\":\"Layer19\",\"color\":{}},{\"z\":5,\"name\":\"Layer14\",\"parent\":\"Layer14\",\"color\":{}},{\"z\":6,\"name\":\"Layer21\",\"parent\":\"Layer21\",\"color\":{}}]}],\"name\":\"duck\",\"version\":\"5.0\"}"} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.TiledMapAsset","_name":"newAnimal","tmxXmlStr":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<map version=\"1.2\" tiledversion=\"1.2.5\" orientation=\"orthogonal\" renderorder=\"right-down\" width=\"114\" height=\"10\" tilewidth=\"32\" tileheight=\"32\" infinite=\"0\" nextlayerid=\"4\" nextobjectid=\"1\">\r\n <tileset firstgid=\"1\" name=\"Animal\" tilewidth=\"32\" tileheight=\"32\" tilecount=\"12\" columns=\"3\">\r\n <image source=\"30039.png\" width=\"100\" height=\"147\"/>\r\n </tileset>\r\n <layer id=\"1\" name=\"Animal\" width=\"114\" height=\"10\">\r\n <properties>\r\n <property name=\"isAnimal\" value=\"true\"/>\r\n </properties>\r\n <data encoding=\"csv\">\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12\r\n</data>\r\n </layer>\r\n</map>\r\n","textures":[{"__uuid__":"e6d5FrjJlNgoaytDfb09c2"}],"textureNames":["30039.png"]} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"dragonBones.DragonBonesAtlasAsset","_name":"duck_tex","_atlasJson":"{\"width\":256,\"imagePath\":\"duck_tex.png\",\"height\":256,\"name\":\"duck\",\"SubTexture\":[{\"width\":66,\"y\":108,\"height\":10,\"name\":\"duck07\",\"x\":160},{\"width\":35,\"y\":64,\"height\":40,\"name\":\"duck04\",\"x\":160},{\"width\":24,\"y\":76,\"height\":30,\"name\":\"duck05\",\"x\":197},{\"width\":24,\"y\":44,\"height\":30,\"name\":\"duck06\",\"x\":222},{\"width\":60,\"y\":1,\"height\":61,\"name\":\"duck03\",\"x\":160},{\"width\":27,\"y\":1,\"height\":41,\"name\":\"duck02\",\"x\":222},{\"width\":157,\"y\":1,\"height\":126,\"name\":\"duck01\",\"x\":1}]}","_texture":{"__uuid__":"5dK6VUpjpKXJbSghUu/5W1"},"texture":{"__uuid__":"5dK6VUpjpKXJbSghUu/5W1"}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"yiwancheng","texture":"8e3O04pp5DTZqjCb5w8Rm1","rect":[0,0,171,58],"offset":[-0.5,0],"originalSize":[172,58],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"bg_achievement_progress_detail","texture":"ddfvnSb0pC67Gayd0KQRyr","rect":[0,0,195,25],"offset":[0,0],"originalSize":[195,25],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.TextAsset","_name":"explore_config","text":"<root>\r\n\r\n\t<explore id=\"1\" id2=\"1\" name=\"555,没人陪我玩,好寂寞。\" type=\"1\" map=\"1\" choice1=\"陪陪蜥蜴,和它交朋友\" choice2=\"陪它去看《小猪佩奇》,开朗的孩子朋友多。\" function=\"1:500054\" image=\"xiyi.png\" reward=\"10001:100\"/>\r\n\t<explore id=\"2\" id2=\"1\" name=\"555,没人陪我玩,好寂寞。\" type=\"2\" map=\"1\" choice1=\"陪陪蜥蜴,和它交朋友\" choice2=\"去玩叠蛋糕给它看,这个小游戏可好玩了!\" function=\"2:300056\" image=\"xiyi.png\" reward=\"10001:100\"/>\r\n\t<explore id=\"3\" id2=\"1\" name=\"555,没人陪我玩,好寂寞。\" type=\"2\" map=\"1\" choice1=\"陪陪蜥蜴,和它交朋友\" choice2=\"和小狗一起听儿歌:工程车之歌\" function=\"3:18897\" image=\"xiyi.png\" reward=\"10001:100\"/>\r\n\t<explore id=\"4\" id2=\"1\" name=\"555,没人陪我玩,好寂寞。\" type=\"1\" map=\"1\" choice1=\"我想和别的小动物一起玩。\" choice2=\"\" function=\"1:500054\" image=\"xiyi.png\" reward=\"10001:100\"/>\r\n\t<explore id=\"5\" id2=\"1\" name=\"捡到一个宝箱。\" type=\"2\" map=\"1\" choice1=\"\" choice2=\"\" function=\"1:500054\" image=\"baoxiang.png\" reward=\"10001:100\"/>\r\n\t<explore id=\"6\" id2=\"1\" name=\"迷路了,进度减少10%\" type=\"3\" map=\"1\" choice1=\"\" choice2=\"\" function=\"1:500054\" image=\"xiyi.png\" reward=\"10001:100\"/>\r\n\t<explore id=\"7\" id2=\"1\" name=\"找到了捷径,进度增加10%\" type=\"4\" map=\"1\" choice1=\"\" choice2=\"\" function=\"1:500054\" image=\"xiyi.png\" reward=\"10001:100\"/>\r\n\r\n</root>"} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"item_achievement_detail","texture":"2ctGuUJBtNTKENH8jIwW6X","rect":[0,0,428,582],"offset":[0,0],"originalSize":[428,582],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"btn_get_achievement_reward","texture":"1a9nO9Z21ISJfxs4PPLMIt","rect":[0,0,152,50],"offset":[0,0],"originalSize":[152,50],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"look_achievement_yilingqu","texture":"9cOv/pgC1B85tLfT2pUs/W","rect":[0,0,114,51],"offset":[-1,0],"originalSize":[116,51],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"achievement_flash","texture":"3edPYvW4xH+oUl/bMLang2","rect":[0,0,680,634],"offset":[0,0],"originalSize":[680,634],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"turntable_tomorrow","texture":"55ovZdri9DDZl6oYOwOvSV","rect":[0,1,94,97],"offset":[0,0],"originalSize":[94,99],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.SpriteFrame","content":{"name":"bg_xyx","texture":"f7D/9vhRtMj6DrFMjxc/EC","rect":[0,0,1280,720],"offset":[0,0],"originalSize":[1280,720],"capInsets":[0,0,0,0]}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.JsonAsset","_name":"explore_config_json","json":{"root":{"explore":[{"_id":"1","_id2":"1","_name":"555,没人陪我玩,好寂寞。","_type":"1","_map":"1","_choice1":"陪陪蜥蜴,和它交朋友","_choice2":"陪它去看《小猪佩奇》,开朗的孩子朋友多。","_function":"1:500054","_image":"xiyi.png","_reward":"10001:100"},{"_id":"2","_id2":"1","_name":"555,没人陪我玩,好寂寞。","_type":"2","_map":"1","_choice1":"陪陪蜥蜴,和它交朋友","_choice2":"去玩叠蛋糕给它看,这个小游戏可好玩了!","_function":"2:300056","_image":"xiyi.png","_reward":"10001:100"},{"_id":"3","_id2":"1","_name":"555,没人陪我玩,好寂寞。","_type":"2","_map":"1","_choice1":"陪陪蜥蜴,和它交朋友","_choice2":"和小狗一起听儿歌:工程车之歌","_function":"3:18897","_image":"xiyi.png","_reward":"10001:100"},{"_id":"4","_id2":"1","_name":"555,没人陪我玩,好寂寞。","_type":"1","_map":"1","_choice1":"我想和别的小动物一起玩。","_choice2":"","_function":"1:500054","_image":"xiyi.png","_reward":"10001:100"},{"_id":"5","_id2":"1","_name":"捡到一个宝箱。","_type":"2","_map":"1","_choice1":"","_choice2":"","_function":"1:500054","_image":"baoxiang.png","_reward":"10001:100"},{"_id":"6","_id2":"1","_name":"迷路了,进度减少10%","_type":"3","_map":"1","_choice1":"","_choice2":"","_function":"1:500054","_image":"xiyi.png","_reward":"10001:100"},{"_id":"7","_id2":"1","_name":"找到了捷径,进度增加10%","_type":"4","_map":"1","_choice1":"","_choice2":"","_function":"1:500054","_image":"xiyi.png","_reward":"10001:100"}]}}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | [{"__type__":"cc.Prefab","_name":"pfbDialogCell","data":{"__id__":1}},{"__type__":"cc.Node","_name":"pfbDialogCell","_children":[{"__id__":2},{"__id__":3}],"_level":1,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"cb1Uswnn9CLLdCm0NKErba"},"fileId":"43je+l5UZHppZNWqV9PaIl"},"_contentSize":{"__type__":"cc.Size","width":450,"height":40}},{"__type__":"cc.Node","_name":"Icon","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":2}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"cb1Uswnn9CLLdCm0NKErba"},"fileId":"592x6ksi9BRrRAJCVkUIic"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-222}},{"__type__":"cc.Node","_name":"Content","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Label","node":{"__id__":3},"_useOriginalSize":false,"_string":"陪他去看《小猪佩奇》,开朗的孩子朋友多","_N$string":"陪他去看《小猪佩奇》,开朗的孩子朋友多","_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"cb1Uswnn9CLLdCm0NKErba"},"fileId":"83YAY8oi5FD67hDNJN+Ezb"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":450,"height":40}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"dragonBones.DragonBonesAtlasAsset","_name":"duck_tex","_atlasJson":"{\"width\":256,\"imagePath\":\"duck_tex.png\",\"height\":256,\"name\":\"duck\",\"SubTexture\":[{\"width\":66,\"y\":108,\"height\":10,\"name\":\"duck07\",\"x\":160},{\"width\":24,\"y\":44,\"height\":30,\"name\":\"duck05\",\"x\":222},{\"width\":24,\"y\":76,\"height\":30,\"name\":\"duck06\",\"x\":197},{\"width\":35,\"y\":64,\"height\":40,\"name\":\"duck04\",\"x\":160},{\"width\":60,\"y\":1,\"height\":61,\"name\":\"duck03\",\"x\":160},{\"width\":27,\"y\":1,\"height\":41,\"name\":\"duck02\",\"x\":222},{\"width\":157,\"y\":1,\"height\":126,\"name\":\"duck01\",\"x\":1}]}","_texture":{"__uuid__":"6306aRIKVGIq/KUfkpD8Xs"},"texture":{"__uuid__":"6306aRIKVGIq/KUfkpD8Xs"}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"cc.AnimationClip","_name":"bg_roll","_duration":7.5,"sample":8,"speed":0.2,"wrapMode":2,"curveData":{"props":{"x":[{"frame":0,"value":2899},{"frame":7.5,"value":-744}]}}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | {"__type__":"dragonBones.DragonBonesAsset","_name":"duck_ske","_dragonBonesJson":"{\"frameRate\":60,\"name\":\"duck\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"armatureName\",\"aabb\":{\"x\":-90,\"y\":-185.74,\"width\":157,\"height\":195.58},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"name\":\"Layer7\",\"parent\":\"root\",\"transform\":{\"x\":-2.4744,\"y\":4.8423}},{\"inheritScale\":false,\"length\":65,\"name\":\"Layer11\",\"parent\":\"root\",\"transform\":{\"x\":0.2679,\"y\":-16.752,\"skX\":-87.4308,\"skY\":-87.4308}},{\"inheritScale\":false,\"length\":44,\"name\":\"Layer14\",\"parent\":\"Layer11\",\"transform\":{\"x\":4.1198,\"y\":8.1569,\"skX\":151.3452,\"skY\":151.3452}},{\"inheritScale\":false,\"length\":48,\"name\":\"Layer13\",\"parent\":\"Layer11\",\"transform\":{\"x\":3.298,\"y\":-10.158,\"skX\":-159.7595,\"skY\":-159.7595}},{\"inheritScale\":false,\"length\":68,\"name\":\"Layer9\",\"parent\":\"Layer11\",\"transform\":{\"x\":37.6811,\"y\":12.4901,\"skX\":137.8478,\"skY\":137.8478}},{\"inheritScale\":false,\"length\":79,\"name\":\"Layer10\",\"parent\":\"Layer11\",\"transform\":{\"x\":34.7887,\"y\":-24.0837,\"skX\":-144.7995,\"skY\":-144.7995}},{\"inheritScale\":false,\"length\":97,\"name\":\"Layer8\",\"parent\":\"Layer11\",\"transform\":{\"x\":55.3423,\"y\":-2.9004,\"skX\":-2.0795,\"skY\":-2.0795}}],\"slot\":[{\"name\":\"Layer7\",\"parent\":\"Layer7\"},{\"name\":\"Layer14\",\"parent\":\"Layer14\"},{\"name\":\"Layer13\",\"parent\":\"Layer13\"},{\"name\":\"Layer9\",\"parent\":\"Layer9\"},{\"name\":\"Layer11\",\"parent\":\"Layer11\"},{\"name\":\"Layer10\",\"parent\":\"Layer10\"},{\"name\":\"Layer8\",\"parent\":\"Layer8\"}],\"skin\":[{\"slot\":[{\"name\":\"Layer9\",\"display\":[{\"name\":\"duck04\",\"transform\":{\"x\":12.7,\"y\":1.88,\"skX\":-50.42,\"skY\":-50.42}}]},{\"name\":\"Layer11\",\"display\":[{\"name\":\"duck03\",\"transform\":{\"x\":21.85,\"y\":-6,\"skX\":87.43,\"skY\":87.43}}]},{\"name\":\"Layer10\",\"display\":[{\"name\":\"duck02\",\"transform\":{\"x\":15.37,\"y\":-0.82,\"skX\":-127.77,\"skY\":-127.77}}]},{\"name\":\"Layer8\",\"display\":[{\"name\":\"duck01\",\"transform\":{\"x\":50.47,\"y\":-11.78,\"skX\":89.51,\"skY\":89.51}}]},{\"name\":\"Layer7\",\"display\":[{\"name\":\"duck07\"}]},{\"name\":\"Layer14\",\"display\":[{\"name\":\"duck05\",\"transform\":{\"x\":11.36,\"y\":0.62,\"skX\":-63.91,\"skY\":-63.91}}]},{\"name\":\"Layer13\",\"display\":[{\"name\":\"duck06\",\"transform\":{\"x\":13.83,\"y\":-0.75,\"skX\":-112.81,\"skY\":-112.81}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Animation1\",\"bone\":[{\"name\":\"Layer8\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":2},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-2},{\"duration\":0,\"rotate\":2}]},{\"name\":\"Layer10\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":16},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-30},{\"duration\":0,\"rotate\":16}]},{\"name\":\"Layer11\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"y\":-5},{\"duration\":0}]},{\"name\":\"Layer9\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":-18},{\"duration\":30,\"tweenEasing\":0,\"rotate\":30},{\"duration\":0,\"rotate\":-18}]},{\"name\":\"Layer13\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"x\":-5,\"y\":-5},{\"duration\":30,\"tweenEasing\":0,\"x\":-3,\"y\":-5},{\"duration\":0,\"x\":-5,\"y\":-5}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":-41.8},{\"duration\":30,\"tweenEasing\":0,\"rotate\":4.9},{\"duration\":0,\"rotate\":-41.8}]},{\"name\":\"Layer14\",\"translateFrame\":[{\"duration\":60,\"x\":-2}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0,\"rotate\":42.97},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-9.72},{\"duration\":0,\"rotate\":42.97}]},{\"name\":\"Layer7\",\"translateFrame\":[{\"duration\":60,\"y\":5}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.9},{\"duration\":0}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Animation1\"}]}]}"} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

13.1 KB

375 Bytes

51.3 KB

4.59 KB

8.52 KB

2.93 KB

1.94 KB

607 Bytes

48.4 KB

3.49 KB

17.5 KB

55.9 KB

14.4 KB

16.8 KB

3.65 KB

10.5 KB

608 Bytes

3.13 KB

18.9 KB

3.46 KB

9.13 KB

3.62 KB

5.05 KB

14.5 KB

2.78 KB

1.44 KB

21.7 KB

18.8 KB

9.72 KB

10.3 KB

4.42 KB

21.7 KB

72.7 KB

26.4 KB

21.5 KB

7.02 KB

1.03 KB

558 Bytes

10.3 KB

2.19 KB

372 Bytes

9.06 KB

6.34 KB

37.8 KB

2.21 KB

3.67 KB

8.07 KB

399 Bytes

1.09 KB

17.6 KB

1.71 KB

38.6 KB

44.8 KB

37.7 KB

11.2 KB

4.88 KB

20.5 KB

11.2 KB

735 Bytes

5.22 KB

15.4 KB

1.06 KB

46.9 KB

1.92 KB

10.7 KB
No preview for this file type
No preview for this file type
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment