Commit 600ab8e3 600ab8e372096d06d8e8297e143b7c89f6e8fb43 by jinwawa

fix some problem in STB

1 parent b8d0c25b
Showing 129 changed files with 303 additions and 45 deletions
......@@ -2222,6 +2222,6 @@
"PFB_POP": {
"__uuid__": "8fc297a9-26e1-4936-aaa0-59dffbb57d8d"
},
"_id": "01a+mE585Ho7WhSVhlk2o5"
"_id": "e8raHAVZ1MfIIaEBIDoVFh"
}
]
\ No newline at end of file
......
......@@ -7,6 +7,7 @@ var TVScrollParameter = require('TVScrollParameter');
var ListView = require('ListView');
var ListCell = require('ListCell');
var xmlToJSON = require('xmlToJSON');
var GlobalValue = require('GlobalValue');
cc.Class({
extends: TVCanvas,
......@@ -37,14 +38,23 @@ cc.Class({
onLoad: function () {
this._super();
let oSceneParameter = this._cApplication.getTopSceneParameter();
if (oSceneParameter) {
this._islandOrder = oSceneParameter.order-1; //当前位于哪个岛屿,岛屿从1开始排序,故需要-1
}
this._aFocusTargets[1] = []; //弹窗焦点
this._iSceneStatus = 0; //焦点层级
this._remindString = this.node.getChildByName("Remind").getComponent(cc.Label);
this._progressString = cc.find("Progress/progress", this.node).getComponent(cc.Label);
this._progressBg = cc.find("Progress/scrollViewBg", this.node);
this._progressBar = cc.find("Progress/scrollViewBg/scrollViewBar", this.node);
cc.log("-------------------->"+this._islandOrder);
this.totalTask = GlobalValue.ISLAND_CONFIG[this._islandOrder].EXPLORE_TOTAL_TASK; //任务进度,根据配置表,
this._progressString.string = 20 * this.totalTask + "%"; //处理上方任务进度条
this._progressBar.width = 20 * this.totalTask / 100 * 800;
this.totalTask = 0; //任务进度,根据配置表,每个
cc.log("进来的任务进度表:" + this.totalTask);
this.bg_long = this.node.getChildByName("Bg_long");
// this.bg_long.getComponent(cc.Animation).play(); //播放动画
// this.bg_long.getComponent(cc.Animation).stop(); //暂停播放动画
......@@ -69,11 +79,11 @@ cc.Class({
this._nodeDialogList = cc.find("DialogList", this._nodeDialogListWrapper);
// this._nodeDialogList.addComponent(TVScrollParameter);
cc.loader.loadRes("config/explore_config", function (err, str) {
var x2js = new xmlToJSON();
self._exploreConfig = x2js.xml_str2json(str); //解析xml
cc.log("解析后xml------------>" + JSON.stringify(self._exploreConfig));
// cc.log("解析后xml------------>"+result.root.explore[0]["_choice2"]);
cc.loader.loadRes("config/explore_config_json", function (err, str) {
// var x2js = new xmlToJSON();
// self._exploreConfig = x2js.xml_str2json(str); //解析xml,打包APK崩溃,无法使用!
self._exploreConfig = str.json;
cc.log("解析后xml------------>" + JSON.stringify(str));
});
this.initFocus();
......@@ -92,8 +102,8 @@ cc.Class({
'', true
);
var fiDiloaClose = cc.find("PopWindow/Close",this.node).addComponent(FocusInfo);//
this._aFocusTargets[1]['to_close_popwindow'] = cc.find("PopWindow/Close",this.node);
var fiDiloaClose = cc.find("PopWindow/Close", this.node).addComponent(FocusInfo);//
this._aFocusTargets[1]['to_close_popwindow'] = cc.find("PopWindow/Close", this.node);
fiDiloaClose.init(
'{"click": [{"action": "Close"}]}', true
);
......@@ -151,10 +161,10 @@ cc.Class({
if (0 == this._fiCurrentFocus.node.getName().indexOf('Next')) {
this.nextTask();
break;
}else if(0 == this._fiCurrentFocus.node.getName().indexOf('BackAScene')){
} else if (0 == this._fiCurrentFocus.node.getName().indexOf('BackAScene')) {
this.backAScene();
}
this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK);
this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK);
break;
case cc.macro.KEY.backspace:
case Common.ANDROID_KEY.back:
......@@ -174,14 +184,15 @@ cc.Class({
this.scheduleOnce(() => {
this._remindString.node.active = false;
}, 3);
return ;
return;
}
this.bg_long.getComponent(cc.Animation).resume(); //播放动画
this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation();
this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation("Animation1");
this.scheduleOnce(() => {
this.bg_long.getComponent(cc.Animation).pause(); //暂停播放动画
this.hero.getComponent(dragonBones.ArmatureDisplay)._armature.animation.stop();
// this.hero.getComponent(dragonBones.ArmatureDisplay)._armature.animation.stop(); //APK不支持
this.hero.getComponent(dragonBones.ArmatureDisplay).playAnimation("Animation1").stop();
let randomNum = this.random(1, 7);
cc.log("随机数-------->" + randomNum);
......@@ -220,24 +231,24 @@ cc.Class({
this.totalTask += 1;
this._remindString.string = "恭喜您发现了宝箱!";
this._remindString.node.active = true;
this._remindString.node.getChildByName("Box").active=true;
this._remindString.node.getChildByName("Box").active = true;
this.scheduleOnce(() => {
this._remindString.node.getChildByName("Box").active=false;
this._remindString.node.getChildByName("Box").active = false;
this._remindString.node.active = false;
}, 2);
let popItem=cc.instantiate(this.PFB_POP);
this.node.addChild(popItem,100);
this.node.anchorX=0; //解决飘窗显示位置不在屏幕中央的问题
this.node.anchorY=0;
function fadeOutBack(){
let popItem = cc.instantiate(this.PFB_POP);
this.node.addChild(popItem, 100);
this.node.anchorX = 0; //解决飘窗显示位置不在屏幕中央的问题
this.node.anchorY = 0;
function fadeOutBack() {
popItem.destroy(); //用完就销毁
cc.log("处理飘窗彻底消失后的逻辑。。。。。。");
};
let fadeOut=cc.fadeOut(1.0);
let moveBy=cc.moveBy(1,cc.v2(0,200));
let fadeOut = cc.fadeOut(1.0);
let moveBy = cc.moveBy(1, cc.v2(0, 200));
popItem.runAction(moveBy);
popItem.runAction(cc.sequence(fadeOut,cc.callFunc(fadeOutBack)));
popItem.runAction(cc.sequence(fadeOut, cc.callFunc(fadeOutBack)));
} else if (type == 3) { //倒退事件,触发后地图探索进度减少
this.totalTask += 1;
this._remindString.string = "找到了捷径,进度增加20%";
......@@ -246,7 +257,7 @@ cc.Class({
this._remindString.node.active = false;
}, 2);
} else if (type == 4) { //前进事件,触发后地图探索进度增加
if(this.totalTask>0) this.totalTask -= 1;
if (this.totalTask > 0) this.totalTask -= 1;
this._remindString.string = "迷路了,进度减少20%";
this._remindString.node.active = true;
this.scheduleOnce(() => {
......@@ -264,8 +275,11 @@ cc.Class({
}
else if (this.totalTask >= 0) {
this._progressString.string = 20 * this.totalTask + "%";
this._progressBar.width = 20 * this.totalTask / 100 * 800;
cc.log("进度-----》" + this._progressBar.width);
this._progressBar.width = 20 * this.totalTask / 100 * 800; //800是进度条长度
// cc.log("进度-----》" + this._progressBar.width);
GlobalValue.ISLAND_CONFIG[this._islandOrder].PROGRESS_BAR_VALUE=20 * this.totalTask / 100; //20是:100/该岛屿一共的任务数量,这样暂且使用5个任务量
GlobalValue.ISLAND_CONFIG[this._islandOrder].PROGRESS_LABEL_VALUE=this._progressString.string;
GlobalValue.ISLAND_CONFIG[this._islandOrder].EXPLORE_TOTAL_TASK = this.totalTask;
}
}, 5);
},
......
......@@ -10,6 +10,7 @@ var BusinessParameter = require('BusinessParameter');
var ListView = require('ListView');
var ListCell = require('ListCell');
var GameLobbyCategoryJson = require('GameLobbyCategoryJson');
var GlobalValue = require('GlobalValue');
cc.Class({
extends: TVCanvas,
......@@ -38,7 +39,7 @@ cc.Class({
onLoad: function () {
this._super();
this._aFocusTargets[1] = []; //任务弹窗焦点
this._aFocusTargets[2] = []; //成就弹窗焦点
this._aFocusTargets[3] = []; //活动大转盘弹窗
......@@ -160,13 +161,29 @@ cc.Class({
initFocus: function () {
//弄各个小岛焦点
for (let i = 1; i < 6; i++) {
for (let i = 1; i < 4; i++) {
let fiIslandSprite = cc.find("bgScrollView/viewport/content/island_" + i, this.node).addComponent(FocusInfo);//
this._aFocusTargets[0]['to_island' + i] = cc.find("bgScrollView/viewport/content/island_" + i, this.node);
fiIslandSprite.init(
'{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneExploreNew"}}]}',
'{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneExploreNew","order":"'+ i +'"}}]}',
true, null, null, 1
);
//弄小岛下方的进度信息
if(cc.find("scrollViewBg/scrollViewBar",fiIslandSprite.node) && cc.find("progress",fiIslandSprite.node)){
this.totalTask = GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_BAR_VALUE;
cc.find("scrollViewBg/scrollViewBar",fiIslandSprite.node).width=GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_BAR_VALUE * 200;
cc.find("progress",fiIslandSprite.node).getComponent(cc.Label).string=GlobalValue.ISLAND_CONFIG[i-1].PROGRESS_LABEL_VALUE;
}
if (i == 1) {
fiIslandSprite.setTVLink("");
}
if (i == 3) { //这里是测试时使用数据,保证角色在第二个小岛上
this.roleAnim.node.x = fiIslandSprite.node.x;
this.roleAnim.node.y = fiIslandSprite.node.y;
}
}
var fiActivitySprite = this.activitySprite.addComponent(FocusInfo);//
......@@ -244,8 +261,10 @@ cc.Class({
//小岛之间跳转需要处理ScrollView
if (0 == fiFocusTarget.node.name.indexOf("island_")) {
this._cFocus.hide();
this.roleAnim.playAnimation("Animation1");
} else {
this._cFocus.show();
this.roleAnim._armature.animation.stop();
}
if (0 == this._fiCurrentFocus.node.name.indexOf("island_") && 0 == fiFocusTarget.node.name.indexOf("island_")) {
let index = fiFocusTarget.node.name.replace("island_", "");
......@@ -340,7 +359,7 @@ cc.Class({
this.taskSprite.node.zIndex = 0;
this.achievementSprite.node.zIndex = 0;
this.shopSprite.node.zIndex = 0;
} else if (0 == this._fiCurrentFocus.node.getName().indexOf('spriteAchievement')) { //任务
} else if (0 == this._fiCurrentFocus.node.getName().indexOf('spriteAchievement')) { //成就
cc.find("achievement", this.node).active = true;
this._iSceneStatus = 2;
var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT);
......@@ -381,7 +400,8 @@ cc.Class({
var fiFocusTarget = this.activitySprite.getComponent(FocusInfo);
this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_UP, null, null);
} else if (0 == this._fiCurrentFocus.node.getName().indexOf('PointerButton')) {
this.pointerButtonStartControl();
if (!GlobalValue.ACTIVITY_IS_TURN)
this.pointerButtonStartControl();
} else
this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK);
break;
......@@ -411,28 +431,30 @@ cc.Class({
var adValue = 9; //这里应该灵活获取角度
var self=this;
var self = this;
function infoDelayShow() {
_this.scheduleOnce(function () {
cc.log("转盘转动结束,可以处理一些逻辑啦。。。");
GlobalValue.ACTIVITY_IS_TURN = true;
this.pointerButton.getComponent(FocusInfo).setEnable(false);
cc.loader.loadRes("game/main/turntable_tomorrow", cc.Texture2D, function (err, texture) {
self.pointerButton.spriteFrame = new cc.SpriteFrame(texture);
});
var fiFocusTarget = this._cFocus.findTarget(this._fiCurrentFocus, this._aFocusTargets, this._iSceneStatus, Common.MOVE_DIRECTION_LEFT);
this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_LEFT, null, null);
let popItem=cc.instantiate(this.PFB_POP);
this.node.addChild(popItem,100);
this.node.anchorX=0; //解决飘窗显示位置不在屏幕中央的问题
this.node.anchorY=0;
function fadeOutBack(){
let popItem = cc.instantiate(this.PFB_POP);
this.node.addChild(popItem, 100);
this.node.anchorX = 0; //解决飘窗显示位置不在屏幕中央的问题
this.node.anchorY = 0;
function fadeOutBack() {
popItem.destroy(); //用完就销毁
cc.log("处理飘窗彻底消失后的逻辑。。。。。。");
};
let fadeOut=cc.fadeOut(1.0);
let moveBy=cc.moveBy(1,cc.v2(0,200));
let fadeOut = cc.fadeOut(1.0);
let moveBy = cc.moveBy(1, cc.v2(0, 200));
popItem.runAction(moveBy);
popItem.runAction(cc.sequence(fadeOut,cc.callFunc(fadeOutBack)));
popItem.runAction(cc.sequence(fadeOut, cc.callFunc(fadeOutBack)));
}, clickTimes + 0.5);
};
......
//保存全局变量
module.exports = {
ACTIVITY_IS_TURN: false,
ISLAND_CONFIG: [
{EXPLORE_TOTAL_TASK: 0 ,PROGRESS_BAR_VALUE:0,PROGRESS_LABEL_VALUE:"0%"},
{EXPLORE_TOTAL_TASK: 5,PROGRESS_BAR_VALUE:"1",PROGRESS_LABEL_VALUE:"100%"},
{EXPLORE_TOTAL_TASK: 0,PROGRESS_BAR_VALUE:"0",PROGRESS_LABEL_VALUE:"0%"},
{EXPLORE_TOTAL_TASK: 0,PROGRESS_BAR_VALUE:"0",PROGRESS_LABEL_VALUE:"0%"},
{EXPLORE_TOTAL_TASK: 0,PROGRESS_BAR_VALUE:"0",PROGRESS_LABEL_VALUE:"0%"},
],
}
{
"ver": "1.0.5",
"uuid": "b1cc1c3b-07fb-4fe0-b8b5-26fb2d6c2601",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"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
{
"ver": "1.0.0",
"uuid": "c496141e-d4af-4528-818d-d9b99c825a73",
"subMetas": {}
}
\ No newline at end of file

210 KB | W: | H:

219 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.2.0",
"uuid": "154f1aad-5677-4723-a6ea-bed25fb67b49",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"subMetas": {
"explore_plus1": {
"ver": "1.0.4",
"uuid": "2a6ce217-b4e3-4c8e-8b70-c8b93ef28c80",
"rawTextureUuid": "154f1aad-5677-4723-a6ea-bed25fb67b49",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 912,
"height": 1110,
"rawWidth": 912,
"rawHeight": 1110,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.2.0",
"uuid": "08ea60a8-ed09-414d-aa25-34e6139d2942",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"subMetas": {
"explore_plus2": {
"ver": "1.0.4",
"uuid": "b9ee3250-661a-448e-8e7b-cf4dd91afe8e",
"rawTextureUuid": "08ea60a8-ed09-414d-aa25-34e6139d2942",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1520,
"height": 720,
"rawWidth": 1520,
"rawHeight": 720,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.2.0",
"uuid": "140f4c32-0cb9-40f9-bf70-9b74aa4d8d3a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"subMetas": {
"pet_turn_lock": {
"ver": "1.0.4",
"uuid": "c8b5b75c-c8ca-4860-862a-41248d4b9009",
"rawTextureUuid": "140f4c32-0cb9-40f9-bf70-9b74aa4d8d3a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 241,
"height": 42,
"rawWidth": 241,
"rawHeight": 42,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
[{"__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
[[{"__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
{"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
{"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
......
[{"__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
[{"__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
[[{"__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
[[{"__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
......
[{"__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
[{"__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
......
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
{"__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
[{"__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
{"__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
{"__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
{"__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