Commit 9462ca1c authored by Tt's avatar Tt

UI拼接完成

parent 40e3d7f0
This source diff could not be displayed because it is too large. You can view the blob instead.
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
{"name":"eating","version":"5.5","armature":[{"name":"Armature","slot":[{"name":"凳子","color":{},"parent":"root"},{"name":"身体","color":{},"z":1,"parent":"root"},{"name":"桌子","color":{},"z":2,"parent":"root"},{"name":"左手","color":{},"z":3,"parent":"左手1"},{"name":"右袖子","color":{},"z":4,"parent":"root"},{"name":"围嘴","color":{},"z":5,"parent":"root"},{"name":"tou_","color":{},"z":6,"parent":"tou_"},{"name":"嘴巴","color":{},"z":7,"parent":"嘴巴"},{"name":"吃","color":{},"z":8,"parent":"吃"},{"name":"眼睛","color":{},"z":9,"parent":"眼睛"},{"name":"鼻子","color":{},"z":10,"parent":"鼻子1"},{"name":"叉子","color":{},"z":11,"parent":"叉子"},{"name":"右手","color":{},"z":12,"parent":"右手1"}],"bone":[{"name":"root","transform":{}},{"name":"tou_","transform":{"x":224.75,"skY":-89.0804,"y":84.7,"skX":-89.0804},"length":31,"parent":"root"},{"name":"左手","transform":{"x":183.45,"skY":105.5355,"y":104.75,"skX":105.5355},"length":26,"parent":"root"},{"name":"右手","transform":{"x":286.35,"skY":-135.5185,"y":141.55,"skX":-135.5185},"length":15,"parent":"root"},{"name":"鼻子","transform":{"x":14.9979,"skY":75.2703,"y":12.2109,"skX":75.2703},"length":18,"parent":"tou_"},{"name":"左手1","transform":{"x":33.6608,"skY":-33.1913,"y":-3.8046,"skX":-33.1913},"length":22,"parent":"左手"},{"name":"嘴巴","transform":{"x":-6.9595,"y":-0.5384},"parent":"tou_"},{"name":"眼睛","transform":{"x":33.5974,"skY":134.0804,"y":-22.2421,"skX":134.0804},"parent":"tou_"},{"name":"右手1","transform":{"x":23.0539,"skY":-8.6654,"y":-0.1449,"skX":-8.6654},"length":17,"parent":"右手"},{"name":"鼻子1","transform":{"x":25.8731,"skY":-50.0393,"y":-4.5042,"skX":-50.0393},"length":24,"parent":"鼻子"},{"name":"叉子","transform":{"x":26.1068,"skY":-12.2047,"y":-1.7602,"skX":-12.2047},"length":18,"parent":"右手1"},{"name":"吃","transform":{"x":5.7676,"skY":44.0804,"y":-17.6448,"skX":44.0804},"parent":"嘴巴"}],"aabb":{"x":107.00000000000003,"height":279.2174053943726,"y":1.4210854715202004e-14,"width":257},"animation":[{"name":"eating","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"tou_","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":18,"rotate":-4.276,"tweenEasing":0},{"duration":26}],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子","rotateFrame":[{"duration":16,"tweenEasing":0},{"duration":26,"rotate":-5.8639,"tweenEasing":0},{"duration":18}],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子1","rotateFrame":[{"duration":16,"tweenEasing":0},{"duration":26,"rotate":-3.0317,"curve":[0,0,0.5,1]},{"duration":18}],"translateFrame":[{"tweenEasing":0,"duration":16},{"curve":[0,0,0.5,1],"x":-1.0072,"y":-4.0623,"duration":26},{"duration":18}],"scaleFrame":[]},{"name":"眼睛","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":-1.9263,"y":-4.8426,"duration":22},{"tweenEasing":0,"x":-1.9263,"y":-4.8426,"duration":12},{"tweenEasing":0,"duration":16},{"duration":0}],"scaleFrame":[]},{"name":"嘴巴","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"x":2.0822,"y":-2.3979,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"x":2.0822,"y":-2.3979,"duration":15},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":15},{"tweenEasing":0,"y":1.12,"duration":15},{"tweenEasing":0,"duration":15},{"tweenEasing":0,"y":1.12,"duration":15},{"duration":0}]},{"name":"吃","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"x":0.8,"y":0.8,"duration":12},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":0.8,"y":0.8,"duration":12},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":0.8,"y":0.8,"duration":12},{"duration":0}]},{"name":"左手","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左手1","rotateFrame":[{"duration":16,"tweenEasing":0},{"duration":20,"rotate":-9.234,"curve":[0,0,0.5,1]},{"duration":24}],"translateFrame":[{"tweenEasing":0,"duration":16},{"curve":[0,0,0.5,1],"x":3.8444,"y":-6.4959,"duration":20},{"duration":24}],"scaleFrame":[]},{"name":"右手","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右手1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":18,"rotate":11.9567,"curve":[0,0,0.5,1]},{"duration":14,"rotate":-3.791,"tweenEasing":0},{"duration":18,"rotate":10.339,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":10},{"curve":[0,0,0.5,1],"x":0.3371,"y":4.1211,"duration":18},{"tweenEasing":0,"x":1.2161,"y":-8.8233,"duration":14},{"tweenEasing":0,"x":1.2314,"y":-3.2939,"duration":18},{"duration":0}],"scaleFrame":[]},{"name":"叉子","rotateFrame":[{"duration":18,"curve":[0,0,0.5,1]},{"duration":22,"rotate":12.6512,"curve":[0,0,0.5,1]},{"duration":20,"rotate":-13.0124,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]}],"playTimes":0,"ffd":[],"slot":[{"name":"凳子","displayFrame":[],"colorFrame":[]},{"name":"身体","displayFrame":[],"colorFrame":[]},{"name":"桌子","displayFrame":[],"colorFrame":[]},{"name":"左手","displayFrame":[],"colorFrame":[]},{"name":"右袖子","displayFrame":[],"colorFrame":[]},{"name":"围嘴","displayFrame":[],"colorFrame":[]},{"name":"tou_","displayFrame":[],"colorFrame":[]},{"name":"嘴巴","displayFrame":[],"colorFrame":[]},{"name":"吃","displayFrame":[],"colorFrame":[]},{"name":"眼睛","displayFrame":[],"colorFrame":[]},{"name":"鼻子","displayFrame":[],"colorFrame":[]},{"name":"叉子","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[],"colorFrame":[]}],"ik":[],"duration":60}],"defaultActions":[{"gotoAndPlay":"eating"}],"skin":[{"name":"","slot":[{"name":"凳子","display":[{"name":"吃饭-场景/凳子","transform":{"x":250,"y":229},"type":"image","path":"吃饭-场景/凳子"}]},{"name":"吃","display":[{"name":"吃饭-场景/吃","transform":{"x":1.8031,"skY":45,"y":0.2475,"skX":45},"type":"image","path":"吃饭-场景/吃"}]},{"name":"身体","display":[{"name":"吃饭-场景/身体","transform":{"x":234,"y":164.2174},"type":"image","path":"吃饭-场景/身体"}]},{"name":"桌子","display":[{"name":"吃饭-场景/桌子","transform":{"x":236.5,"y":209.7174},"type":"image","path":"吃饭-场景/桌子"}]},{"name":"左手","display":[{"bonePose":[2,-0.2678357178767734,0.9634645962511718,-0.9634645962511718,-0.2678357178767734,183.45,104.75,5,0.30329707991543,0.9528960495850392,-0.9528960495850392,0.30329707991543,178.1,138.2],"userEdges":[],"slotPose":[1,5.551115123125783e-17,-5.551115123125783e-17,1,179.72231254799843,127.21740539437259],"weights":[2,2,0.8420482987017607,5,0.15795170129823935,2,2,0.8362586790717128,5,0.16374132092828725,2,2,0.8680503987057754,5,0.1319496012942245,2,2,0.8873232198041077,5,0.11267678019589236,2,2,0.8914284104750269,5,0.10857158952497312,2,2,0.8824132735149798,5,0.11758672648502018,2,2,0.7305059871847644,5,0.2694940128152355,2,2,0.599991497702191,5,0.40000850229780904,2,2,0.5040215553950403,5,0.49597844460495966,2,2,0.43830299531778427,5,0.5616970046822156,2,2,0.3107439671354922,5,0.6892560328645079,2,2,0.17626932521717742,5,0.8237306747828225,2,2,0.07299333804422169,5,0.9270066619557783,2,2,0.05035228587260696,5,0.949647714127393,2,2,0.1563584828623854,5,0.8436415171376146,2,2,0.20710449798447808,5,0.792895502015522,2,2,0.2597370625845222,5,0.7402629374154778,2,2,0.335669527631948,5,0.664330472368052,2,2,0.5153413349560595,5,0.48465866504394056,2,2,0.7610044915342021,5,0.2389955084657978],"transform":{"x":-9.9732,"skY":-72.3443,"y":-4.8769,"skX":-72.3443},"type":"mesh","width":46,"name":"吃饭-场景/左手","height":80,"vertices":[23,-29.3,21.75,-38.85,15.15,-40,10.05,-40,0.6,-40,-9.4,-30.6,-17.45,-14.7,-23,-1.35,-23,10.3,-23,19.4,-16.5,28.3,-10.65,40,-1.7,40,9.25,40,23,40,23,27.5,20.75,21.55,23,17.55,23,2.5,23,-15.75],"path":"吃饭-场景/左手","triangles":[3,5,19,5,6,19,13,14,15,16,13,15,3,19,0,2,3,0,1,2,0,6,7,18,16,17,18,8,16,18,7,8,18,19,6,18,8,10,16,4,5,3,12,13,16,10,12,16,8,9,10,10,11,12],"uvs":[1,0.13375,0.97283,0.01437,0.82935,0,0.71848,0,0.51304,0,0.29565,0.1175,0.12065,0.31625,0,0.48312,0,0.62875,0,0.7425,0.1413,0.85375,0.26848,1,0.46304,1,0.70109,1,1,1,1,0.84375,0.95109,0.76937,1,0.71937,1,0.53125,1,0.30312],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,0]}]},{"name":"眼睛","display":[{"name":"吃饭-场景/眼睛","transform":{"x":13.2229,"skY":-45,"y":-15.6978,"skX":-45},"type":"image","path":"吃饭-场景/眼睛"}]},{"name":"右袖子","display":[{"name":"吃饭-场景/右袖子","transform":{"x":274,"y":110.5},"type":"image","path":"吃饭-场景/右袖子"}]},{"name":"叉子","display":[{"name":"吃饭-场景/叉子","transform":{"x":3.0432,"skY":156.3886,"y":0.4705,"skX":156.3886},"type":"image","path":"吃饭-场景/叉子"}]},{"name":"围嘴","display":[{"name":"吃饭-场景/围嘴","transform":{"x":222,"y":106.5},"type":"image","path":"吃饭-场景/围嘴"}]},{"name":"右手","display":[{"bonePose":[3,-0.7134767218727708,-0.7006789331396263,0.7006789331396259,-0.7134767218727711,286.35,141.55,8,-0.8108996116451956,-0.5851852867542643,0.5851852867542634,-0.8108996116451967,269.8,125.49999999999999],"userEdges":[],"slotPose":[1.0000000000000018,-2.220446049250313e-16,2.7755575615628914e-16,1.0000000000000018,270.50000000000006,126.21740539437249],"weights":[1,3,1,2,3,0.79,8,0.21,2,3,0.3743624014801566,8,0.6256375985198434,2,3,0.2680054749958317,8,0.7319945250041683,2,3,0.15581135085198394,8,0.8441886491480161,2,3,0.11611046371537675,8,0.8838895362846232,2,3,0.06362985792825135,8,0.9363701420717486,2,3,0.08430414174025984,8,0.9156958582597401,2,3,0.15479707010341578,8,0.8452029298965843,2,3,0.2937987093373498,8,0.7062012906626501,2,3,0.4623917838801574,8,0.5376082161198426,2,3,0.5402386788667431,8,0.45976132113325685,2,3,0.6162809902011444,8,0.38371900979885554,2,3,0.7735796061604149,8,0.22642039383958518,2,3,0.9152531899105263,8,0.08474681008947375,2,3,0.9280801411808838,8,0.07191985881911615,2,3,0.9355046932458718,8,0.0644953067541282,2,3,0.9,8,0.1,1,3,1,1,3,1],"transform":{"x":-0.9874,"skY":144.1839,"y":-0.1721,"skX":144.1839},"type":"mesh","width":49,"name":"吃饭-场景/右手","height":46,"vertices":[23.4,-3.55,15.55,-6.25,5.55,-17.6,-1.9,-23,-9.15,-23,-14.45,-23,-20.75,-16.85,-24.5,-9.9,-24.5,-2.3,-24.5,5.7,-16.3,15.35,-8.9,20.8,-3.2,23,4.85,23,12.7,23,20.15,23,23.45,17.8,24.5,11.55,24.5,4.65,24.5,-0.45],"path":"吃饭-场景/右手","triangles":[0,1,19,14,16,17,14,17,18,1,14,18,19,1,18,13,14,1,14,15,16,2,10,1,10,11,1,12,13,1,11,12,1,8,10,2,7,8,6,6,8,4,3,4,2,4,8,2,8,9,10,5,6,4],"uvs":[0.97755,0.42283,0.81735,0.36413,0.61327,0.11739,0.46122,0,0.31327,0,0.2051,0,0.07653,0.1337,0,0.28478,0,0.45,0,0.62391,0.16735,0.8337,0.31837,0.95217,0.43469,1,0.59898,1,0.75918,1,0.91122,1,0.97857,0.88696,1,0.75109,1,0.60109,1,0.49022],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,0]}]},{"name":"tou_","display":[{"name":"吃饭-场景/tou_","transform":{"x":31.5956,"skY":89.0804,"y":-6.758,"skX":89.0804},"type":"image","path":"吃饭-场景/tou_"}]},{"name":"鼻子","display":[{"bonePose":[4,0.9710923119990392,-0.2387042554634511,0.2387042554634511,0.9710923119990392,237.19999999999996,69.90000000000003,9,0.44073242993643796,-0.89763852702651,0.89763852702651,0.44073242993643796,261.25,59.350000000000016],"userEdges":[],"slotPose":[0.9999999999999998,-6.106226635438361e-16,6.106226635438361e-16,0.9999999999999998,247.5,53.00000000000002],"weights":[2,4,0.05844899863708813,9,0.9415510013629119,2,4,0.09405060237909735,9,0.9059493976209027,2,4,0.09495165058776311,9,0.9050483494122369,2,4,0.09781352179212008,9,0.90218647820788,2,4,0.12853096761591198,9,0.871469032384088,2,4,0.1361389899027204,9,0.8638610100972796,2,4,0.3300787254451926,9,0.6699212745548074,2,4,0.7045409262637511,9,0.2954590737362489,2,4,0.7957762346627341,9,0.20422376533726594,2,4,0.91,9,0.09,2,4,0.87,9,0.13,1,4,1,2,4,0.87,9,0.13,2,4,0.8582550740759232,9,0.1417449259240768,2,4,0.8360808153657949,9,0.16391918463420516,2,4,0.6284832050392211,9,0.37151679496077905,2,4,0.39719715240353287,9,0.6028028475964671,2,4,0.17980196862689407,9,0.8201980313731059,2,4,0.0643247143084461,9,0.9356752856915538],"transform":{"x":-0.3601,"skY":63.8494,"y":-15.1412,"skX":63.8494},"type":"mesh","width":67,"name":"吃饭-场景/鼻子","height":60,"vertices":[33.5,-20.3,33.5,-27.7,28.85,-30,22.55,-30,16.5,-30,11.9,-15.95,5.85,-3.85,-4.1,3.3,-17.2,2.7,-28.5,0.65,-33.5,6.1,-33.5,17.05,-33.5,30,-21.55,30,-6.2,30,12.55,30,28,15.8,33.25,-1.75,33.5,-12.55],"path":"吃饭-场景/鼻子","triangles":[2,3,0,5,18,0,3,5,0,2,0,1,6,16,17,18,5,17,5,6,17,4,5,3,6,15,16,6,7,15,7,14,15,8,13,14,8,14,7,11,13,8,9,10,8,10,11,8,11,12,13],"uvs":[1,0.16167,1,0.03833,0.9306,0,0.83657,0,0.74627,0,0.67761,0.23417,0.58731,0.43583,0.43881,0.555,0.24328,0.545,0.07463,0.51083,0,0.60167,0,0.78417,0,1,0.17836,1,0.40746,1,0.68731,1,0.91791,0.76333,0.99627,0.47083,1,0.29083],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,0]}]},{"name":"嘴巴","display":[{"name":"吃饭-场景/嘴巴","transform":{"x":3.1319,"skY":89.0804,"y":-1.1504,"skX":89.0804},"type":"image","path":"吃饭-场景/嘴巴"}]}]}],"frameRate":24,"type":"Armature","ik":[]}],"frameRate":24,"isGlobal":0}
\ No newline at end of file
{
"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
{"name":"walkinghungryhappy","version":"5.5","armature":[{"name":"Armature","slot":[{"name":"阴影","color":{},"parent":"阴影"},{"name":"右腿","color":{},"z":1,"parent":"右腿1"},{"name":"左腿","color":{},"z":2,"parent":"左腿1"},{"name":"右手","color":{},"z":3,"parent":"右手"},{"name":"衣服","color":{},"displayIndex":1,"z":4,"parent":"衣服4"},{"name":"左手","color":{},"z":5,"parent":"左手1"},{"name":"围巾","color":{},"z":6,"parent":"围巾"},{"name":"围巾2","color":{},"z":7,"parent":"围巾"},{"name":"左耳","color":{},"z":8,"parent":"左耳1"},{"name":"右耳","color":{},"z":9,"parent":"右耳"},{"name":"脸","color":{},"z":10,"parent":"脸"},{"name":"嘴巴","color":{},"z":11,"parent":"嘴巴"},{"name":"鼻子","color":{},"z":12,"parent":"鼻子1"},{"name":"眼珠","color":{},"z":13,"parent":"眼珠"},{"name":"眼皮","color":{},"z":14,"parent":"眼皮"},{"name":"饿","color":{},"z":15,"parent":"饿"}],"bone":[{"name":"root","transform":{}},{"name":"饿","transform":{"x":66.55,"skY":90,"y":9.75,"skX":90},"parent":"root"},{"name":"阴影","transform":{"x":22.8872,"skY":90,"y":114.0219,"skX":90},"parent":"root"},{"name":"衣服","transform":{"x":21.3,"skY":-90,"y":23.9,"skX":-90},"length":28,"parent":"root"},{"name":"右腿","transform":{"x":-27.9,"skY":151.0881,"y":16.9,"skX":151.0881},"length":27,"parent":"衣服"},{"name":"右手","transform":{"x":52.723,"skY":134.0044,"y":23.4199,"skX":134.0044},"length":26,"parent":"衣服"},{"name":"左手","transform":{"x":50.0478,"skY":-142.4218,"y":-33.8673,"skX":-142.4218},"length":24,"parent":"衣服"},{"name":"左腿","transform":{"x":-27.2,"skY":-158.7892,"y":-12.65,"skX":-158.7892},"length":26,"parent":"衣服"},{"name":"脸","transform":{"x":94.15,"skY":-14.3894,"y":-2.05,"skX":-14.3894},"length":35,"parent":"衣服"},{"name":"衣服2","transform":{"x":28.4,"skY":38.8197,"y":17.5,"skX":38.8197},"length":28,"parent":"衣服"},{"name":"衣服1","transform":{"x":25.3526,"skY":-58.2148,"y":-25.5,"skX":-58.2148},"length":24,"parent":"衣服"},{"name":"围巾","transform":{"x":44.5,"skY":133.072,"y":7.85,"skX":133.072},"length":17,"parent":"衣服"},{"name":"左耳","transform":{"x":46.1192,"skY":-121.5663,"y":-41.3356,"skX":-121.5663},"length":36,"parent":"脸"},{"name":"嘴巴","transform":{"x":-29.5087,"y":-5.2995},"parent":"脸"},{"name":"眼珠","transform":{"x":7.4142,"skY":104.3894,"y":24.8212,"skX":104.3894},"parent":"脸"},{"name":"左腿1","transform":{"x":36.7409,"skY":-4.5481,"y":-2.6204,"skX":-4.5481},"length":22,"parent":"左腿"},{"name":"右耳","transform":{"x":32.7052,"skY":151.1507,"y":41.5305,"skX":151.1507},"length":28,"parent":"脸"},{"name":"眼皮","transform":{"x":10.3496,"skY":-17.6498,"y":-15.8006,"skX":-17.6498},"parent":"脸"},{"name":"左手1","transform":{"x":39.3477,"skY":-20.3443,"y":-3.3424,"skX":-20.3443},"length":24,"parent":"左手"},{"name":"鼻子","transform":{"x":-12.546,"skY":84.6453,"y":12.8864,"skX":84.6453},"length":25,"parent":"脸"},{"name":"衣服3","transform":{"x":40.9364,"skY":-13.1394,"y":3.8995,"skX":-13.1394},"length":28,"parent":"衣服2"},{"name":"右腿1","transform":{"x":34.745,"skY":23.4004,"y":0.7974,"skX":23.4004},"length":22,"parent":"右腿"},{"name":"衣服4","transform":{"x":39.192,"skY":5.3534,"y":-4.0545,"skX":5.3534},"length":25,"parent":"衣服1"},{"name":"左耳1","transform":{"x":50.4975,"skY":27.7233,"y":1.9386,"skX":27.7233},"length":26,"parent":"左耳"},{"name":"鼻子1","transform":{"x":33.0224,"skY":-42.6586,"y":-4.8282,"skX":-42.6586},"length":22,"parent":"鼻子"}],"aabb":{"x":-108.85135193443726,"height":263.94264333685396,"y":-131.94264333685396,"width":215.85135193443722},"animation":[{"name":"walking","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"围巾","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-2.3421,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-2.3421,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"y":0.95,"duration":12},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"y":0.95,"duration":12},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":12,"rotate":-36.3473,"tweenEasing":0},{"duration":12,"rotate":6.2981,"tweenEasing":0},{"duration":12,"rotate":-36.3473,"tweenEasing":0},{"duration":12,"rotate":6.2981,"tweenEasing":0},{"duration":0,"rotate":-36.3473}],"translateFrame":[],"scaleFrame":[]},{"name":"右手","rotateFrame":[{"duration":12,"rotate":-301.3725,"curve":[0.5,0,1,1]},{"duration":12,"rotate":7.955,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-301.3725,"curve":[0.5,0,1,1]},{"duration":12,"rotate":7.955,"curve":[0,0,0.5,1]},{"duration":0,"rotate":-301.3725}],"translateFrame":[{"curve":[0.5,0,1,1],"x":-4.3779,"y":-7.9403,"duration":12},{"curve":[0,0,0.5,1],"duration":12},{"curve":[0.5,0,1,1],"x":-4.3779,"y":-7.9403,"duration":12},{"curve":[0,0,0.5,1],"duration":12},{"x":-4.3779,"y":-7.9403,"duration":0}],"scaleFrame":[]},{"name":"左腿","rotateFrame":[{"duration":12,"rotate":-3.4196,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-1.6054,"curve":[0.5,0,1,1]},{"duration":12,"rotate":-3.4196,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-1.6054,"curve":[0.5,0,1,1]},{"duration":0,"rotate":-3.4196}],"translateFrame":[{"curve":[0,0,0.5,1],"duration":12},{"curve":[0.5,0,1,1],"y":9.6032,"duration":12},{"curve":[0,0,0.5,1],"duration":12},{"curve":[0.5,0,1,1],"y":9.6032,"duration":12},{"duration":0}],"scaleFrame":[]},{"name":"右腿","rotateFrame":[{"duration":12,"rotate":4.6726,"curve":[0.5,0,1,1]},{"duration":12,"rotate":-319.9452,"curve":[0.5,0,1,1]},{"duration":12,"rotate":4.6726,"curve":[0.5,0,1,1]},{"duration":12,"rotate":-319.9452,"curve":[0.5,0,1,1]},{"duration":0,"rotate":4.6726}],"translateFrame":[{"curve":[0.5,0,1,1],"duration":12},{"curve":[0.5,0,1,1],"x":6.7608,"y":-0.0155,"duration":12},{"curve":[0.5,0,1,1],"duration":12},{"curve":[0.5,0,1,1],"x":6.7608,"y":-0.0155,"duration":12},{"duration":0}],"scaleFrame":[]},{"name":"脸","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-3.4595,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-3.4595,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"左腿1","rotateFrame":[{"duration":12,"rotate":30.6116,"curve":[0.5,0,1,1]},{"duration":12,"rotate":-22.8872,"curve":[0.5,0,1,1]},{"duration":12,"rotate":30.6116,"curve":[0.5,0,1,1]},{"duration":12,"rotate":-22.8872,"curve":[0.5,0,1,1]},{"duration":0,"rotate":30.6116}],"translateFrame":[{"curve":[0.5,0,1,1],"x":3.3539,"y":10.8465,"duration":12},{"curve":[0.5,0,1,1],"x":-11.8496,"y":-28.2665,"duration":12},{"curve":[0.5,0,1,1],"x":3.3539,"y":10.8465,"duration":12},{"curve":[0.5,0,1,1],"x":-11.8496,"y":-28.2665,"duration":12},{"x":3.3539,"y":10.8465,"duration":0}],"scaleFrame":[]},{"name":"左手1","rotateFrame":[{"duration":10,"rotate":-27.522,"curve":[0.5,0,1,1]},{"duration":10,"rotate":8.2662,"curve":[0,0,0.5,1]},{"duration":10,"rotate":-27.522,"curve":[0.5,0,1,1]},{"duration":10,"rotate":8.2662,"curve":[0,0,0.5,1]},{"duration":8,"rotate":-27.522}],"translateFrame":[{"curve":[0.5,0,1,1],"x":-0.6707,"y":-7.5975,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":-0.6707,"y":-7.5975,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"x":-0.6707,"y":-7.5975,"duration":8}],"scaleFrame":[]},{"name":"右腿1","rotateFrame":[{"duration":12,"rotate":-15.6782,"curve":[0.5,0,1,1]},{"duration":12,"rotate":17.9245,"curve":[0.5,0,1,1]},{"duration":12,"rotate":-15.6782,"curve":[0.5,0,1,1]},{"duration":12,"rotate":17.9245,"curve":[0.5,0,1,1]},{"duration":0,"rotate":-15.6782}],"translateFrame":[{"curve":[0.5,0,1,1],"x":-4.3033,"y":0.0831,"duration":12},{"curve":[0.5,0,1,1],"x":-1.8566,"y":27.7622,"duration":12},{"curve":[0.5,0,1,1],"x":-4.3033,"y":0.0831,"duration":12},{"curve":[0.5,0,1,1],"x":-1.8566,"y":27.7622,"duration":12},{"x":-4.3033,"y":0.0831,"duration":0}],"scaleFrame":[]},{"name":"左耳","rotateFrame":[{"duration":12,"rotate":-2.0872,"curve":[0.5,0,1,1]},{"duration":12,"rotate":7.7541,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-2.0872,"curve":[0.5,0,1,1]},{"duration":12,"rotate":7.7541,"curve":[0,0,0.5,1]},{"duration":0,"rotate":-2.0872}],"translateFrame":[],"scaleFrame":[]},{"name":"右耳","rotateFrame":[{"duration":12,"rotate":7.4098,"curve":[0.5,0,1,1]},{"duration":12,"curve":[0,0,0.5,1]},{"duration":12,"rotate":7.4098,"curve":[0.5,0,1,1]},{"duration":12,"curve":[0,0,0.5,1]},{"duration":0,"rotate":7.4098}],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":10.3655,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":10.3655,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"嘴巴","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":0.81,"y":0.89,"duration":12},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":0.81,"y":0.89,"duration":12},{"duration":0}]},{"name":"眼珠","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":-3.1899,"y":-4.8356,"duration":18},{"tweenEasing":0,"x":-3.1899,"y":-4.8356,"duration":12},{"duration":6}],"scaleFrame":[]},{"name":"眼皮","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左耳1","rotateFrame":[{"duration":12,"rotate":-10.1354,"curve":[0.5,0,1,1]},{"duration":12,"rotate":6.8616,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-10.1354,"curve":[0.5,0,1,1]},{"duration":12,"rotate":6.8616,"curve":[0,0,0.5,1]},{"duration":0,"rotate":-10.1354}],"translateFrame":[{"curve":[0.5,0,1,1],"duration":12},{"curve":[0,0,0.5,1],"x":-6.6688,"y":-4.9623,"duration":12},{"curve":[0.5,0,1,1],"duration":12},{"curve":[0,0,0.5,1],"x":-6.6688,"y":-4.9623,"duration":12},{"duration":0}],"scaleFrame":[]},{"name":"鼻子1","rotateFrame":[{"duration":12,"curve":[0.5,0,1,1]},{"duration":12,"rotate":16.9991,"curve":[0,0,0.5,1]},{"duration":12,"curve":[0.5,0,1,1]},{"duration":12,"rotate":16.9991,"curve":[0,0,0.5,1]},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"阴影","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"y":0.91,"duration":12},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"y":0.91,"duration":12},{"duration":0}]},{"name":"饿","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服2","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服3","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服4","rotateFrame":[],"translateFrame":[],"scaleFrame":[]}],"playTimes":0,"ffd":[{"name":"走路/眼皮","slot":"眼皮","scale":1,"frame":[{"vertices":[0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0.03,-9.79,0.18,-10.79,0.03,-9.79,0,-3.14,0,-3.14,0,-3.14,0.03,-9.79,0.04,-13.44,0.03,-9.79,0,-3.14,0,-3.14,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0,-3.14,0,-3.14],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15],"tweenEasing":0,"offset":1,"duration":3},{"vertices":[0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0.03,-9.79,0.18,-10.79,0.03,-9.79,0,-3.14,0,-3.14,0,-3.14,0.03,-9.79,0.04,-13.44,0.03,-9.79,0,-3.14,0,-3.14,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0,-3.14,0,-3.14],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4],"tweenEasing":null,"offset":0,"duration":36}],"skin":"","offset":0}],"slot":[{"name":"阴影","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[],"colorFrame":[]},{"name":"衣服","displayFrame":[{"duration":48}],"colorFrame":[]},{"name":"左手","displayFrame":[],"colorFrame":[]},{"name":"围巾","displayFrame":[],"colorFrame":[]},{"name":"左耳","displayFrame":[],"colorFrame":[]},{"name":"右耳","displayFrame":[],"colorFrame":[]},{"name":"脸","displayFrame":[],"colorFrame":[]},{"name":"嘴巴","displayFrame":[],"colorFrame":[]},{"name":"鼻子","displayFrame":[],"colorFrame":[]},{"name":"眼珠","displayFrame":[],"colorFrame":[]},{"name":"眼皮","displayFrame":[],"colorFrame":[]},{"name":"饿","displayFrame":[{"duration":48,"value":-1}],"colorFrame":[]},{"name":"围巾2","displayFrame":[{"duration":48,"value":-1}],"colorFrame":[]}],"ik":[],"duration":48},{"name":"hungry","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"围巾","rotateFrame":[{"duration":16,"tweenEasing":0},{"duration":20,"rotate":-2.3421,"tweenEasing":0},{"duration":20,"rotate":-2.3421,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":16},{"tweenEasing":0,"y":0.95,"duration":20},{"tweenEasing":0,"y":0.95,"duration":20},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":16,"tweenEasing":0},{"duration":10,"rotate":-35.4451,"tweenEasing":0},{"duration":10,"rotate":321.2318,"tweenEasing":0},{"duration":20,"rotate":-35.4451,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"右手","rotateFrame":[{"duration":16,"rotate":10.0486,"tweenEasing":0},{"duration":16,"rotate":31.2515,"tweenEasing":0},{"duration":24,"rotate":31.2515,"tweenEasing":0},{"duration":0,"rotate":10.0486}],"translateFrame":[],"scaleFrame":[]},{"name":"左腿","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右腿","rotateFrame":[{"duration":56,"rotate":15.4585}],"translateFrame":[{"x":1.6917,"y":-0.9398,"duration":56}],"scaleFrame":[]},{"name":"脸","rotateFrame":[{"duration":16,"tweenEasing":0},{"duration":20,"rotate":10.1002,"tweenEasing":0},{"duration":20,"rotate":10.1002,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"左腿1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左手1","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":8,"rotate":-35.9961,"tweenEasing":0},{"duration":8,"rotate":-53.2622,"tweenEasing":0},{"duration":8,"rotate":-35.9961,"tweenEasing":0},{"duration":20,"rotate":-53.2622,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":-5.8084,"y":-29.6916,"duration":8},{"tweenEasing":0,"x":-5.6206,"y":-29.6986,"duration":8},{"tweenEasing":0,"x":-5.8084,"y":-29.6916,"duration":8},{"tweenEasing":0,"x":-5.6206,"y":-29.6986,"duration":20},{"duration":0}],"scaleFrame":[]},{"name":"右腿1","rotateFrame":[{"duration":56,"rotate":-11.1199}],"translateFrame":[],"scaleFrame":[]},{"name":"左耳","rotateFrame":[{"duration":16,"rotate":-10.9573,"curve":[0.5,0,1,1]},{"duration":20,"rotate":-18.9274,"tweenEasing":0},{"duration":20,"rotate":-18.9274,"tweenEasing":0},{"duration":0,"rotate":-10.9573}],"translateFrame":[],"scaleFrame":[]},{"name":"右耳","rotateFrame":[{"duration":16,"rotate":22.127,"curve":[0.5,0,1,1]},{"duration":20,"rotate":12.1335,"curve":[0,0,0.5,1]},{"duration":20,"rotate":12.1335,"curve":[0,0,0.5,1]},{"duration":0,"rotate":22.127}],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":13.9161,"tweenEasing":0},{"duration":30,"rotate":15.1234,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"嘴巴","rotateFrame":[{"duration":56,"rotate":38.3853}],"translateFrame":[{"x":7.465,"y":1.9152,"duration":56}],"scaleFrame":[{"x":-1,"duration":56}]},{"name":"眼珠","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":-3.1899,"y":-4.8356,"duration":18},{"tweenEasing":0,"x":-3.1899,"y":-4.8356,"duration":12},{"duration":14}],"scaleFrame":[]},{"name":"眼皮","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左耳1","rotateFrame":[{"duration":16,"rotate":-16.1369,"tweenEasing":0},{"duration":20,"rotate":-25.4816,"tweenEasing":0},{"duration":20,"rotate":-25.4816,"tweenEasing":0},{"duration":0,"rotate":-16.1369}],"translateFrame":[{"tweenEasing":0,"x":-6.3387,"y":-8.4562,"duration":16},{"tweenEasing":0,"x":-10.1275,"y":-10.0811,"duration":20},{"tweenEasing":0,"x":-10.1275,"y":-10.0811,"duration":20},{"x":-6.3387,"y":-8.4562,"duration":0}],"scaleFrame":[]},{"name":"鼻子1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":14,"rotate":19.0149,"tweenEasing":0},{"duration":10,"rotate":33.0063,"tweenEasing":0},{"duration":18,"rotate":19.0149,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"阴影","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"饿","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"x":-11.8421,"duration":12},{"x":7.8947,"duration":44}],"scaleFrame":[]},{"name":"衣服2","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服3","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服4","rotateFrame":[],"translateFrame":[],"scaleFrame":[]}],"playTimes":0,"ffd":[{"name":"走路/眼皮","slot":"眼皮","scale":1,"frame":[{"vertices":[0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0.03,-9.79,0.18,-10.79,0.03,-9.79,0,-3.14,0,-3.14,0,-3.14,0.03,-9.79,0.04,-13.44,0.03,-9.79,0,-3.14,0,-3.14,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0,-3.14,0,-3.14],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15],"tweenEasing":0,"offset":1,"duration":3},{"vertices":[0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0.03,-9.79,0.18,-10.79,0.03,-9.79,0,-3.14,0,-3.14,0,-3.14,0.03,-9.79,0.04,-13.44,0.03,-9.79,0,-3.14,0,-3.14,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0,-3.14,0,-3.14],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4],"tweenEasing":null,"offset":0,"duration":44}],"skin":"","offset":0}],"slot":[{"name":"阴影","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[],"colorFrame":[]},{"name":"衣服","displayFrame":[{"duration":56}],"colorFrame":[]},{"name":"左手","displayFrame":[],"colorFrame":[]},{"name":"围巾","displayFrame":[],"colorFrame":[]},{"name":"左耳","displayFrame":[],"colorFrame":[]},{"name":"右耳","displayFrame":[],"colorFrame":[]},{"name":"脸","displayFrame":[],"colorFrame":[]},{"name":"嘴巴","displayFrame":[],"colorFrame":[]},{"name":"鼻子","displayFrame":[],"colorFrame":[]},{"name":"眼珠","displayFrame":[],"colorFrame":[]},{"name":"眼皮","displayFrame":[],"colorFrame":[]},{"name":"饿","displayFrame":[],"colorFrame":[{"duration":12,"color":{"aM":0},"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":32,"color":{"aM":0}}]},{"name":"围巾2","displayFrame":[{"duration":56,"value":-1}],"colorFrame":[]}],"ik":[],"duration":56},{"name":"happy","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服","rotateFrame":[],"translateFrame":[{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"y":-18.6596,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"y":-18.6596,"duration":10},{"duration":0}],"scaleFrame":[]},{"name":"围巾","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-2.3421,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":4,"rotate":-2.3421}],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"y":0.95,"duration":12},{"tweenEasing":0,"duration":12},{"y":0.95,"duration":4}]},{"name":"左手","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右手","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左腿","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":-7.7064,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":10,"rotate":-7.7064,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"右腿","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":7.7783,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":10,"rotate":7.7783,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"脸","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-3.4595,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":4,"rotate":-3.4595}],"translateFrame":[],"scaleFrame":[]},{"name":"左腿1","rotateFrame":[{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":-4.3635,"curve":[0.5,0,1,1]},{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":-4.3635,"curve":[0.5,0,1,1]},{"duration":0}],"translateFrame":[{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":5.8907,"y":-3.8135,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":5.8907,"y":-3.8135,"duration":10},{"duration":0}],"scaleFrame":[]},{"name":"左手1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右腿1","rotateFrame":[{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":-10.711,"curve":[0.5,0,1,1]},{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":-10.711,"curve":[0.5,0,1,1]},{"duration":0}],"translateFrame":[{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":2.4185,"y":8.9056,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":2.4185,"y":8.9056,"duration":10},{"duration":0}],"scaleFrame":[]},{"name":"左耳","rotateFrame":[{"duration":12,"rotate":-2.0872,"curve":[0.5,0,1,1]},{"duration":12,"rotate":7.7541,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-2.0872,"curve":[0.5,0,1,1]},{"duration":4,"rotate":7.7541}],"translateFrame":[],"scaleFrame":[]},{"name":"右耳","rotateFrame":[{"duration":12,"rotate":7.4098,"curve":[0.5,0,1,1]},{"duration":12,"curve":[0,0,0.5,1]},{"duration":12,"rotate":7.4098,"curve":[0.5,0,1,1]},{"duration":4}],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":10.3655,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":4,"rotate":10.3655}],"translateFrame":[],"scaleFrame":[]},{"name":"嘴巴","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":0.81,"y":0.89,"duration":12},{"tweenEasing":0,"duration":12},{"x":0.81,"y":0.89,"duration":4}]},{"name":"眼珠","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":-3.1899,"y":-4.8356,"duration":18},{"tweenEasing":0,"x":-3.1899,"y":-4.8356,"duration":10},{"duration":0}],"scaleFrame":[]},{"name":"眼皮","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左耳1","rotateFrame":[{"duration":12,"rotate":-10.1354,"curve":[0.5,0,1,1]},{"duration":12,"rotate":6.8616,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-10.1354,"curve":[0.5,0,1,1]},{"duration":4,"rotate":6.8616}],"translateFrame":[{"curve":[0.5,0,1,1],"duration":12},{"curve":[0,0,0.5,1],"x":-6.6688,"y":-4.9623,"duration":12},{"curve":[0.5,0,1,1],"duration":12},{"x":-6.6688,"y":-4.9623,"duration":4}],"scaleFrame":[]},{"name":"鼻子1","rotateFrame":[{"duration":12,"curve":[0.5,0,1,1]},{"duration":12,"rotate":16.9991,"curve":[0,0,0.5,1]},{"duration":12,"curve":[0.5,0,1,1]},{"duration":4,"rotate":16.9991}],"translateFrame":[],"scaleFrame":[]},{"name":"阴影","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":0.8,"y":0.8,"duration":10},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":0.8,"y":0.8,"duration":10},{"duration":0}]},{"name":"饿","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服2","rotateFrame":[{"duration":10,"rotate":5.539,"tweenEasing":0},{"duration":10,"rotate":0.8703,"tweenEasing":0},{"duration":10,"rotate":5.539,"tweenEasing":0},{"duration":10,"rotate":0.8703,"tweenEasing":0},{"duration":0,"rotate":5.539}],"translateFrame":[],"scaleFrame":[]},{"name":"衣服3","rotateFrame":[{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":-5.7707,"curve":[0.5,0,1,1]},{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"curve":[0,0,0.5,1]},{"duration":0,"rotate":-5.7707}],"translateFrame":[{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":4.0911,"y":-1.6903,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"x":4.0911,"y":-1.6903,"duration":0}],"scaleFrame":[]},{"name":"衣服1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":8.4264,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":10,"rotate":8.4264,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"衣服4","rotateFrame":[{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":8.733,"curve":[0.5,0,1,1]},{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":8.733,"curve":[0.5,0,1,1]},{"duration":0}],"translateFrame":[{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":3.1139,"y":4.8123,"duration":10},{"curve":[0,0,0.5,1],"duration":10},{"curve":[0.5,0,1,1],"x":3.1139,"y":4.8123,"duration":10},{"duration":0}],"scaleFrame":[]}],"playTimes":0,"ffd":[{"name":"走路/眼皮","slot":"眼皮","scale":1,"frame":[{"vertices":[0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0.03,-9.79,0.18,-10.79,0.03,-9.79,0,-3.14,0,-3.14,0,-3.14,0.03,-9.79,0.04,-13.44,0.03,-9.79,0,-3.14,0,-3.14,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0,-3.14,0,-3.14],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15,0,0.15],"tweenEasing":0,"offset":1,"duration":3},{"vertices":[0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0.03,-9.79,0.18,-10.79,0.03,-9.79,0,-3.14,0,-3.14,0,-3.14,0.03,-9.79,0.04,-13.44,0.03,-9.79,0,-3.14,0,-3.14,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0.04,-13.19,0,-3.14,0,-3.14,0,-3.14,0,-3.14],"tweenEasing":0,"offset":0,"duration":3},{"vertices":[0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4,0.07,-25.4],"tweenEasing":null,"offset":0,"duration":28}],"skin":"","offset":0}],"slot":[{"name":"阴影","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[{"duration":40,"value":-1}],"colorFrame":[]},{"name":"衣服","displayFrame":[{"duration":20,"value":1},{"duration":20,"value":1},{"duration":0,"value":1}],"colorFrame":[]},{"name":"左手","displayFrame":[{"duration":40,"value":-1}],"colorFrame":[]},{"name":"围巾","displayFrame":[{"duration":40,"value":-1}],"colorFrame":[]},{"name":"左耳","displayFrame":[],"colorFrame":[]},{"name":"右耳","displayFrame":[],"colorFrame":[]},{"name":"脸","displayFrame":[],"colorFrame":[]},{"name":"嘴巴","displayFrame":[],"colorFrame":[]},{"name":"鼻子","displayFrame":[],"colorFrame":[]},{"name":"眼珠","displayFrame":[],"colorFrame":[]},{"name":"眼皮","displayFrame":[],"colorFrame":[]},{"name":"饿","displayFrame":[{"duration":40,"value":-1}],"colorFrame":[]},{"name":"围巾2","displayFrame":[],"colorFrame":[]}],"ik":[],"duration":40}],"defaultActions":[{"gotoAndPlay":"walking"}],"skin":[{"name":"","slot":[{"name":"眼皮","display":[{"name":"走路/眼皮","height":32,"type":"mesh","edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,0],"width":59,"transform":{"x":-7.0112,"skY":121.8848,"y":17.4766,"skX":121.8848},"triangles":[17,18,25,25,15,16,17,25,16,25,24,14,12,13,14,24,12,14,15,25,14,24,11,12,18,24,25,19,20,24,10,11,24,19,24,18,20,10,24,21,9,20,20,9,10,23,8,9,21,23,9,0,23,21,6,7,8,23,6,8,0,22,23,22,6,23,1,2,22,4,5,22,22,5,6,1,22,0,2,3,22,3,4,22],"userEdges":[],"uvs":[0.17373,0.14844,0.03729,0.22813,0,0.44531,0,0.65156,0.00169,0.89219,0.07034,1,0.17627,1,0.31271,1,0.36441,0.85938,0.37627,0.58594,0.7,0.55937,0.75763,0.72813,0.8678,0.8,0.97712,0.71562,1,0.58437,1,0.38125,1,0.08281,0.94492,-0.00156,0.85424,-0.00156,0.73644,-0.00156,0.67288,0.18594,0.35847,0.24531,0.08786,0.60034,0.28957,0.5904,0.80006,0.37262,0.93908,0.34988],"path":"走路/眼皮","vertices":[-19.25,-11.25,-27.3,-8.7,-29.5,-1.75,-29.5,4.85,-29.4,12.55,-25.35,16,-19.1,16,-11.05,16,-8,11.5,-7.3,2.75,11.8,1.9,15.2,7.3,21.7,9.6,28.15,6.9,29.5,2.7,29.5,-3.8,29.5,-13.35,26.25,-16.05,20.9,-16.05,13.95,-16.05,10.2,-10.05,-8.35,-8.15,-24.32,3.21,-12.42,2.89,17.7,-4.08,25.91,-4.8]}]},{"name":"饿","display":[{"name":"走路/饿","transform":{"x":0.7575,"skY":-90,"y":-2.1492,"skX":-90},"type":"image","path":"走路/饿"}]},{"name":"阴影","display":[{"name":"走路/阴影","transform":{"x":-0.5219,"skY":-90.1206,"y":0.3872,"skX":-90.1206},"type":"image","path":"走路/阴影"}]},{"name":"右腿","display":[{"bonePose":[4,0.48346459084158877,0.8753639182662117,-0.8753639182662117,0.48346459084158877,38.2,51.8,21,0.09604514706748718,0.9953769786994194,-0.9953769786994194,0.09604514706748718,54.29999999999996,82.60000000000001],"userEdges":[],"slotPose":[0.9999977839408842,-0.002105258492506326,0.002105258492506326,0.9999977839408842,40.99999999999996,77.50000000000001],"weights":[2,4,0.6631997298870469,21,0.3368002701129532,2,4,0.7875429572594259,21,0.21245704274057406,2,4,0.904862130590558,21,0.09513786940944205,2,4,0.8994002965333745,21,0.10059970346662549,2,4,0.8166396848000982,21,0.18336031519990179,2,4,0.7686194941140329,21,0.23138050588596729,2,4,0.6372907108677067,21,0.3627092891322934,2,4,0.5257987507251152,21,0.47420124927488494,2,4,0.38210339665266624,21,0.6178966033473339,2,4,0.2626931775459036,21,0.7373068224540965,2,4,0.14688811561284093,21,0.8531118843871591,2,4,0.07935777926596232,21,0.9206422207340378,2,4,0.15356367815923302,21,0.8464363218407669,2,4,0.14934615071606303,21,0.8506538492839371,2,4,0.21930982386973674,21,0.7806901761302633,2,4,0.3654360517063407,21,0.6345639482936593,2,4,0.5718630889989177,21,0.42813691100108237,2,4,0.27050868817985824,21,0.7294913118201417,2,4,0.5675171341127718,21,0.43248286588722823],"transform":{"x":-6.3538,"skY":-84.6091,"y":12.7487,"skX":-84.6091},"type":"mesh","width":62,"name":"走路/右腿","height":77,"vertices":[24.05,-26.8,16.05,-37.15,4,-38.5,-14.35,-38.5,-28.55,-32.85,-31,-22,-31,-5.7,-22.8,9.45,-15.05,26.95,-8.8,38.5,2.65,38.5,19.55,38.5,31,38.5,31,29.6,31,20.4,31,7.7,26.7,-13.8,21.14,4.84,-3.86,3.49],"path":"走路/右腿","triangles":[11,13,14,17,11,14,13,11,12,17,14,15,16,17,15,10,11,17,18,10,17,0,18,16,18,17,16,1,2,0,2,18,0,18,8,10,3,18,2,3,5,18,5,6,18,8,9,10,4,5,3,6,7,18,7,8,18],"uvs":[0.8879,0.15195,0.75887,0.01753,0.56452,0,0.26855,0,0.03952,0.07338,0,0.21429,0,0.42597,0.13226,0.62273,0.25726,0.85,0.35806,1,0.54274,1,0.81532,1,1,1,1,0.88442,1,0.76494,1,0.6,0.93065,0.32078,0.84097,0.56292,0.43778,0.54535],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,0]}]},{"name":"左腿","display":[{"bonePose":[7,-0.36179952596909465,0.9322559214124297,-0.9322559214124297,-0.36179952596909465,8.650000000000004,51.1,15,-0.2867360581093517,0.9580096205048835,-0.9580096205048835,-0.2867360581093517,-2.1999999999999824,86.30000000000001],"userEdges":[],"slotPose":[0.9999977839408841,-0.0021052584924816653,0.0021052584924816653,0.9999977839408841,-0.9999999999999618,82],"weights":[2,7,0.8090353086672651,15,0.19096469133273491,2,7,0.92,15,0.08,2,7,0.88,15,0.12,2,7,0.5186558241932598,15,0.4813441758067401,2,7,0.392425551140543,15,0.607574448859457,2,7,0.2872415920052162,15,0.7127584079947838,2,7,0.16610846794038556,15,0.8338915320596144,2,7,0.06017355008794399,15,0.939826449912056,2,7,0.06415262677120699,15,0.9358473732287931,2,7,0.15633813397327695,15,0.8436618660267231,2,7,0.21756674999309178,15,0.7824332500069082,2,7,0.2955815151447187,15,0.7044184848552814,2,7,0.43589182594159787,15,0.5641081740584022,2,7,0.73,15,0.27,2,7,0.84,15,0.16,2,7,0.91,15,0.09,1,7,1,1,7,1,2,7,0.9932967298965132,15,0.00670327010348673,1,7,1,1,7,1,2,7,0.3939091433476022,15,0.6060908566523978,2,7,0.3737546739344217,15,0.6262453260655784],"transform":{"x":-4.4635,"skY":-106.7833,"y":0.0834,"skX":-106.7833},"type":"mesh","width":62,"name":"走路/左腿","height":68,"vertices":[31,-26.65,31,-26.4,30.85,-14.05,25.65,0.25,20.2,14.75,16.3,25.75,8.85,34.05,-2,34.05,-14.9,34.05,-26.7,34.05,-31,24.95,-31,16.2,-31,3.25,-31,-10.65,-31,-18.2,-31,-29.5,-26.6,-34,-12.45,-34,8.8,-34,22.2,-34,31,-34,12.54,5.23,-16.41,3.07],"path":"走路/左腿","triangles":[19,18,2,19,2,1,19,1,0,20,19,0,21,3,2,18,21,2,21,4,3,17,22,18,18,22,21,21,5,4,21,7,5,7,6,5,22,7,21,14,13,22,22,11,8,14,22,17,22,8,7,15,14,16,10,9,8,11,10,8,16,14,17,13,12,22,12,11,22],"uvs":[1,0.10809,1,0.11176,0.99758,0.29338,0.91371,0.50368,0.82581,0.71691,0.7629,0.87868,0.64274,1.00074,0.46774,1.00074,0.25968,1.00074,0.06935,1.00074,0,0.86691,0,0.73824,0,0.54779,0,0.34338,0,0.23235,0,0.06618,0.07097,0,0.29919,0,0.64194,0,0.85806,0,1,0,0.70224,0.57686,0.23538,0.54508],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,0]}]},{"name":"右手","display":[{"name":"走路/右手","transform":{"x":27.1699,"skY":-57.0955,"y":-1.7561,"skX":-57.0955},"type":"image","path":"走路/右手"}]},{"name":"衣服","display":[{"name":"走路/衣服","transform":{"x":-58.6257,"skY":142.7408,"y":10.6252,"skX":142.7408},"type":"image","path":"走路/衣服"},{"bonePose":[10,-0.850029116500765,-0.5267357032715073,0.5267357032715073,-0.850029116500765,-4.199999999999932,-1.452632161492346,22,-0.797177636084725,-0.6037448273288726,0.6037448273288726,-0.797177636084725,-39.65,-18.650000000000002,9,0.6268714235960784,-0.7791227235029319,0.7791227235029319,0.6268714235960784,38.8,-4.5000000000000036,20,0.43334837062043763,-0.9012264918879226,0.9012264918879226,0.43334837062043763,67.5,-33.949999999999996,3,6.123233995736766e-17,-1,1,6.123233995736766e-17,21.3,23.9],"userEdges":[],"slotPose":[1.0000000000000004,-5.551115123125783e-17,5.551115123125783e-17,0.9999999999999999,8.090225563909918,-11.362792931935825],"weights":[4,10,0.04929178064427734,20,0.7434573589535687,9,0.16988587743632738,22,0.037364982965826576,4,10,0.0460942988924822,20,0.6543632986158809,9,0.2693235140146689,22,0.030218888476968134,4,10,0.10131906525736255,9,0.48484958846786014,20,0.356644799464488,22,0.05718654681028936,2,10,0.61,22,0.39,4,10,0.27954361651266324,22,0.6442581756946283,9,0.045314733751155446,20,0.030883474041552932,4,10,0.16219732256280406,22,0.7577575399352668,9,0.04525768891681806,20,0.034787448585111014,4,10,0.1335042288931194,22,0.8028680807355816,9,0.03659006833096699,20,0.027037622040332176,4,10,0.11750127651703196,22,0.837723428023643,9,0.02669102679865525,20,0.018084268660669662,4,10,0.23794304094954116,22,0.6750796279851813,9,0.053315648014649705,20,0.03366168305062778,4,10,0.35523222949719746,22,0.5327732381786813,9,0.07176449834694193,20,0.0402300339771794,4,10,0.4398919901957386,22,0.42126723582742454,9,0.0940395715399642,20,0.04480120243687258,4,10,0.40408313982171906,22,0.3496416832401179,9,0.16480505695999756,20,0.08147011997816549,5,10,0.05,22,0.03,9,0.02,3,0.89,20,0.01,1,3,1,1,3,1,5,10,0.02,9,0.06,20,0.01,22,0.01,3,0.9,5,10,0.03,9,0.08,20,0.04,22,0.02,3,0.8300000000000001,4,10,0.17187053293056598,9,0.4466584668501974,20,0.2972341904704125,22,0.0842368097488242,4,10,0.09454972543800964,9,0.4604017727838128,20,0.3996416657038102,22,0.04540683607436734,4,10,0.04548012851881602,20,0.5676855126952336,9,0.36232226754310126,22,0.024512091242849064,4,10,0.041519710656472884,20,0.6604259174477626,9,0.273257153435115,22,0.024797218460649514,4,10,0.022437407907315382,20,0.8407897213332062,9,0.12221544274799677,22,0.014557428011481698,4,10,0.022586452822398597,20,0.864298945942436,9,0.09743276319301244,22,0.015681838042153177,4,10,0.04166079133933822,20,0.7844830474792508,9,0.14294755104069135,22,0.03090861014071951,4,10,0.009850176873545412,9,0.5316848115778778,20,0.4534303483652842,22,0.005034663183292344,3,20,0.78,9,0.21,22,0.01,4,10,0.9764591082471212,22,0.021835657600230103,9,0.0011561274872970673,20,0.0005491066653514837,4,10,0.3921741259065552,22,0.5657737883152134,9,0.02808103490168437,20,0.013971050876546926],"transform":{"x":-42.4571,"skY":142.8614,"y":23.0137,"skX":142.8614},"type":"mesh","width":178,"name":"走路/衣服2","height":145,"vertices":[58.45,-72.5,47.65,-49.95,29.3,-35.85,-18.95,-28.15,-46.4,-35.55,-73.05,-50.9,-89,-39.6,-89,-17.8,-89,3.65,-72.3,22.05,-49.6,32.5,-49.85,58.3,-44.05,72.5,-19.85,72.5,14.4,72.5,51.9,72.5,76.95,72.5,72,46.05,72.15,16.6,80.45,-6.25,89,-22.6,89,-41.55,89,-56.7,88.6,-72.5,49.21,-24.49,68.91,-17.49,-32.99,-5.09,-49.49,10.51],"path":"走路/衣服2","triangles":[25,19,20,0,1,22,0,22,23,25,20,21,22,1,21,1,25,21,1,24,25,17,15,16,25,18,19,25,24,18,24,14,18,18,14,17,14,15,17,26,14,24,2,26,24,3,26,2,1,2,24,26,10,13,26,13,14,27,10,26,4,26,3,11,12,13,10,11,13,4,27,26,7,8,27,7,27,4,27,9,10,5,7,4,6,7,5,8,9,27],"uvs":[0.82837,0,0.7677,0.15552,0.66461,0.25276,0.39354,0.30586,0.23933,0.25483,0.08961,0.14897,0,0.2269,0,0.37724,0,0.52517,0.09382,0.65207,0.22135,0.72414,0.21994,0.90207,0.25253,1,0.38848,1,0.5809,1,0.79157,1,0.9323,1,0.90449,0.81759,0.90534,0.61448,0.95197,0.4569,1,0.34414,1,0.21345,1,0.10897,0.99775,0,0.77646,0.33112,0.88713,0.3794,0.31466,0.46492,0.22197,0.5725],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,0]}]},{"name":"左手","display":[{"bonePose":[6,-0.6098435478385089,0.7925218275604409,-0.7925218275604409,-0.6098435478385089,-12.567282244998347,-26.14782602413247,18,-0.2962734874208507,0.9551031466032831,-0.9551031466032831,-0.2962734874208507,-33.9143133198379,7.074471367348124],"userEdges":[],"slotPose":[0.9999977839408855,-0.0021052584925072004,0.0021052584925072004,0.9999977839408855,-25.000000000000068,2.500000000000008],"weights":[1,6,1,1,6,1,2,6,0.8181897526623843,18,0.18181024733761578,2,6,0.6220313247750421,18,0.37796867522495786,2,6,0.42927735402348305,18,0.570722645976517,2,6,0.32028228420056015,18,0.6797177157994398,2,6,0.21519892076791228,18,0.7848010792320878,2,6,0.1806267852155118,18,0.8193732147844883,2,6,0.12287663564138167,18,0.8771233643586184,2,6,0.11079756029147955,18,0.8892024397085205,2,6,0.12348823498662627,18,0.8765117650133737,2,6,0.1354049266980396,18,0.8645950733019604,2,6,0.28352894047556826,18,0.7164710595244318,2,6,0.347079591020113,18,0.652920408979887,2,6,0.4444286411913993,18,0.5555713588086008,2,6,0.55,18,0.45,2,6,0.85,18,0.15,1,6,1,1,6,1,1,6,1],"transform":{"x":-6.9328,"skY":-108.1054,"y":-7.3488,"skX":-108.1054},"type":"mesh","width":64,"name":"走路/左手","height":83,"vertices":[32,-32.4,32,-21.95,25.4,-11,20.05,3.75,14.15,25.3,5.75,27.45,1.65,38.3,-1.85,41.5,-8.35,41.5,-26.15,41.5,-31.95,34.35,-31.95,26.7,-31.95,12.8,-28.25,5.9,-31.95,-3.45,-21.05,-23,-7.2,-37.35,7.4,-41.5,22.2,-41.5,32,-41.5],"path":"走路/左手","triangles":[17,2,1,18,17,1,0,18,1,18,0,19,17,16,2,15,3,2,16,15,2,13,5,3,15,13,3,5,4,3,13,12,5,14,13,15,11,8,5,12,11,5,8,6,5,8,7,6,11,9,8,11,10,9],"uvs":[1,0.10964,1,0.23554,0.89687,0.36747,0.81328,0.54518,0.72109,0.80482,0.58984,0.83072,0.52578,0.96145,0.47109,1,0.36953,1,0.09141,1,0.00078,0.91386,0.00078,0.82169,0.00078,0.65422,0.05859,0.57108,0.00078,0.45843,0.17188,0.22349,0.38984,0.04819,0.61562,0,0.84688,0,1,0],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,0]}]},{"name":"围巾","display":[{"name":"走路/围巾","transform":{"x":-16.1206,"skY":-43.1926,"y":4.9405,"skX":-43.1926},"type":"image","path":"走路/围巾"}]},{"name":"左耳","display":[{"bonePose":[12,-0.6952133625080943,0.7188034366850157,-0.7188034366850157,-0.6952133625080943,-32.25,-104.65,23,-0.949794781049111,0.31287357493382506,-0.31287357493382506,-0.949794781049111,-68.75000000000001,-69.7],"userEdges":[],"slotPose":[0.9999977839408845,-0.0021052584924305395,0.0021052584924305395,0.9999977839408845,-53.500000000000014,-86.00000000000001],"weights":[1,12,1,1,12,1,1,12,1,2,12,0.88,23,0.12,2,12,0.8200000000000001,23,0.18,2,12,0.37,23,0.63,2,12,0.16817699906132227,23,0.8318230009386778,2,12,0.04,23,0.96,2,12,0.07707030585683289,23,0.9229296941431672,2,12,0.06870402884806232,23,0.9312959711519376,2,12,0.17153586404540888,23,0.8284641359545911,2,12,0.3851900193389824,23,0.6148099806610177,2,12,0.76,23,0.24,2,12,0.89,23,0.11,2,12,0.9500000000000001,23,0.05,2,12,0.92,23,0.08,1,12,1],"transform":{"x":-19.5842,"skY":-161.8881,"y":10.7103,"skX":-161.8881},"type":"mesh","width":107,"name":"走路/左耳","height":82,"vertices":[53.5,-35.3,53.5,-21.05,53.5,-7.85,36.65,14.45,14.6,31.35,-13.7,41,-29.5,41,-50.3,41,-53.5,33.35,-53.5,20.7,-53.5,6.2,-37.5,-6.9,-22.2,-12.15,-6.8,-33.75,5.6,-41,27.85,-41,43.85,-41],"path":"走路/左耳","triangles":[15,3,2,15,2,1,16,15,1,16,1,0,15,14,3,14,13,3,12,4,3,13,12,3,12,5,4,12,11,5,11,9,6,11,6,5,10,9,11,9,8,6,8,7,6],"uvs":[1,0.06951,1,0.24329,1,0.40427,0.84252,0.67622,0.63645,0.88232,0.37196,1,0.2243,1,0.02991,1,0,0.90671,0,0.75244,0,0.57561,0.14953,0.41585,0.29252,0.35183,0.43645,0.08841,0.55234,0,0.76028,0,0.90981,0],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,0]}]},{"name":"右耳","display":[{"name":"走路/右耳","transform":{"x":17.9977,"skY":-46.8819,"y":0.9322,"skX":-46.8819},"type":"image","path":"走路/右耳"}]},{"name":"脸","display":[{"name":"走路/脸","transform":{"x":9.8616,"skY":104.2688,"y":-5.4709,"skX":104.2688},"type":"image","path":"走路/脸"}]},{"name":"嘴巴","display":[{"name":"走路/嘴巴","transform":{"x":3.2746,"skY":104.2688,"y":1.9241,"skX":104.2688},"type":"image","path":"走路/嘴巴"}]},{"name":"鼻子","display":[{"bonePose":[24,0.4632542093436877,-0.8862254439618367,0.8862254439618367,0.4632542093436877,64.3,-77.00000000000001,19,0.9412105917125162,-0.3378203991001358,0.3378203991001358,0.9412105917125162,34.85000000000001,-61.300000000000004],"userEdges":[],"slotPose":[0.9999977839408843,-0.0021052584924834417,0.0021052584924834417,0.9999977839408843,47.5,-78.99999999999997],"weights":[2,24,0.9611923970300705,19,0.03880760296992939,2,24,0.952690503055001,19,0.047309496944998995,2,24,0.8824580591072362,19,0.11754194089276387,2,24,0.7207020832417013,19,0.2792979167582987,2,24,0.4511615264916445,19,0.5488384735083556,2,24,0.32620004711117856,19,0.6737999528888214,2,24,0.19141529321544137,19,0.8085847067845586,2,24,0.0941817039599493,19,0.9058182960400507,2,24,0.09229565177418783,19,0.9077043482258121,2,24,0.09,19,0.91,2,24,0.06,19,0.9400000000000001,2,24,0.11,19,0.89,2,24,0.03,19,0.97,2,24,0.11,19,0.89,2,24,0.21,19,0.79,2,24,0.7764756938478818,19,0.22352430615211824,2,24,0.8441149655990965,19,0.15588503440090343,2,24,0.8569115295023856,19,0.1430884704976144,2,24,0.9150087671033025,19,0.08499123289669755,2,24,0.9114661868121524,19,0.08853381318784762],"transform":{"x":-6.0102,"skY":62.2821,"y":-15.8151,"skX":62.2821},"type":"mesh","width":67,"name":"走路/鼻子","height":60,"vertices":[33.5,-21.6,33.5,-14.15,33.5,-7.6,33.5,2.05,26.6,22.4,11.65,30,0,30,-10.3,30,-21.4,30,-33.5,30,-33.5,19.55,-33.5,10.1,-33.5,0.5,-17.8,-1.7,-4.25,1.7,11.1,-14.15,14.3,-25,16.75,-30,25,-30,33.5,-30],"path":"走路/鼻子","triangles":[18,16,0,14,4,3,15,14,3,15,3,2,0,16,1,16,15,1,15,2,1,18,0,19,17,16,18,14,5,4,14,6,5,13,8,7,13,7,14,14,7,6,11,10,8,11,8,13,12,11,13,10,9,8],"uvs":[1,0.14,1,0.26417,1,0.37333,1,0.53417,0.89701,0.87333,0.67388,1,0.5,1,0.34627,1,0.1806,1,0,1,0,0.82583,0,0.66833,0,0.50833,0.23433,0.47167,0.43657,0.52833,0.66567,0.26417,0.71343,0.08333,0.75,0,0.87313,0,1,0],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,0]}]},{"name":"围巾2","display":[{"name":"走路/围巾2","transform":{"x":-15.7388,"skY":-43.072,"y":5.2938,"skX":-43.072},"type":"image","path":"走路/围巾2"}]},{"name":"眼珠","display":[{"name":"走路/眼珠","transform":{"x":-19.45,"skY":-0.1206,"y":0.1,"skX":-0.1206},"type":"image","path":"走路/眼珠"}]}]}],"frameRate":24,"type":"Armature","ik":[]}],"frameRate":24,"isGlobal":0}
\ 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
{
"ver": "2.3.5",
"uuid": "7b3ff345-8795-4fb7-b3cf-9217b1ad31d3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"1_room1": {
"ver": "1.0.4",
"uuid": "89bac3b6-1e9b-4581-bb5a-cebf51b08ee7",
"rawTextureUuid": "7b3ff345-8795-4fb7-b3cf-9217b1ad31d3",
"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": "bb4c3c32-06d1-4361-851e-a4e61f1c5402",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"2_room2": {
"ver": "1.0.4",
"uuid": "9b8113e8-c393-4a44-8045-cc04601dea0b",
"rawTextureUuid": "bb4c3c32-06d1-4361-851e-a4e61f1c5402",
"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": "3bf7b441-c323-4926-97e5-7255d1d27048",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"3-my-kitchen": {
"ver": "1.0.4",
"uuid": "4849eebe-964d-47ae-9988-dd47f5f5d8a5",
"rawTextureUuid": "3bf7b441-c323-4926-97e5-7255d1d27048",
"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": "7c718ca7-ad9d-4d1c-9a47-deb58a283e54",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"4_myshop": {
"ver": "1.0.4",
"uuid": "e0725b56-994f-4988-99d0-389a892f6d5a",
"rawTextureUuid": "7c718ca7-ad9d-4d1c-9a47-deb58a283e54",
"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": "adba0765-084d-4ccf-a510-132dc54e84ed",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"5_tanchuang": {
"ver": "1.0.4",
"uuid": "fcec035b-6eea-4bb8-b315-3820c421c7d7",
"rawTextureUuid": "adba0765-084d-4ccf-a510-132dc54e84ed",
"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": "7725319b-87e3-457f-bda7-97ff03d3cfac",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"6_buy_success": {
"ver": "1.0.4",
"uuid": "2cdc1730-f8af-4112-b1b9-27661e4e6165",
"rawTextureUuid": "7725319b-87e3-457f-bda7-97ff03d3cfac",
"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": "e9e13c4b-99c2-42db-9930-07b7283fe0fa",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"7_buy_fail": {
"ver": "1.0.4",
"uuid": "0d7f4d06-eee9-4f92-9361-e3daed2be7d1",
"rawTextureUuid": "e9e13c4b-99c2-42db-9930-07b7283fe0fa",
"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": "8a02ec2b-743b-45bb-8f37-9d3f81e29850",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"8_kong": {
"ver": "1.0.4",
"uuid": "20b61d45-e8ee-4609-87bb-0bef4ad0e8ce",
"rawTextureUuid": "8a02ec2b-743b-45bb-8f37-9d3f81e29850",
"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": "1.1.2",
"uuid": "2171f5ba-2518-47b0-8880-a12c0203e403",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "08389d2c-b61a-496c-a1b8-7a7d043a5798",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_blue": {
"ver": "1.0.4",
"uuid": "a85dd4c8-0b1e-497f-a5dd-9a5422f291da",
"rawTextureUuid": "08389d2c-b61a-496c-a1b8-7a7d043a5798",
"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": "ee43c94c-dbb2-4553-8055-916d4a28d90c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 234,
"platformSettings": {},
"subMetas": {
"bg_food": {
"ver": "1.0.4",
"uuid": "fda2433c-a576-4792-96e1-2bad98f11358",
"rawTextureUuid": "ee43c94c-dbb2-4553-8055-916d4a28d90c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 212,
"height": 234,
"rawWidth": 212,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "92caa177-5f1b-479a-bfe1-b360952cf625",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 85,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_line": {
"ver": "1.0.4",
"uuid": "9b27c9cc-b1fd-4b94-8bdd-ce8796b7f215",
"rawTextureUuid": "92caa177-5f1b-479a-bfe1-b360952cf625",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 85,
"height": 750,
"rawWidth": 85,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ea6f140a-498a-4ee3-9f0f-3150ac91901c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 86,
"platformSettings": {},
"subMetas": {
"bg_shelf": {
"ver": "1.0.4",
"uuid": "b480b362-c7fb-49b3-8920-acad98fe572f",
"rawTextureUuid": "ea6f140a-498a-4ee3-9f0f-3150ac91901c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 86,
"rawWidth": 1334,
"rawHeight": 86,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8f30fec0-ca6e-4d49-a7b5-a02a9ffdac6d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 86,
"platformSettings": {},
"subMetas": {
"bg_top": {
"ver": "1.0.4",
"uuid": "b60c2e7c-21d7-4557-8e41-0b58f7867ea7",
"rawTextureUuid": "8f30fec0-ca6e-4d49-a7b5-a02a9ffdac6d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 86,
"rawWidth": 1334,
"rawHeight": 86,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5d5e28c0-1a4b-4835-afea-277a3c1c8ce5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 173,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_yellow": {
"ver": "1.0.4",
"uuid": "ba25cf98-cd23-4c23-b4c1-986a110a3d47",
"rawTextureUuid": "5d5e28c0-1a4b-4835-afea-277a3c1c8ce5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 173,
"height": 750,
"rawWidth": 173,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d7566939-ba49-4549-962f-23564921d36d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 168,
"height": 59,
"platformSettings": {},
"subMetas": {
"btn_buy": {
"ver": "1.0.4",
"uuid": "e1f9dc66-3d5a-4142-967c-20e20ebefa84",
"rawTextureUuid": "d7566939-ba49-4549-962f-23564921d36d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 168,
"height": 59,
"rawWidth": 168,
"rawHeight": 59,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "47b94ba4-f9c1-42fa-966b-b78b19eb5ba3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_clothes": {
"ver": "1.0.4",
"uuid": "8765fd04-0190-4e0e-870a-0b3dc4cbea9a",
"rawTextureUuid": "47b94ba4-f9c1-42fa-966b-b78b19eb5ba3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 121,
"height": 83,
"rawWidth": 147,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2b385675-97f5-4665-a82e-b8d5c3fbfce8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_clothes2": {
"ver": "1.0.4",
"uuid": "be949ebe-7d84-46cb-aa1e-044b4d2b67bd",
"rawTextureUuid": "2b385675-97f5-4665-a82e-b8d5c3fbfce8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 0,
"trimY": 0,
"width": 147,
"height": 82,
"rawWidth": 147,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1b0df91f-7f7b-46ff-a63c-a71d399f3166",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_food": {
"ver": "1.0.4",
"uuid": "ffe803a4-0e70-4a3d-aba5-79c200006375",
"rawTextureUuid": "1b0df91f-7f7b-46ff-a63c-a71d399f3166",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 121,
"height": 83,
"rawWidth": 147,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6bf840e4-eda5-4757-ad1f-1a53caf24810",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_food2": {
"ver": "1.0.4",
"uuid": "cf7e6a45-458f-4650-b01f-e49c7352329c",
"rawTextureUuid": "6bf840e4-eda5-4757-ad1f-1a53caf24810",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 0,
"trimY": 0,
"width": 147,
"height": 82,
"rawWidth": 147,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1668a63f-315a-49dd-93ee-b3000f54d794",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_house": {
"ver": "1.0.4",
"uuid": "511f15d2-443d-41a4-bb65-43f6c9311ad9",
"rawTextureUuid": "1668a63f-315a-49dd-93ee-b3000f54d794",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 121,
"height": 83,
"rawWidth": 147,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "269f2d21-2570-4a4d-89a5-64851d31f743",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_house2": {
"ver": "1.0.4",
"uuid": "8aa46af9-8e5c-49c6-b08f-c4f0c46d0dbc",
"rawTextureUuid": "269f2d21-2570-4a4d-89a5-64851d31f743",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 0,
"trimY": 0,
"width": 147,
"height": 82,
"rawWidth": 147,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cb65951f-a444-42f1-b00f-9d2b6ce6c372",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 71,
"height": 71,
"platformSettings": {},
"subMetas": {
"icon_sale": {
"ver": "1.0.4",
"uuid": "0b337b56-94e2-4148-a404-1cd40a24b7ac",
"rawTextureUuid": "cb65951f-a444-42f1-b00f-9d2b6ce6c372",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 71,
"height": 71,
"rawWidth": 71,
"rawHeight": 71,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "1cfc7f52-37c8-4b32-a68e-8e8a9e63af97",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "77c4febb-daa9-4022-a10b-b91e4c388dd8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 644,
"height": 317,
"platformSettings": {},
"subMetas": {
"bg_empty": {
"ver": "1.0.4",
"uuid": "6ec2b3a1-8960-49de-b842-9980e4d0ae0f",
"rawTextureUuid": "77c4febb-daa9-4022-a10b-b91e4c388dd8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 644,
"height": 317,
"rawWidth": 644,
"rawHeight": 317,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "64afc156-d9e8-45bd-83d9-7097f7eac7c5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 510,
"height": 391,
"platformSettings": {},
"subMetas": {
"bg_fail": {
"ver": "1.0.4",
"uuid": "052848ff-6955-4382-9121-246fe9bb587b",
"rawTextureUuid": "64afc156-d9e8-45bd-83d9-7097f7eac7c5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 510,
"height": 391,
"rawWidth": 510,
"rawHeight": 391,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "363d8d8b-7e34-4add-84e2-1a0508867255",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 546,
"height": 548,
"platformSettings": {},
"subMetas": {
"bg_light": {
"ver": "1.0.4",
"uuid": "d259ec88-ba1b-4ace-b803-e77af3cd5c96",
"rawTextureUuid": "363d8d8b-7e34-4add-84e2-1a0508867255",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 546,
"height": 548,
"rawWidth": 546,
"rawHeight": 548,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3a5c8d8b-f90f-46b3-ab86-7390174b5126",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 352,
"height": 311,
"platformSettings": {},
"subMetas": {
"bg_success": {
"ver": "1.0.4",
"uuid": "d762f1a0-9ed6-4196-b1a2-e6909719a71f",
"rawTextureUuid": "3a5c8d8b-f90f-46b3-ab86-7390174b5126",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 352,
"height": 311,
"rawWidth": 352,
"rawHeight": 311,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "953f6819-2315-42d2-8b78-de146b2a77a5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 510,
"height": 391,
"platformSettings": {},
"subMetas": {
"bg_tip": {
"ver": "1.0.4",
"uuid": "13aec4ca-29e1-4d29-ae65-fe1e0c1ebe9d",
"rawTextureUuid": "953f6819-2315-42d2-8b78-de146b2a77a5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 510,
"height": 391,
"rawWidth": 510,
"rawHeight": 391,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3e97369d-3a56-476d-a3b8-d1efb0db0959",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 63,
"platformSettings": {},
"subMetas": {
"btn_cancel": {
"ver": "1.0.4",
"uuid": "da47457d-c775-448d-aa17-e2743dc9d3d2",
"rawTextureUuid": "3e97369d-3a56-476d-a3b8-d1efb0db0959",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 63,
"rawWidth": 186,
"rawHeight": 63,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "36425f84-3f81-4aab-bfb6-1b053ce581d5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 63,
"platformSettings": {},
"subMetas": {
"btn_learn": {
"ver": "1.0.4",
"uuid": "c1e73fa2-54d6-4627-a27d-9fe13b25d9cc",
"rawTextureUuid": "36425f84-3f81-4aab-bfb6-1b053ce581d5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 63,
"rawWidth": 186,
"rawHeight": 63,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dd73283d-fa94-4641-85d8-0d6c771e7be9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 63,
"platformSettings": {},
"subMetas": {
"btn_ok": {
"ver": "1.0.4",
"uuid": "2181df2d-af49-484d-bbd7-a5fa87277446",
"rawTextureUuid": "dd73283d-fa94-4641-85d8-0d6c771e7be9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 63,
"rawWidth": 186,
"rawHeight": 63,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e7f1d856-72dd-44b2-bfdb-b1553e8fb992",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 63,
"platformSettings": {},
"subMetas": {
"btn_sure": {
"ver": "1.0.4",
"uuid": "9427e173-e29f-47cc-abac-2b860c947974",
"rawTextureUuid": "e7f1d856-72dd-44b2-bfdb-b1553e8fb992",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 63,
"rawWidth": 186,
"rawHeight": 63,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2756d008-6e05-4c19-bbc6-d26f0a99b974",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 44,
"height": 44,
"platformSettings": {},
"subMetas": {
"icon_star": {
"ver": "1.0.4",
"uuid": "2a738b06-8f03-4601-a07c-c75dc4317388",
"rawTextureUuid": "2756d008-6e05-4c19-bbc6-d26f0a99b974",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 44,
"rawWidth": 44,
"rawHeight": 44,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
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