Commit d7a416bc d7a416bca67807e17e2b85707634d5da8ae53638 by jinwawa

complete sceneGameLobby

1 parent ec5f1092
Showing 107 changed files with 1330 additions and 0 deletions
{
"ver": "1.2.0",
"uuid": "ae592cc7-1e5d-4148-8290-3ccca61fefba",
"asyncLoadAssets": false,
"autoReleaseAssets": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.2.0",
"uuid": "00c8d4db-68f5-48fe-96ab-f5d85749c29f",
"asyncLoadAssets": false,
"autoReleaseAssets": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.2.0",
"uuid": "e126087d-d289-44c5-a274-4c82171fdfa8",
"asyncLoadAssets": false,
"autoReleaseAssets": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.0.5",
"uuid": "3aa3a1d0-e725-4104-a3e3-ab24269d8cb4",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.0.5",
"uuid": "9bf4114a-5d4a-4b16-9ef5-b174b2f4facf",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.0.5",
"uuid": "432aa898-d193-468d-bdaf-9a81777bb81b",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
......@@ -309,6 +309,7 @@ cc.Class({
//此函数一般start为0
//由于光标恢复的需要,希望光标所在PFB和记录的一致,所以PFB的使用,也从start开始
var oJSONResult = JSON.parse(strResponse);
this._iRecordCount = oJSONResult.count;
this.adjustScrollBarSize(this._iRecordCount);
......@@ -376,6 +377,7 @@ cc.Class({
}
//------------2.0版本-------
// cc.log("/////////////");
nodeCell.active = true;
//--------------------------
} else {
......
{
"ver": "1.0.1",
"uuid": "5dc17c30-f1e4-4568-a1b8-740dc26ee824",
"isSubpackage": false,
"subpackageName": "",
"subMetas": {}
}
\ No newline at end of file
cc.Class({
extends: cc.Component,
statics: {
gameCategory: {
"businessCode": "success",
"count": 10,
"currentTime": 1567477099396,
"description": "",
"resultSet": [
{
"id": 233,
"title": "火箭小黄人",
"image": [
{
"bg": "game/bg_xyx_1",
"fileUrl": "game/xyx_1"
}
]
},
{
"id": 233,
"title": "接糖果",
"image": [
{
"bg": "game/bg_xyx_2",
"fileUrl": "game/xyx_2"
}
]
},
{
"id": 233,
"title": "欢乐叠蛋糕",
"image": [
{
"bg": "game/bg_xyx_3",
"fileUrl": "game/xyx_3"
}
]
},
{
"id": 233,
"title": "记忆翻牌",
"image": [
{
"bg": "game/bg_xyx_4",
"fileUrl": "game/xyx_4"
}
]
},
{
"id": 233,
"title": "飞檐走壁",
"image": [
{
"bg": "game/bg_xyx_5",
"fileUrl": "game/xyx_5"
}
]
},
{
"id": 233,
"title": "旋转海盗",
"image": [
{
"bg": "game/bg_xyx_6",
"fileUrl": "game/xyx_6"
}
]
},
{
"id": 233,
"title": "奔跑吧小马宝莉",
"image": [
{
"bg": "game/bg_xyx_7",
"fileUrl": "game/xyx_7"
}
]
},
{
"id": 233,
"title": "猜猜我是谁",
"image": [
{
"bg": "game/bg_xyx_8",
"fileUrl": "game/xyx_8"
}
]
},
{
"id": 233,
"title": "它的颜色",
"image": [
{
"bg": "game/bg_xyx_9",
"fileUrl": "game/xyx_9"
}
]
},
{
"id": 233,
"title": "数一数",
"image": [
{
"bg": "game/bg_xyx_10",
"fileUrl": "game/xyx_10"
}
]
}
]
}
}
});
{
"ver": "1.0.5",
"uuid": "947bbf75-2ed3-4a65-bec1-5f050733126d",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
//明星列表ListCell
var Common = require('Common');
var FocusInfo = require('FocusInfo');
var ListCell = require('ListCell');
var Network = require('Network');
cc.Class({
extends: ListCell,
properties: {
id: 0,
bg: cc.Sprite, //背景
starName: cc.Label, //名称
pic: cc.Sprite, //动漫图片
},
statics: {
PFB_NAME: 'prefab/pfbGameCategoryListCell',
CELL_NAME: 'StarListCell',
},
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) {
this.id = oData.id;
this.starName.string = oData.title;
// // this.bg.spriteFrame.setRect(cc.rect(0, 0, 214, 214));
var self = this;
cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) {
self.pic.spriteFrame = new cc.SpriteFrame(texture);
});
// if (oData.image[0]) {
// var self = this;
// Network.loadImageInNativeRuntime(
// Common.TOPDRAW_IMAGE_SERVER + oData.image[0].fileUrl,
// function (texture) {
// self.pic.spriteFrame = new cc.SpriteFrame(texture);
// }, null, this
// );
// }
// //准备焦点坐标
// this.node.getComponent(FocusInfo).setTVLink(oData.tvlink);
},
enableFocusInfo: function () {
this.node.getComponent(FocusInfo).setEnable(true);
},
disableFocusInfo: function () {
this.node.getComponent(FocusInfo).setEnable(false);
},
});
{
"ver": "1.0.5",
"uuid": "041c173a-fcd3-47f4-bcf4-74c9b5071ef7",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
//观看历史-其他
var Common = require('Common');
var FocusInfo = require('FocusInfo');
var ListCell = require('ListCell');
var Network = require('Network');
cc.Class({
extends: ListCell,
properties: {
id: 0,
pic: cc.Sprite,
activeName1: cc.Label,
activeName2: cc.Label,
normalName: cc.Label,
textPlayTimes: cc.Label, //观看次数
collectBg: cc.Sprite, //收藏外框
collectPic: cc.Sprite, //收藏内框
},
statics: {
PFB_NAME: 'prefab/pfbHistoryOtherListCell',
CELL_NAME: 'OtherListCell',
},
init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) {
// cc.find("CollectionBg", this.node).opacity = 0;
// let nodeCollectionBg = this.node.getChildByName("CollectionBg");
// nodeCollectionBg.getComponent(cc.Sprite).spriteFrame.setRect(cc.rect(0, 0, 53, 171));
// let nodeCollectionPic = nodeCollectionBg.getChildByName('CollectionPic');
// nodeCollectionPic.getComponent(cc.Sprite).spriteFrame.setRect(cc.rect(0, 0, 30, 28));
// let fiCollection = this.node.getChildByName('CollectionBg').addComponent(FocusInfo);
// fiCollection.init(
// null, true, null, null, 1.0);
// compSceneCanvas.addNodeToFocusTarget(0, this.node.getChildByName('CollectionBg').name + iCellIndex, this.node);
// 准备焦点坐标
// let fiCategoryBlock=this.node.getChildByName('Pic').addComponent(FocusInfo);
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) {
var self = this;
this.id = oData.id;
this.activeName1.string = oData.name;
this.activeName2.string = oData.name;
this.normalName.string = oData.name;
this.activeName1._updateRenderData(true);
this.activeName2._updateRenderData(true);
this.normalName._updateRenderData(true);
// if (oData.play_times) {
// let value = parseInt(oData.play_times);
// if (value > 10000) {
// this.textPlayTimes.string = parseInt(value / 10000) + "万+";
// } else {
// this.textPlayTimes.string = value;
// }
// }
if (oData.images.list[0]) {
Network.loadImageInNativeRuntime(
Common.TOPDRAW_IMAGE_SERVER_EDU_RIGHT + oData.images.list[0].fileUrl,
function (texture) {
self.pic.spriteFrame = new cc.SpriteFrame(texture);
}, null, this
);
}
// self.collectBg.spriteFrame.setRect(cc.rect(0, 0, 53, 171));
// self.collectPic.spriteFrame.setRect(cc.rect(0, 0, 30, 28));
// if (oData.isCollect) {
// cc.loader.loadRes("texture/ui/collect_heart", cc.Texture2D, function (err, texture) {
// var spriteFrame = new cc.SpriteFrame(texture, cc.rect(0, 28, 30, 28));
// self.collectPic.spriteFrame = spriteFrame;
// });
// } else {
// cc.loader.loadRes("texture/ui/collect_heart", cc.Texture2D, function (err, texture) {
// var spriteFrame = new cc.SpriteFrame(texture, cc.rect(0, 0, 30, 28));
// self.collectPic.spriteFrame = spriteFrame;
// });
// }
this.node.getComponent(FocusInfo).setTVLink(oData.tvlink);
},
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;
// cc.find("ActiveName/ActiveNameBg", nodeCellName).opacity = 0;
//如有滚动停止滚动
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": "e7901ff3-31d9-4586-a24e-ba06b9dc0a1f",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "de56a7ce-7552-4cdc-bc00-f83ab0cd723f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"clear_button": {
"ver": "1.0.4",
"uuid": "828266d7-375c-4ab0-b654-db585576594e",
"rawTextureUuid": "de56a7ce-7552-4cdc-bc00-f83ab0cd723f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 137,
"height": 126,
"rawWidth": 137,
"rawHeight": 130,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "d127fce9-a2d4-42e7-af2d-7ea7d709d4e2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"collection": {
"ver": "1.0.4",
"uuid": "96b728ce-bd15-4603-bc4f-d945a1420d09",
"rawTextureUuid": "d127fce9-a2d4-42e7-af2d-7ea7d709d4e2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 165,
"height": 40,
"rawWidth": 166,
"rawHeight": 40,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "e18c2844-5dfa-4d9f-8ba9-bf8f8bba015e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"collection_button": {
"ver": "1.0.4",
"uuid": "fb443772-0913-460b-8dfa-599834443089",
"rawTextureUuid": "e18c2844-5dfa-4d9f-8ba9-bf8f8bba015e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 176,
"height": 124,
"rawWidth": 176,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "f2cef226-0887-49f3-8ce1-e5d9182ea36f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"editor_button": {
"ver": "1.0.4",
"uuid": "d280bcbd-cf96-4d23-a0b2-245a9374328d",
"rawTextureUuid": "f2cef226-0887-49f3-8ce1-e5d9182ea36f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 137,
"height": 126,
"rawWidth": 137,
"rawHeight": 130,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "2a607f33-c197-407b-ab1a-9e991e39764e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"exitEditor_button": {
"ver": "1.0.4",
"uuid": "171d3929-fbaa-475e-a350-bc4cb2cf698e",
"rawTextureUuid": "2a607f33-c197-407b-ab1a-9e991e39764e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 137,
"height": 126,
"rawWidth": 137,
"rawHeight": 130,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "7d661a83-97c9-4649-a807-0f0b1b3538e4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"history_button": {
"ver": "1.0.4",
"uuid": "cafbb817-8e14-4f94-8071-733ee3859e0a",
"rawTextureUuid": "7d661a83-97c9-4649-a807-0f0b1b3538e4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 176,
"height": 124,
"rawWidth": 176,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "a1b3d15c-7ca7-46c5-ae33-f6659a74e6b4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"index_button": {
"ver": "1.0.4",
"uuid": "b8d38b8c-3423-44ac-bc70-4f95ea2a4cb8",
"rawTextureUuid": "a1b3d15c-7ca7-46c5-ae33-f6659a74e6b4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 137,
"height": 126,
"rawWidth": 137,
"rawHeight": 130,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d3cafea9-abb3-4608-accb-7713118a159b",
"isSubpackage": false,
"subpackageName": "",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "9ab097eb-65a3-478c-80d8-ba2205945aab",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_item_1": {
"ver": "1.0.4",
"uuid": "d4b2eadb-7be7-4e4c-b4dc-e42040e3abd3",
"rawTextureUuid": "9ab097eb-65a3-478c-80d8-ba2205945aab",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 308,
"height": 314,
"rawWidth": 308,
"rawHeight": 314,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "b912a0ba-0de6-4414-93d8-a55d33055d68",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_item_2": {
"ver": "1.0.4",
"uuid": "fe67856f-fb4c-4a5f-8210-d6ab958f940a",
"rawTextureUuid": "b912a0ba-0de6-4414-93d8-a55d33055d68",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 308,
"height": 314,
"rawWidth": 308,
"rawHeight": 314,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "b1bd5296-b988-4c6d-a422-ab1830dd2ba2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_item_3": {
"ver": "1.0.4",
"uuid": "5db3734a-0219-4ade-bdea-34ccea5cf66e",
"rawTextureUuid": "b1bd5296-b988-4c6d-a422-ab1830dd2ba2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 308,
"height": 314,
"rawWidth": 308,
"rawHeight": 314,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "f70fff6f-851b-4c8f-a0eb-14c8f173f102",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx": {
"ver": "1.0.4",
"uuid": "ae1ed7df-cf12-4399-a6ab-982fcf2eb8ca",
"rawTextureUuid": "f70fff6f-851b-4c8f-a0eb-14c8f173f102",
"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.3.1",
"uuid": "4ab0b6a3-1222-40e1-9321-0562c496ce5a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_1": {
"ver": "1.0.4",
"uuid": "ac23d39a-ce30-4fbd-9c98-1f89bbc0ac59",
"rawTextureUuid": "4ab0b6a3-1222-40e1-9321-0562c496ce5a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "acbfcc8f-48b5-40e2-9736-40038fb5279c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_10": {
"ver": "1.0.4",
"uuid": "8abc6dd5-e099-4f02-b584-cdf8ac6235cd",
"rawTextureUuid": "acbfcc8f-48b5-40e2-9736-40038fb5279c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "8b337b3b-0aa7-42e6-b24d-0d7f725b56a9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_2": {
"ver": "1.0.4",
"uuid": "52bdcef1-a19a-4692-ab60-297d30f03ba3",
"rawTextureUuid": "8b337b3b-0aa7-42e6-b24d-0d7f725b56a9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "1b00445a-198a-42e9-8839-ab3a659eab03",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_3": {
"ver": "1.0.4",
"uuid": "a14fec3f-7ec3-43d6-91eb-3c5623fc1890",
"rawTextureUuid": "1b00445a-198a-42e9-8839-ab3a659eab03",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "585144a0-9f93-46d8-8c74-773608253de5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_4": {
"ver": "1.0.4",
"uuid": "a270262a-3321-429f-9e3b-1b0f3a410c2e",
"rawTextureUuid": "585144a0-9f93-46d8-8c74-773608253de5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "4fdf9306-5a37-4496-9bc0-767da7cc171f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_5": {
"ver": "1.0.4",
"uuid": "c38e231a-094f-4260-800c-7cd671ae5d52",
"rawTextureUuid": "4fdf9306-5a37-4496-9bc0-767da7cc171f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "dcc91c2f-054a-4698-9147-ab6116241ae7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_6": {
"ver": "1.0.4",
"uuid": "d1b9a269-77f4-4a08-8c42-f1f8d891b928",
"rawTextureUuid": "dcc91c2f-054a-4698-9147-ab6116241ae7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "1c317b4b-0015-4ffd-956a-d804c550ccbf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_7": {
"ver": "1.0.4",
"uuid": "458f181f-9473-433b-97de-17a0f7f8fcc7",
"rawTextureUuid": "1c317b4b-0015-4ffd-956a-d804c550ccbf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "cfa0d43a-f785-4134-b3b3-d434278f72d0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_8": {
"ver": "1.0.4",
"uuid": "7b3dd3d7-2d78-447f-8415-8d1f191da0b7",
"rawTextureUuid": "cfa0d43a-f785-4134-b3b3-d434278f72d0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "f9f5436f-a24d-42c3-ade9-899762d7094d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"bg_xyx_9": {
"ver": "1.0.4",
"uuid": "24ffd093-4645-4b9f-ba08-3555cc9270fd",
"rawTextureUuid": "f9f5436f-a24d-42c3-ade9-899762d7094d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 135,
"rawWidth": 225,
"rawHeight": 135,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "c24126b9-fabb-47f9-a74f-13c5870be7d4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_1": {
"ver": "1.0.4",
"uuid": "a05221ff-b72c-4a2f-94b4-e15d079e34f9",
"rawTextureUuid": "c24126b9-fabb-47f9-a74f-13c5870be7d4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 166,
"height": 203,
"rawWidth": 166,
"rawHeight": 203,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "24c63c15-0b49-4be1-93f6-49bcdae7c461",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_10": {
"ver": "1.0.4",
"uuid": "50936ebc-91fe-4fc3-b041-4505d53c2082",
"rawTextureUuid": "24c63c15-0b49-4be1-93f6-49bcdae7c461",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 184,
"rawWidth": 225,
"rawHeight": 184,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "f5fbb7dd-03b4-4446-8ea7-fa70938b0ea1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_2": {
"ver": "1.0.4",
"uuid": "c445704b-8c01-4a50-b458-569366dbdc48",
"rawTextureUuid": "f5fbb7dd-03b4-4446-8ea7-fa70938b0ea1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 1,
"trimY": 0,
"width": 200,
"height": 183,
"rawWidth": 201,
"rawHeight": 183,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "cbf98085-e9df-42bb-a297-8f4920a7faaa",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_3": {
"ver": "1.0.4",
"uuid": "3428a7c1-2663-4abb-bed7-35e754ef78c6",
"rawTextureUuid": "cbf98085-e9df-42bb-a297-8f4920a7faaa",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 155,
"height": 199,
"rawWidth": 155,
"rawHeight": 199,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "b4db891a-18f8-479b-ba0e-53a480c4e913",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_4": {
"ver": "1.0.4",
"uuid": "f4692eb1-a389-43fc-be55-046e1f66de1e",
"rawTextureUuid": "b4db891a-18f8-479b-ba0e-53a480c4e913",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 232,
"height": 178,
"rawWidth": 232,
"rawHeight": 178,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "52890ddf-f4ed-40fb-9342-0855ccd4271a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_5": {
"ver": "1.0.4",
"uuid": "7702b97f-930d-4313-afd3-fc5bad0adb2e",
"rawTextureUuid": "52890ddf-f4ed-40fb-9342-0855ccd4271a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 215,
"height": 191,
"rawWidth": 215,
"rawHeight": 191,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "3de92181-de87-4d8c-842e-336638c1802d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_6": {
"ver": "1.0.4",
"uuid": "c0a3245c-ea5a-4689-a42e-28dcd403241e",
"rawTextureUuid": "3de92181-de87-4d8c-842e-336638c1802d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 242,
"height": 164,
"rawWidth": 242,
"rawHeight": 164,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.1",
"uuid": "896b93b0-453a-41ce-88f4-fac8709b30cf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"platformSettings": {},
"subMetas": {
"xyx_7": {
"ver": "1.0.4",
"uuid": "25ec6204-d95a-4d87-be44-1cf4c189f1f6",
"rawTextureUuid": "896b93b0-453a-41ce-88f4-fac8709b30cf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 188,
"height": 174,
"rawWidth": 188,
"rawHeight": 174,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file