Commit 7c113e60 7c113e60422113f3fa0a3a2407a6a4fbd2a9ce73 by jinwawa

achive sceneExplore

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