Commit 9462ca1c authored by Tt's avatar Tt

UI拼接完成

parent 40e3d7f0
import { asyncDelay, onHomeworkFinish } from "../script/util"; import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent"; import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
import { Shop, Item } from "./shop"; import shop from "./model/shop";
import pg from "./pg"; import pg from "./pg";
import Api from "./net/http";
import user from "./model/user";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -25,37 +27,79 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -25,37 +27,79 @@ export default class SceneComponent extends MyCocosSceneComponent {
onLoadEnd() { onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考 // TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData(); this.login().then(() => {
this.initView(); this.initData();
this.initListener(); this.initView();
this.initEvent();
})
} }
login() {
return new Promise((resolve, reject) => {
Api.askUser().then(() => {
resolve('');
_cantouch = null; })
});
}
private _shop: Shop; _cantouch = null;
initData() { initData() {
// 所有全局变量 默认都是null // 所有全局变量 默认都是null
this._cantouch = true; this._cantouch = true;
this._shop = new Shop();
// this._shop.list[0] // this._shop.list[0]
user.coin;
} }
private home: cc.Node;
private kitchen: cc.Node;
private shop: cc.Node;
initView() { initView() {
this.initBg(); this.home = pg.view.find(this, "home");
this.kitchen = pg.view.find(this, "kitchen");
this.shop = pg.view.find(this, "shop");
// this.initBg();
// this.initPic(); // this.initPic();
// this.initBtn(); // this.initBtn();
// this.initIcon(); // this.initIcon();
let scroll = pg.view.find(this, "scroll"); // let scroll = pg.view.find(this, "scroll");
let svt = scroll.getComponent("svt"); // let svt = scroll.getComponent("svt");
// svt.items = // // svt.items =
svt.list = [1, 2, 3, 4, 5, 6, 76, 7]; // svt.list = [1, 2, 3, 4, 5, 6, 76, 7];
svt.updateItem = this.updateItem; // svt.updateItem = this.updateItem;
svt.target = this; // svt.target = this;
svt.addNum = 1; // svt.addNum = 1;
svt.flush(); // svt.flush();
}
initEvent() {
pg.view.touchOn(pg.view.find(this.home, "btn_kitchen"), this.onTouchKitchen, this);
pg.view.touchOn(pg.view.find(this.home, "btn_shop"), this.onTouchShop, this);
} }
//冰箱按钮
onTouchKitchen() {
this.kitchen.active = true;
}
//商店按钮
onTouchShop() {
this.shop.active = true;
}
updateItem(items, datas) { updateItem(items, datas) {
console.log(items); console.log(items);
console.log(datas); console.log(datas);
...@@ -67,10 +111,6 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -67,10 +111,6 @@ export default class SceneComponent extends MyCocosSceneComponent {
} }
initListener() {
}
playLocalAudio(audioName) { playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource); const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
......
{
"ver": "1.1.2",
"uuid": "93a9f04e-84ed-4b5f-99fd-17fcb6abe8ca",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
const Items = [
{
id: 1001,
name: "西瓜"
}
]
const Shops = [];
const Kitchen = [];
const USER = {
name: "小小香香",
coin: 100023,
level: 2,
growth: 30,
growthDaily: 0,
growthDailyMax: 100,
eatTime: new Date().getTime(),
useFurniture: [],
useClothes: [],
mood: "开心"
}
export { USER }
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "c7a342c3-a336-4d8a-aada-d97dc59c1ae2",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "d01a6cc2-496e-4b14-8f0c-81a799e3d4c5",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
...@@ -5,6 +5,8 @@ class Item { ...@@ -5,6 +5,8 @@ class Item {
public growthValue: number;//生长值 public growthValue: number;//生长值
public cost: number;//费用 public cost: number;//费用
public discount: number;//折扣 public discount: number;//折扣
public num: number;//拥有数量
public levelLimite: number;//等级限制
constructor(obj: any) { constructor(obj: any) {
this.type = obj.type; this.type = obj.type;
this.name = obj.name; this.name = obj.name;
...@@ -15,23 +17,4 @@ class Item { ...@@ -15,23 +17,4 @@ class Item {
} }
} }
class Shop { export default Item;
public _list: Array<Item> \ No newline at end of file
constructor() {
this._list = [];
}
parse(list: any) {
if (!list) return;
this._list = list.map(li => {
return new Item(li);
})
}
get list() {
return this._list;
}
}
export { Shop, Item };
{
"ver": "1.0.8",
"uuid": "37c492e3-1b92-4db5-b6be-802ecc1c0ecb",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import Item from "./item"
class Shop {
public _list: Array<Item>
constructor() {
this._list = [];
}
parse(list: any) {
if (!list) return;
this._list = list.map(li => {
return new Item(li);
})
}
get list() {
return this._list;
}
}
export default Shop;
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "7696c029-a1e7-49e2-887c-fd3791e8ded1", "uuid": "272bbc82-f59c-4e0c-bb1c-4bfb2f73d7eb",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
class User {
public name: string;
public coin: number;
public level: number;
public growth: number;
public growthDaily: number;
public growthDailyMax: number;
public eatTime: number;
public useFurniture: Array<number>;
public useClothes: Array<number>;
public mood: string;
constructor() {
}
parse(data) {
this.name = data.name;
this.coin = data.coin;
this.level = data.level;
this.growth = data.growth;
this.growthDaily = data.growthDaily;
this.growthDailyMax = data.growthDailyMax;
this.eatTime = data.eatTime;
this.useFurniture = data.useFurniture;
this.useClothes = data.useClothes;
}
}
let user = new User();
export default user;
// 游戏 : {
// 角色信息:{
// 名字
// 心情:开心|饥饿
// 金币
// 等级
// 成长值
// 每日成长值
// 每日成长值上限
// 上次吃东西的时间
// 当前使用的家具:[书柜,地毯,,,,,]对应的物品id
// 当前穿戴的服饰:[衣服,裤子,,,] 对应的物品id
// }
// 仓库:[
// {
// 物品id
// 物品类型
// 物品数量
// },
// {
// 物品id
// 物品类型
// 物品数量
// }
// ]
// 商城信息:[
// {
// 物品id
// 物品类型
// 名字
// 价格
// 特价
// 等级限制
// },
// ]
// 常量:{
// 物品列表:[
// 物品id
// 物品类型
// 名字
// 图片
// ]
// 等级经验表:{
// 等级
// 所需成长值
// 每日成长上限
// }
// }
// }
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "b09ecb5b-593a-4b9c-aaeb-67e8efc7ebd4",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "bb7f614f-8b91-48f3-a3d2-154872aa3a36",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
import pg from "../pg";
import { USER } from "../config/config"
import user from "../model/user";
//获取信息,购买物品,使用物品(吃东西),穿戴衣服/更换家具
class Api {
static askUser() {
return new Promise((resolve, reject) => {
pg.http.send("GET", "http://www.baidu.com", {}).then((data: any) => {
let info = USER;
user.parse(info);
resolve('');
})
});
}
}
export default Api;
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "cc085a9d-0b38-4bde-a0eb-316c806a0a58",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
...@@ -307,7 +307,7 @@ let pg = { ...@@ -307,7 +307,7 @@ let pg = {
}, },
http: { http: {
//http访问 //http访问
send: function (type, url, data, callback) { send: function (type, url, data) {
return new Promise((resolve) => { return new Promise((resolve) => {
return setTimeout(() => { return setTimeout(() => {
return resolve({ status: 200 }); return resolve({ status: 200 });
...@@ -323,7 +323,6 @@ let pg = { ...@@ -323,7 +323,6 @@ let pg = {
try { try {
let resp = xhr.responseText; let resp = xhr.responseText;
pg.logger.d("resp->" + JSON.stringify(resp)); pg.logger.d("resp->" + JSON.stringify(resp));
callback(resp);
resolve(resp); resolve(resp);
} catch (e) { } catch (e) {
} }
......
{
"ver": "1.1.2",
"uuid": "7ac593b3-857c-48a7-8939-7a6f5aa7fbe0",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "839f7652-2b30-4884-817d-c7d484afbc58",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "9a5342eb-8478-44cc-b46b-ab2d3f3585a6",
"subMetas": {}
}
\ No newline at end of file
{"name":"eating","imagePath":"eating_tex.png","SubTexture":[{"name":"吃饭-场景/凳子","x":258,"height":96,"y":109,"width":210},{"name":"吃饭-场景/身体","x":1,"height":166,"y":142,"width":120},{"name":"吃饭-场景/桌子","x":1,"height":139,"y":1,"width":255},{"name":"吃饭-场景/左手","x":192,"height":80,"y":197,"width":46},{"name":"吃饭-场景/右袖子","x":123,"height":55,"y":259,"width":48},{"name":"吃饭-场景/围嘴","x":123,"height":53,"y":142,"width":94},{"name":"吃饭-场景/tou_","x":258,"height":106,"y":1,"width":223},{"name":"吃饭-场景/嘴巴","x":219,"height":7,"y":142,"width":22},{"name":"吃饭-场景/吃","x":100,"height":17,"y":310,"width":16},{"name":"吃饭-场景/眼睛","x":52,"height":18,"y":342,"width":53},{"name":"吃饭-场景/鼻子","x":123,"height":60,"y":197,"width":67},{"name":"吃饭-场景/叉子","x":52,"height":30,"y":310,"width":46},{"name":"吃饭-场景/右手","x":1,"height":46,"y":310,"width":49}],"height":512,"width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "05742965-e900-4381-860f-85c03525f83c",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3b9d250d-4a3e-4ab4-b393-a53a2826df58",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"eating_tex": {
"ver": "1.0.4",
"uuid": "db1df1e8-198e-4b68-afd2-dec065650d49",
"rawTextureUuid": "3b9d250d-4a3e-4ab4-b393-a53a2826df58",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -15,
"offsetY": 75.5,
"trimX": 1,
"trimY": 1,
"width": 480,
"height": 359,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "85f39d42-c6d1-481c-a092-79440ba54647",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "7a783421-6db0-47e9-a39a-c825dd0e27a4",
"subMetas": {}
}
\ No newline at end of file
{"name":"walkinghungryhappy","imagePath":"walkinghungryhappy_tex.png","SubTexture":[{"name":"走路/阴影","x":1,"height":37,"y":334,"width":143},{"name":"走路/右腿","x":83,"height":77,"y":401,"width":62},{"name":"走路/左腿","x":1,"height":68,"y":435,"width":62},{"name":"走路/右手","x":147,"height":70,"y":401,"width":60},{"name":"走路/衣服2","x":1,"height":145,"y":1,"width":178},{"name":"走路/衣服","x":106,"height":100,"y":148,"width":95},{"name":"走路/左手","x":181,"height":83,"y":1,"width":64},{"name":"走路/围巾","x":1,"height":60,"y":373,"width":80},{"name":"走路/围巾2","x":146,"height":65,"frameY":0,"y":334,"frameHeight":65,"frameX":0,"frameWidth":78,"width":77},{"name":"走路/左耳","x":106,"height":82,"y":250,"width":107},{"name":"走路/右耳","x":1,"height":65,"y":257,"width":88},{"name":"走路/脸","x":1,"height":107,"y":148,"width":103},{"name":"走路/嘴巴","x":65,"height":10,"y":480,"width":23},{"name":"走路/鼻子","x":181,"height":60,"y":86,"width":67},{"name":"走路/眼珠","x":83,"height":21,"y":373,"width":50},{"name":"走路/眼皮","x":147,"height":32,"y":473,"width":59},{"name":"走路/饿","x":208,"height":35,"y":473,"width":38}],"height":512,"width":256}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "e9ae3350-11dc-4713-b44a-339c5b1a133f",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "eb7518a0-2446-4d79-9413-4f2220a31a3a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 512,
"platformSettings": {},
"subMetas": {
"walkinghungryhappy_tex": {
"ver": "1.0.4",
"uuid": "2623440e-4d72-4226-9629-700f4de9d543",
"rawTextureUuid": "eb7518a0-2446-4d79-9413-4f2220a31a3a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -3.5,
"offsetY": 1.5,
"trimX": 1,
"trimY": 1,
"width": 247,
"height": 507,
"rawWidth": 256,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "dd75d782-cf8d-41c7-bc57-c219e02da601",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "93be403c-9bc1-469a-8504-8a7f9148354b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 156,
"height": 592,
"platformSettings": {},
"subMetas": {
"bg_cabine": {
"ver": "1.0.4",
"uuid": "b1de8122-41cd-466d-bb85-988793f01f43",
"rawTextureUuid": "93be403c-9bc1-469a-8504-8a7f9148354b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 20.5,
"offsetY": -37.5,
"trimX": 41,
"trimY": 82,
"width": 115,
"height": 503,
"rawWidth": 156,
"rawHeight": 592,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b4e82bf3-e6d1-4dcb-8fb7-d77cd62db125",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 756,
"height": 340,
"platformSettings": {},
"subMetas": {
"bg_carpet": {
"ver": "1.0.4",
"uuid": "abe7ba74-096e-4747-93f3-749c9092d389",
"rawTextureUuid": "b4e82bf3-e6d1-4dcb-8fb7-d77cd62db125",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -8,
"offsetY": -2.5,
"trimX": 84,
"trimY": 78,
"width": 572,
"height": 189,
"rawWidth": 756,
"rawHeight": 340,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1c2a8c57-ba43-4fa5-a704-517abc0cdc96",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_floor": {
"ver": "1.0.4",
"uuid": "7d9d2521-e3b3-4e5e-91dd-94b67f8be705",
"rawTextureUuid": "1c2a8c57-ba43-4fa5-a704-517abc0cdc96",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -237,
"trimX": 0,
"trimY": 474,
"width": 1334,
"height": 276,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9f9e903a-13f0-40bc-97c8-73e83bbe326e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 550,
"height": 269,
"platformSettings": {},
"subMetas": {
"bg_flower": {
"ver": "1.0.4",
"uuid": "540cc7d2-c0ac-4fca-94d9-ee129eb4870e",
"rawTextureUuid": "9f9e903a-13f0-40bc-97c8-73e83bbe326e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -9.5,
"trimX": 53,
"trimY": 59,
"width": 444,
"height": 170,
"rawWidth": 550,
"rawHeight": 269,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "048e2b2d-dc2d-4f23-8d0e-fadd6d94f91b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 254,
"height": 360,
"platformSettings": {},
"subMetas": {
"bg_lamp": {
"ver": "1.0.4",
"uuid": "1b376b4d-fce0-416d-981b-85726dc8d4b2",
"rawTextureUuid": "048e2b2d-dc2d-4f23-8d0e-fadd6d94f91b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": -35,
"trimX": 30,
"trimY": 86,
"width": 173,
"height": 258,
"rawWidth": 254,
"rawHeight": 360,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8e3604da-2d18-4ca6-905c-712218ffe7d0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_light": {
"ver": "1.0.4",
"uuid": "71d204f6-dae0-4e4b-9de5-2bde3476126b",
"rawTextureUuid": "8e3604da-2d18-4ca6-905c-712218ffe7d0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -52.5,
"offsetY": -25,
"trimX": 0,
"trimY": 50,
"width": 1229,
"height": 700,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fc302d93-9acd-41a3-9ee6-ddd0a31c6dfd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 264,
"height": 110,
"platformSettings": {},
"subMetas": {
"bg_pet_information": {
"ver": "1.0.4",
"uuid": "81bf0b87-6d32-4e00-8d06-4033e294839c",
"rawTextureUuid": "fc302d93-9acd-41a3-9ee6-ddd0a31c6dfd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 264,
"height": 110,
"rawWidth": 264,
"rawHeight": 110,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a2be9896-67e1-428c-abd7-383ddadf75a1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 408,
"height": 288,
"platformSettings": {},
"subMetas": {
"bg_photo": {
"ver": "1.0.4",
"uuid": "555a92c7-617e-4ebd-8a20-28b08a3d5817",
"rawTextureUuid": "a2be9896-67e1-428c-abd7-383ddadf75a1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0.5,
"trimX": 71,
"trimY": 35,
"width": 265,
"height": 217,
"rawWidth": 408,
"rawHeight": 288,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a7351076-a5ba-4ca1-ba49-f9461515e3c6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 235,
"height": 20,
"platformSettings": {},
"subMetas": {
"bg_progress": {
"ver": "1.0.4",
"uuid": "6177838f-7123-4a52-8637-71c90741db88",
"rawTextureUuid": "a7351076-a5ba-4ca1-ba49-f9461515e3c6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 234,
"height": 19,
"rawWidth": 235,
"rawHeight": 20,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "063a41d8-93e3-4e86-8cd8-0735d98fe957",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 235,
"height": 20,
"platformSettings": {},
"subMetas": {
"bg_progressbar": {
"ver": "1.0.4",
"uuid": "714f8c0d-c45a-4c89-b047-68d305b3e44f",
"rawTextureUuid": "063a41d8-93e3-4e86-8cd8-0735d98fe957",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 235,
"height": 20,
"rawWidth": 235,
"rawHeight": 20,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e67b8e7a-18ee-4371-820d-80a428a92e8a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 491,
"height": 283,
"platformSettings": {},
"subMetas": {
"bg_sofa": {
"ver": "1.0.4",
"uuid": "15cc6916-8fec-4879-b876-b1b9eaf16ab6",
"rawTextureUuid": "e67b8e7a-18ee-4371-820d-80a428a92e8a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -21.5,
"trimX": 67,
"trimY": 79,
"width": 354,
"height": 168,
"rawWidth": 491,
"rawHeight": 283,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c2ac5128-42d4-48c0-905a-09f43ae3b183",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_wall": {
"ver": "1.0.4",
"uuid": "b39a9ffd-0bb0-47c4-902b-cebac64ac87d",
"rawTextureUuid": "c2ac5128-42d4-48c0-905a-09f43ae3b183",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -85,
"trimX": 0,
"trimY": 384,
"width": 1334,
"height": 152,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "008288b5-a0fc-4c5c-9d69-41dc0555ce47",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_wallpaper": {
"ver": "1.0.4",
"uuid": "c37d1a01-6305-4967-a5c5-791ea2747281",
"rawTextureUuid": "008288b5-a0fc-4c5c-9d69-41dc0555ce47",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 750,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "588f0f50-8795-4727-93d6-024db1842d9b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 585,
"height": 421,
"platformSettings": {},
"subMetas": {
"bg_window": {
"ver": "1.0.4",
"uuid": "0e187172-54d7-42a0-937f-c79d05264f47",
"rawTextureUuid": "588f0f50-8795-4727-93d6-024db1842d9b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -2.5,
"trimX": 39,
"trimY": 41,
"width": 504,
"height": 344,
"rawWidth": 585,
"rawHeight": 421,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "058bd1f0-e905-4a06-82c1-d8e372a1ad12",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 172,
"height": 454,
"platformSettings": {},
"subMetas": {
"btn_kitchen": {
"ver": "1.0.4",
"uuid": "425d3757-2701-49b9-ac6e-faa410b75c97",
"rawTextureUuid": "058bd1f0-e905-4a06-82c1-d8e372a1ad12",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -5,
"offsetY": -30,
"trimX": 15,
"trimY": 67,
"width": 132,
"height": 380,
"rawWidth": 172,
"rawHeight": 454,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "74e7dce8-165e-430e-a2f3-c69eb35b9d17",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 263,
"height": 98,
"platformSettings": {},
"subMetas": {
"btn_shop": {
"ver": "1.0.4",
"uuid": "60d972cb-4568-464d-a784-d343cc7f7441",
"rawTextureUuid": "74e7dce8-165e-430e-a2f3-c69eb35b9d17",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 263,
"height": 98,
"rawWidth": 263,
"rawHeight": 98,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b0058a54-ec73-49f3-826f-c5cd240f645d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 47,
"height": 46,
"platformSettings": {},
"subMetas": {
"icon_happy": {
"ver": "1.0.4",
"uuid": "4eed7b8b-b4ea-4cd2-bbee-c42c3794f3b8",
"rawTextureUuid": "b0058a54-ec73-49f3-826f-c5cd240f645d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 47,
"height": 46,
"rawWidth": 47,
"rawHeight": 46,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a746199d-0483-4066-9a7d-3909a664f952",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 47,
"height": 46,
"platformSettings": {},
"subMetas": {
"icon_hungry": {
"ver": "1.0.4",
"uuid": "ee40a415-dd6d-4dd5-bc66-dccd363486d9",
"rawTextureUuid": "a746199d-0483-4066-9a7d-3909a664f952",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 47,
"height": 46,
"rawWidth": 47,
"rawHeight": 46,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "c2b4bd89-4111-42a2-9155-9dffd953fc1c",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "652bae30-11ff-452a-b54e-2a3a42a07ea8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 232,
"height": 52,
"platformSettings": {},
"subMetas": {
"bg_coin": {
"ver": "1.0.4",
"uuid": "522747f1-766e-4573-aed9-e726cc29e0da",
"rawTextureUuid": "652bae30-11ff-452a-b54e-2a3a42a07ea8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 232,
"height": 52,
"rawWidth": 232,
"rawHeight": 52,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "201ddda0-b5d8-428c-b0de-c8727b12d041",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 214,
"height": 237,
"platformSettings": {},
"subMetas": {
"bg_food": {
"ver": "1.0.4",
"uuid": "770c908b-f439-437b-9bd7-0a01a7eb3977",
"rawTextureUuid": "201ddda0-b5d8-428c-b0de-c8727b12d041",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 214,
"height": 237,
"rawWidth": 214,
"rawHeight": 237,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "24167c16-7a29-4835-9d2a-33266114ec7d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_green": {
"ver": "1.0.4",
"uuid": "d88668a8-d2ac-416a-97df-5f5fd170805c",
"rawTextureUuid": "24167c16-7a29-4835-9d2a-33266114ec7d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 750,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9b22a6b4-1a7c-4304-be27-9f78c5384346",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 66,
"height": 53,
"platformSettings": {},
"subMetas": {
"bg_number": {
"ver": "1.0.4",
"uuid": "8ab5b6a7-960a-4925-bf72-e0f5774762d0",
"rawTextureUuid": "9b22a6b4-1a7c-4304-be27-9f78c5384346",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 66,
"height": 53,
"rawWidth": 66,
"rawHeight": 53,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c136f8f9-27d0-4a22-b976-f1c950723e4d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 124,
"platformSettings": {},
"subMetas": {
"bg_top": {
"ver": "1.0.4",
"uuid": "07fecf47-9734-460f-869e-c0590b0ec1b7",
"rawTextureUuid": "c136f8f9-27d0-4a22-b976-f1c950723e4d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 124,
"rawWidth": 1334,
"rawHeight": 124,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8c1db799-1185-488b-851a-d8dd3563435c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 50,
"height": 39,
"platformSettings": {},
"subMetas": {
"btn_eat_yellow": {
"ver": "1.0.4",
"uuid": "6734e36f-9515-4320-b3ab-d3212634e223",
"rawTextureUuid": "8c1db799-1185-488b-851a-d8dd3563435c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 50,
"height": 39,
"rawWidth": 50,
"rawHeight": 39,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "79e53b5e-a59a-4efe-8bec-3e873bd823ce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 82,
"height": 65,
"platformSettings": {},
"subMetas": {
"btn_return_blue": {
"ver": "1.0.4",
"uuid": "265b7a44-c02b-4ec4-8dbe-ea306d558479",
"rawTextureUuid": "79e53b5e-a59a-4efe-8bec-3e873bd823ce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 82,
"height": 65,
"rawWidth": 82,
"rawHeight": 65,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f7c404a6-2836-45a9-9ad6-596734e4449c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 114,
"height": 121,
"platformSettings": {},
"subMetas": {
"icon_apple": {
"ver": "1.0.4",
"uuid": "7f1caa6f-4c2d-40e2-b50a-b5aaa5942043",
"rawTextureUuid": "f7c404a6-2836-45a9-9ad6-596734e4449c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 1,
"trimY": 0,
"width": 113,
"height": 121,
"rawWidth": 114,
"rawHeight": 121,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5033e3cc-8b7c-4e0d-b99a-ad45bbd9de13",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 136,
"height": 110,
"platformSettings": {},
"subMetas": {
"icon_banana": {
"ver": "1.0.4",
"uuid": "f0270462-5cc0-4792-b674-01fbd9945664",
"rawTextureUuid": "5033e3cc-8b7c-4e0d-b99a-ad45bbd9de13",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 136,
"height": 110,
"rawWidth": 136,
"rawHeight": 110,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7c1130f5-0e5b-4f65-addb-6afc203090f1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 115,
"platformSettings": {},
"subMetas": {
"icon_bread": {
"ver": "1.0.4",
"uuid": "00cc828c-a69c-49ef-82e7-fa30b7266662",
"rawTextureUuid": "7c1130f5-0e5b-4f65-addb-6afc203090f1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 120,
"height": 115,
"rawWidth": 120,
"rawHeight": 115,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "60da8427-5a18-443b-9683-4589f9607de6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 125,
"height": 117,
"platformSettings": {},
"subMetas": {
"icon_carrot": {
"ver": "1.0.4",
"uuid": "e431ab78-f754-4ed8-aeec-873fde6c1d28",
"rawTextureUuid": "60da8427-5a18-443b-9683-4589f9607de6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 125,
"height": 117,
"rawWidth": 125,
"rawHeight": 117,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "995802ee-31d0-4551-937e-1ef361779e7b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 126,
"height": 116,
"platformSettings": {},
"subMetas": {
"icon_cheese": {
"ver": "1.0.4",
"uuid": "2fb78ff2-a916-4701-8ae2-e90ec31f1188",
"rawTextureUuid": "995802ee-31d0-4551-937e-1ef361779e7b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 126,
"height": 116,
"rawWidth": 126,
"rawHeight": 116,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "43a95529-e01d-4b4b-a21e-1ed9f872351b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 124,
"height": 118,
"platformSettings": {},
"subMetas": {
"icon_orange": {
"ver": "1.0.4",
"uuid": "23d19a14-0233-47b9-9992-eb19ae5c374a",
"rawTextureUuid": "43a95529-e01d-4b4b-a21e-1ed9f872351b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 124,
"height": 118,
"rawWidth": 124,
"rawHeight": 118,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b9604568-ef1a-4dbf-9a24-962ddb88d7e3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 137,
"height": 112,
"platformSettings": {},
"subMetas": {
"icon_piza": {
"ver": "1.0.4",
"uuid": "75af1abd-0d80-47c1-b137-b876e499beda",
"rawTextureUuid": "b9604568-ef1a-4dbf-9a24-962ddb88d7e3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 137,
"height": 112,
"rawWidth": 137,
"rawHeight": 112,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9ad072e5-976e-4e54-b28e-7029cfa7218d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 103,
"height": 129,
"platformSettings": {},
"subMetas": {
"icon_tomato": {
"ver": "1.0.4",
"uuid": "0d95f290-0a78-4d4b-bc30-0447b5ffb65d",
"rawTextureUuid": "9ad072e5-976e-4e54-b28e-7029cfa7218d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 103,
"height": 129,
"rawWidth": 103,
"rawHeight": 129,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "1b16e251-00b1-4923-b5a6-5d260c712cb9",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment