Commit 7aea4560 authored by liujiangnan's avatar liujiangnan

feat: 小游戏合并初始化

parent aa10371b
{
"ver": "1.1.0",
"uuid": "54680177-78cc-4398-9170-f71d75269445",
"subMetas": {}
}
\ No newline at end of file
// Learn cc.Class:
// - https://docs.cocos.com/creator/manual/en/scripting/class.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
cc.Class({
extends: cc.Component,
properties: {
// foo: {
// // ATTRIBUTES:
// default: null, // The default value will be used only when the component attaching
// // to a node for the first time
// type: cc.SpriteFrame, // optional, default is typeof default
// serializable: true, // optional, default is true
// },
// bar: {
// type: cc.Node,
// get () {
// return this._bar;
// },
// set (value) {
// this._bar = value;
// }
// },
},
// LIFE-CYCLE CALLBACKS:
// onLoad () {},
start () {
this.init();
},
barBaseW: null,
barSpr: null,
barSf: null,
init() {
this.bar = cc.find('bar', this.node);
// this.bar.x = (this.node.width - this.bar.width) / 2;
// console.log('this.bar.x: ', this.bar.x);
this.barBaseW = this.bar.width;
this.barSpr = this.bar.getComponent(cc.Sprite);
this.barSf = this.barSpr.spriteFrame;
this.setProgress(0);
},
setProgress(progress) {
setTimeout(() => {
if (!this.barSf) {
return;
}
const w = this.barBaseW * progress;
const rect = this.barSf.getRect();
rect.width = w;
this.bar.width = w;
this.barSpr.spriteFrame.setRect(rect);
}, 1);
},
// update (dt) {},
});
[
{
"__type__": "cc.Prefab",
"_name": "",
"_objFlags": 0,
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"asyncLoadAssets": false,
"readonly": false
},
{
"__type__": "cc.Node",
"_name": "progress",
"_objFlags": 0,
"_parent": null,
"_children": [
{
"__id__": 2
}
],
"_active": true,
"_components": [
{
"__id__": 5
},
{
"__id__": 6
}
],
"_prefab": {
"__id__": 7
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 269,
"height": 16
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "bar",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
}
],
"_prefab": {
"__id__": 4
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 269,
"height": 16
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "c43f093f-a7c5-42d5-bf56-778a3548a7c3"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "7dOjkMYWpFQaM6/QbKkBy/",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "82ee3fa0-26e3-43e8-afca-8bbc978d88e4"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "ff03b/26RFLJo4ogDzcFsUP",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "",
"sync": false
}
]
\ No newline at end of file
This diff is collapsed.
{ {
"ver": "1.2.9", "ver": "1.2.9",
"uuid": "3d356c4d-cb23-4239-aa5f-8a913f420fa4", "uuid": "b2ea8750-ee3c-48f2-a527-63f69b4642a1",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false, "asyncLoadAssets": false,
"readonly": false, "autoReleaseAssets": true,
"subMetas": {} "subMetas": {}
} }
\ No newline at end of file
import { asyncDelay, saveLearning, asyncGetSpriteFrimeByUrl, playAudioByUrl } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
}
addPreloadAudio() {
for (let i = 0; i < this.data.length; i++) {
const item = this.data[i];
this._audioResList.push({ url: item.audio_url });
}
}
addPreloadAnima() {
}
async onLoadEnd() {
this.initData();
await this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
currentCardData = null;
async initView() {
const cardview = cc.find(`Canvas/cardview`);
const cardview_bg = cc.find(`Canvas/cardview_bg`);
const content = cc.find(`Canvas/cardpage/view/content`);
const item = cc.find(`item`, content);
for (let i = 0; i < this.data.length; i++) {
const d = this.data[i];
const itemClone = cc.instantiate(item);
itemClone.parent = content;
itemClone.active = true;
cc.find("word/text_en", itemClone).getComponent(cc.Label).string = d.text_en;
itemClone.on('click', async () => {
if (itemClone['cantClick']) {
return;
}
itemClone['cantClick'] = true;
this.currentCardData = d;
cc.find("word/cur/text_en", cardview).getComponent(cc.Label).string = d.text_en;
cc.find("card/cur/text_cn", cardview).getComponent(cc.Label).string = d.text_cn;
cardview_bg.active = true;
cardview.active = true;
cc.tween(cardview).to(0.1, {rotation: 5}).to(0.2, {rotation: -5}).to(0.1, {rotation: 0})
.call(() => {
itemClone['cantClick'] = false;
}).start()
});
}
}
initListener() {
const cardview = cc.find(`Canvas/cardview`);
cardview.on('click', () => {
cc.audioEngine.stopAll();
playAudioByUrl(this.currentCardData.audio_url);
cc.tween(cardview).to(0.1, {rotation: 5}).to(0.2, {rotation: -5}).to(0.1, {rotation: 0}).start();
// 点击就算学过
saveLearning(this.currentCardData);
});
const cardview_bg = cc.find(`Canvas/cardview_bg`);
cardview_bg.on('click', () => {
cardview_bg.active = false;
cardview.active = false;
cc.audioEngine.stopAll();
cc.find(`card`, cardview).active = false;
cc.find(`word`, cardview).active = true;
});
const turn = cc.find(`Canvas/cardview/turn`);
turn.on('click', () => {
const cardActive = cc.find(`card`, cardview).active;
const wordActive = cc.find(`word`, cardview).active;
cc.find(`card`, cardview).active = wordActive;
cc.find(`word`, cardview).active = cardActive;
});
}
}
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "ff03bff6-e911-4b26-8e28-803cdc16c50f", "uuid": "ffc5eeb6-e3ec-4233-bc70-22a30447a435",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
import { defaultData } from "../script/defaultData";
export class MyCocosSceneComponent extends cc.Component {
// 生命周期 onLoad
onLoad() {
this.initSceneData();
this.initSize();
}
_imageResList = null;
_audioResList = null;
_animaResList = null;
initSceneData() {
this._imageResList = [];
this._audioResList = [];
this._animaResList = [];
}
_designSize = null; // 设计分辨率
_frameSize = null; // 屏幕分辨率
_mapScaleMin = null; // 场景中常用缩放(取大值)
_mapScaleMax = null; // 场景中常用缩放(取小值)
_cocosScale = null; // cocos 自缩放 (较少用到)
initSize() {
// 注意cc.winSize只有在适配后(修改fitHeight/fitWidth后)才能获取到正确的值,因此使用cc.getFrameSize()来获取初始的屏幕大小
let screen_size = cc.view.getFrameSize().width / cc.view.getFrameSize().height
let design_size = cc.Canvas.instance.designResolution.width / cc.Canvas.instance.designResolution.height
let f = screen_size >= design_size
cc.Canvas.instance.fitHeight = f
cc.Canvas.instance.fitWidth = !f
const frameSize = cc.view.getFrameSize();
this._frameSize = frameSize;
this._designSize = cc.view.getDesignResolutionSize();
let sx = cc.winSize.width / frameSize.width;
let sy = cc.winSize.height / frameSize.height;
this._cocosScale = Math.min(sx, sy);
sx = frameSize.width / this._designSize.width;
sy = frameSize.height / this._designSize.height;
this._mapScaleMin = Math.min(sx, sy) * this._cocosScale;
this._mapScaleMax = Math.max(sx, sy) * this._cocosScale;
cc.director['_scene'].width = frameSize.width;
cc.director['_scene'].height = frameSize.height;
}
data = null;
// 生命周期 start
start() {
if (window && (<any>window).courseware && (<any>window).courseware.getData) {
(<any>window).courseware.getData((data) => {
this.log('data:' + data);
this.data = data || this.getDefaultData();
this.data = JSON.parse(JSON.stringify(this.data));
this.preloadItem();
})
} else {
this.data = this.getDefaultData();
this.preloadItem();
}
}
getDefaultData() {
return defaultData;
}
preloadItem() {
this.addPreloadImage();
this.addPreloadAudio();
this.addPreloadAnima();
this.preload();
}
addPreloadImage() {
}
addPreloadAudio() {
}
addPreloadAnima() {
}
preload() {
const preloadArr = this._imageResList.concat(this._audioResList).concat(this._animaResList);
cc.assetManager.preloadAny(preloadArr, null, null, async (err, data) => {
if (window && window["air"]) {
await this.onLoadEnd();
window["air"].hideAirClassLoading();
} else {
this.onLoadEnd();
}
cc.debug.setDisplayStats(false);
});
}
log (str) {
const node = cc.find('middleLayer');
if(node){
node.getComponent('middleLayer').log(str);
}else{
cc.log(str);
}
}
onLoadEnd() {
}
// ------------------------------------------------
getSprNode(resName) {
const sf = cc.find('Canvas/res/img/' + resName).getComponent(cc.Sprite).spriteFrame;
const node = new cc.Node();
node.addComponent(cc.Sprite).spriteFrame = sf;
return node;
}
getSpriteFrimeByUrl(url, cb) {
cc.loader.load({ url }, (err, img) => {
const spriteFrame = new cc.SpriteFrame(img)
if (cb) {
cb(spriteFrame);
}
})
}
getSprNodeByUrl(url, cb) {
const node = new cc.Node();
const spr = node.addComponent(cc.Sprite);
this.getSpriteFrimeByUrl(url, (sf) => {
spr.spriteFrame = sf;
if (cb) {
cb(node);
}
})
}
playAudioByUrl(audio_url, cb = null) {
if (audio_url) {
cc.assetManager.loadRemote(audio_url, (err, audioClip) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8);
if (cb) {
cc.audioEngine.setFinishCallback(audioId, () => {
cb();
});
}
});
}else{
cb && cb();
}
}
}
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "093cba15-cc63-44ea-ae52-3314131207d0",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "ade7af40-d56d-4087-bbc6-2888fef55353", "uuid": "d538515c-6e23-4422-ac5e-65f7c0e6dcd3",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "cb4c174a-628f-41b0-b661-f98961162196", "uuid": "149cb26e-76a5-43f7-91b7-9c52a7b1d750",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 269, "width": 340,
"height": 16, "height": 290,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"record_progress_bg": { "11": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "82ee3fa0-26e3-43e8-afca-8bbc978d88e4", "uuid": "cc718242-c61b-487b-bd62-f867cc1021db",
"rawTextureUuid": "cb4c174a-628f-41b0-b661-f98961162196", "rawTextureUuid": "149cb26e-76a5-43f7-91b7-9c52a7b1d750",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 269, "width": 340,
"height": 16, "height": 290,
"rawWidth": 269, "rawWidth": 340,
"rawHeight": 16, "rawHeight": 290,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "344dc346-7299-44ae-8693-0ac57ec21aca", "uuid": "3cad0f7b-2cd5-4750-bb06-5a7c53a4860d",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 269, "width": 1118,
"height": 16, "height": 544,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"record_progress_bar": { "big": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "c43f093f-a7c5-42d5-bf56-778a3548a7c3", "uuid": "6c6de776-fdac-4c15-a22f-6c1a19d17975",
"rawTextureUuid": "344dc346-7299-44ae-8693-0ac57ec21aca", "rawTextureUuid": "3cad0f7b-2cd5-4750-bb06-5a7c53a4860d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 269, "width": 1118,
"height": 16, "height": 544,
"rawWidth": 269, "rawWidth": 1118,
"rawHeight": 16, "rawHeight": 544,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "66c7c4ae-9b8d-4a5d-b515-693e22322cf9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 149,
"height": 141,
"platformSettings": {},
"subMetas": {
"turn": {
"ver": "1.0.4",
"uuid": "300d78b6-1800-44d8-a8a2-5a10f108cc70",
"rawTextureUuid": "66c7c4ae-9b8d-4a5d-b515-693e22322cf9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 149,
"height": 141,
"rawWidth": 149,
"rawHeight": 141,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "35a32234-0e86-40ce-b888-89d99b1c3350",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 258,
"height": 122,
"platformSettings": {},
"subMetas": {
"wordbg": {
"ver": "1.0.4",
"uuid": "18fd84f4-c146-444f-bc3a-b04ea5d3f885",
"rawTextureUuid": "35a32234-0e86-40ce-b888-89d99b1c3350",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 258,
"height": 122,
"rawWidth": 258,
"rawHeight": 122,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "eb155072-3eae-4fe1-ace2-7ddf736a1154",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {
"ios": false,
"android": false
},
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "197cb28b-4ee4-4399-ae88-7cf915fefcc1", "uuid": "8c78d14a-b55e-46b9-a7c9-7e917cc47b00",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"__type__": "cc.AnimationClip",
"_name": "king_a",
"_objFlags": 0,
"_native": "",
"_duration": 2.0166666666666666,
"sample": 60,
"speed": 1,
"wrapMode": 1,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "da688780-84f1-4064-8c8a-6a2087cd91b1"
}
},
{
"frame": 0.08333333333333333,
"value": {
"__uuid__": "78834464-e762-4762-a3fe-bb165016f318"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "666bebaa-795f-44c9-ae2f-78eba714903b"
}
},
{
"frame": 0.25,
"value": {
"__uuid__": "bcc4954e-5142-472a-8435-aa1f7b9630f6"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "fe459065-0a1b-4070-921d-85c83c03543a"
}
},
{
"frame": 0.4166666666666667,
"value": {
"__uuid__": "85b09bec-b45c-48c3-9202-cd9a32073cb4"
}
},
{
"frame": 0.5,
"value": {
"__uuid__": "d9d28298-5fbc-4e4b-aabe-2100afd2c92a"
}
},
{
"frame": 0.5833333333333334,
"value": {
"__uuid__": "9d5e3959-9226-40c0-ba8b-83f18aefb818"
}
},
{
"frame": 0.6666666666666666,
"value": {
"__uuid__": "0fd0239d-87bc-49c2-b234-0ae3e0965f56"
}
},
{
"frame": 0.75,
"value": {
"__uuid__": "d894570e-3fd2-4108-a48b-26bd209c151f"
}
},
{
"frame": 0.8333333333333334,
"value": {
"__uuid__": "86bad027-811a-4ec6-81f9-7bf23bc08d8d"
}
},
{
"frame": 0.9166666666666666,
"value": {
"__uuid__": "c0a6e5c7-628a-4cf5-806b-7576f48d087d"
}
},
{
"frame": 1,
"value": {
"__uuid__": "ad142da1-0e48-4ec6-aff5-dece859572ee"
}
},
{
"frame": 1.0833333333333333,
"value": {
"__uuid__": "b4f2328a-4b53-4a76-8284-d1e6e653c1fa"
}
},
{
"frame": 1.1666666666666667,
"value": {
"__uuid__": "2e8155ce-284b-4251-8e47-d910e3cb31ae"
}
},
{
"frame": 1.25,
"value": {
"__uuid__": "61313d5a-4fa5-4017-a745-dba70bdd8ac1"
}
},
{
"frame": 1.3333333333333333,
"value": {
"__uuid__": "649993fb-5e2b-4981-94b7-ae0f868b6879"
}
},
{
"frame": 1.4166666666666667,
"value": {
"__uuid__": "41a4acda-8069-4b94-8346-559ae0bc0b90"
}
},
{
"frame": 1.5,
"value": {
"__uuid__": "82db7e95-99c9-45c6-aa6e-9e80e9f04372"
}
},
{
"frame": 1.5833333333333333,
"value": {
"__uuid__": "d0f9477c-c66f-4c9b-959c-bd526ee480bc"
}
},
{
"frame": 1.6666666666666667,
"value": {
"__uuid__": "38423321-8c8c-4b88-88aa-69ad3f28465b"
}
},
{
"frame": 1.75,
"value": {
"__uuid__": "481e09b7-fb36-4bbd-b8f7-942d4761f546"
}
},
{
"frame": 1.8333333333333333,
"value": {
"__uuid__": "0c1f2b44-1313-44a2-9e80-9aa05c76d4c6"
}
},
{
"frame": 1.9166666666666667,
"value": {
"__uuid__": "fa09de97-d148-445d-bde1-bfd817eea732"
}
},
{
"frame": 2,
"value": {
"__uuid__": "442d015f-224e-4167-b6fe-bfbf47cd5985"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "448bec6b-7948-476e-aecc-2386768f5c6f",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "king_b",
"_objFlags": 0,
"_native": "",
"_duration": 2.0166666666666666,
"sample": 60,
"speed": 1,
"wrapMode": 1,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "c8b7ccec-3ec1-4988-82be-0fca173b5c18"
}
},
{
"frame": 0.08333333333333333,
"value": {
"__uuid__": "c13bd4f9-cc02-4fea-a609-b79c1cffb157"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "5feb8c61-c981-4d65-ac72-1e01af0374ab"
}
},
{
"frame": 0.25,
"value": {
"__uuid__": "9c302fb8-16db-4b60-80f3-90f44dcce6cb"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "832149c5-b909-48c2-b6a6-136c80a3565a"
}
},
{
"frame": 0.4166666666666667,
"value": {
"__uuid__": "a8e2dac8-3088-40a1-8886-d731519d0e9f"
}
},
{
"frame": 0.5,
"value": {
"__uuid__": "c3397264-2db8-475f-847f-9234af5f8256"
}
},
{
"frame": 0.5833333333333334,
"value": {
"__uuid__": "061ea870-833d-41b5-9463-e6d069eb3009"
}
},
{
"frame": 0.6666666666666666,
"value": {
"__uuid__": "67dc0837-0dc6-495f-980a-fce55dc5995c"
}
},
{
"frame": 0.75,
"value": {
"__uuid__": "8a57563c-7f50-44da-8c61-8b9cb0a26eda"
}
},
{
"frame": 0.8333333333333334,
"value": {
"__uuid__": "0f3cb6d3-0277-4761-b0b4-f2a47b796bd9"
}
},
{
"frame": 0.9166666666666666,
"value": {
"__uuid__": "0ee14a02-0903-4ba2-a227-c37b0e04683d"
}
},
{
"frame": 1,
"value": {
"__uuid__": "2f946f6f-f4b2-41fd-8fa9-d5d6b5b85090"
}
},
{
"frame": 1.0833333333333333,
"value": {
"__uuid__": "7b17759e-05f3-4bc8-857f-026f4873d191"
}
},
{
"frame": 1.1666666666666667,
"value": {
"__uuid__": "01359b3d-889c-4822-bdcb-31f389f2e36c"
}
},
{
"frame": 1.25,
"value": {
"__uuid__": "e7d5c675-e1ee-438b-ae35-e659a44e48c1"
}
},
{
"frame": 1.3333333333333333,
"value": {
"__uuid__": "c7cd2881-6928-4702-bb33-99fa43311da9"
}
},
{
"frame": 1.4166666666666667,
"value": {
"__uuid__": "3b1312b5-f71b-4719-988e-12a352c75d9f"
}
},
{
"frame": 1.5,
"value": {
"__uuid__": "38281e7a-ce3d-4c13-a102-2079647dc38b"
}
},
{
"frame": 1.5833333333333333,
"value": {
"__uuid__": "5bc2bbda-64f3-44fd-a488-3ce9b4ee3b37"
}
},
{
"frame": 1.6666666666666667,
"value": {
"__uuid__": "0462a322-e93d-4152-a162-936cdb804fbd"
}
},
{
"frame": 1.75,
"value": {
"__uuid__": "8f336589-c196-4aaa-bd14-0e7a597e7713"
}
},
{
"frame": 1.8333333333333333,
"value": {
"__uuid__": "13a66b95-41dd-43b9-ab02-8b50c71073b5"
}
},
{
"frame": 1.9166666666666667,
"value": {
"__uuid__": "7a6b9f8f-c7f1-4950-9b22-a380acbd71d8"
}
},
{
"frame": 2,
"value": {
"__uuid__": "9f7a041d-b373-42ba-a7a7-d12f47842480"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "4c7b7863-734f-4067-84b9-ddfce42c32da",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "people_a",
"_objFlags": 0,
"_native": "",
"_duration": 0.35,
"sample": 60,
"speed": 1,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "430e7d32-02e3-48b6-8fd1-f54076431f80"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "cbe09ab8-c8f0-465e-a296-75a30ea88b0b"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "430e7d32-02e3-48b6-8fd1-f54076431f80"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "c84887b6-9233-4800-bbde-f8ffcd33c943",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "people_b",
"_objFlags": 0,
"_native": "",
"_duration": 0.35,
"sample": 60,
"speed": 1,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "1a190907-da0b-401e-a614-9eec33f81144"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "9bf2c7e5-e8b9-4988-a559-2883f3022f0e"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "1a190907-da0b-401e-a614-9eec33f81144"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "ce2dcf3d-f034-4b5f-b92e-14ae21ca9f48",
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "8315ed0e-dbc2-4825-8b02-09453744cd01", "uuid": "e50138c2-c283-48a7-91b9-2580a94788c1",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"ver": "2.0.1",
"uuid": "cfbb360f-f76c-44aa-86e9-229785f5c361",
"downloadMode": 0,
"duration": 1.906938,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "8df51d2f-bf3a-4c4c-8dc4-db7a14003138",
"downloadMode": 0,
"duration": 0.261188,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "b858772c-ad74-47fa-87fe-a247f0de790c",
"downloadMode": 0,
"duration": 4.623625,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "f3c36dcd-b5f0-48c2-8648-780a35004548",
"downloadMode": 0,
"duration": 0.130612,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "38602cff-204a-41e9-8869-ff1192394d3e",
"downloadMode": 0,
"duration": 9.952625,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "9deae01d-5c70-445e-946b-c5d5ff72c073",
"downloadMode": 0,
"duration": 0.653063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "2684b6fe-4b8a-43aa-b046-544367fda390",
"downloadMode": 0,
"duration": 2.586063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "e9fce7c5-7ebb-40a1-937c-ee6aa343456d",
"downloadMode": 0,
"duration": 1.306063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "9d52dcb7-7ab1-4cf4-8444-462956c3c573",
"downloadMode": 0,
"duration": 4.284063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "2d17962f-1d36-4d30-9a8a-d6228c83224b",
"downloadMode": 0,
"duration": 0.261188,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "4604f745-c140-464d-96ca-71ab77e0fcb6",
"downloadMode": 0,
"duration": 0.7575,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "4c3e305b-127c-457c-81bc-b82811d30664",
"downloadMode": 0,
"duration": 0.391813,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "9c43d062-43bb-466d-af91-017ac5b050d9",
"downloadMode": 0,
"duration": 0.391813,
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "bbf334e3-49af-4d0b-9d4c-a7a9398f1261", "uuid": "214866f2-4311-4cc5-8b32-7a390aa7332c",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"ver": "2.3.5",
"uuid": "948decc8-b846-45e8-b73d-70b55c95e83b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 201,
"platformSettings": {},
"subMetas": {
"1": {
"ver": "1.0.4",
"uuid": "430e7d32-02e3-48b6-8fd1-f54076431f80",
"rawTextureUuid": "948decc8-b846-45e8-b73d-70b55c95e83b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 2,
"trimX": 5,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 201,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "09efca57-67d0-40d1-9354-69615b939c15",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 198,
"platformSettings": {},
"subMetas": {
"2": {
"ver": "1.0.4",
"uuid": "cbe09ab8-c8f0-465e-a296-75a30ea88b0b",
"rawTextureUuid": "09efca57-67d0-40d1-9354-69615b939c15",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 0.5,
"trimX": 5,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bfdd8dfc-5943-41d1-87c8-87a6d7dc0353",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 201,
"platformSettings": {},
"subMetas": {
"3": {
"ver": "1.0.4",
"uuid": "1a190907-da0b-401e-a614-9eec33f81144",
"rawTextureUuid": "bfdd8dfc-5943-41d1-87c8-87a6d7dc0353",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 10.5,
"offsetY": 2,
"trimX": 26,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 201,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dd3ee6c5-9970-4f31-9382-2853235e7b28",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 198,
"platformSettings": {},
"subMetas": {
"4": {
"ver": "1.0.4",
"uuid": "9bf2c7e5-e8b9-4988-a559-2883f3022f0e",
"rawTextureUuid": "dd3ee6c5-9970-4f31-9382-2853235e7b28",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 10.5,
"offsetY": 0.5,
"trimX": 26,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "06fcc3b1-0ccc-4663-9cc8-5225ffe5f1ba",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "70ffbc4f-9403-4acc-acec-fce7c0967c3c",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "5f83c328-a6c5-43a6-bdad-f1a41c0e82ce",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f96ee6de-e43c-4daf-aa9f-3e2ad4146ef5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"1": {
"ver": "1.0.4",
"uuid": "da688780-84f1-4064-8c8a-6a2087cd91b1",
"rawTextureUuid": "f96ee6de-e43c-4daf-aa9f-3e2ad4146ef5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "16075824-9623-4971-bed1-fdd1ae1ed449",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"10": {
"ver": "1.0.4",
"uuid": "d894570e-3fd2-4108-a48b-26bd209c151f",
"rawTextureUuid": "16075824-9623-4971-bed1-fdd1ae1ed449",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "164bf308-1412-4621-8cf6-cfa338c2de56",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 232,
"platformSettings": {},
"subMetas": {
"11": {
"ver": "1.0.4",
"uuid": "86bad027-811a-4ec6-81f9-7bf23bc08d8d",
"rawTextureUuid": "164bf308-1412-4621-8cf6-cfa338c2de56",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 232,
"rawWidth": 189,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "32b2f188-d5dd-4e8b-9f10-3dcec41aff6d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"12": {
"ver": "1.0.4",
"uuid": "c0a6e5c7-628a-4cf5-806b-7576f48d087d",
"rawTextureUuid": "32b2f188-d5dd-4e8b-9f10-3dcec41aff6d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d8de921e-1152-4aaa-abfb-d645a04a6ef5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 233,
"platformSettings": {},
"subMetas": {
"13": {
"ver": "1.0.4",
"uuid": "ad142da1-0e48-4ec6-aff5-dece859572ee",
"rawTextureUuid": "d8de921e-1152-4aaa-abfb-d645a04a6ef5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 233,
"rawWidth": 189,
"rawHeight": 233,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d2a41655-bebc-462c-8635-bf60e9d25a9b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"14": {
"ver": "1.0.4",
"uuid": "b4f2328a-4b53-4a76-8284-d1e6e653c1fa",
"rawTextureUuid": "d2a41655-bebc-462c-8635-bf60e9d25a9b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "aad2e7ab-abe0-426e-828b-f407010a7ab0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"15": {
"ver": "1.0.4",
"uuid": "2e8155ce-284b-4251-8e47-d910e3cb31ae",
"rawTextureUuid": "aad2e7ab-abe0-426e-828b-f407010a7ab0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "04102989-f5bd-49c5-8777-0aebed170b52",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"16": {
"ver": "1.0.4",
"uuid": "61313d5a-4fa5-4017-a745-dba70bdd8ac1",
"rawTextureUuid": "04102989-f5bd-49c5-8777-0aebed170b52",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d56277a8-51e1-4465-9290-d3694c8dbcfc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"17": {
"ver": "1.0.4",
"uuid": "649993fb-5e2b-4981-94b7-ae0f868b6879",
"rawTextureUuid": "d56277a8-51e1-4465-9290-d3694c8dbcfc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "34f27476-63e9-44cd-94e9-b57e7bd99822",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 235,
"platformSettings": {},
"subMetas": {
"18": {
"ver": "1.0.4",
"uuid": "41a4acda-8069-4b94-8346-559ae0bc0b90",
"rawTextureUuid": "34f27476-63e9-44cd-94e9-b57e7bd99822",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 235,
"rawWidth": 189,
"rawHeight": 235,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "eeaa468d-cd34-44dc-98d8-cc6c777b0375",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 232,
"platformSettings": {},
"subMetas": {
"19": {
"ver": "1.0.4",
"uuid": "82db7e95-99c9-45c6-aa6e-9e80e9f04372",
"rawTextureUuid": "eeaa468d-cd34-44dc-98d8-cc6c777b0375",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 232,
"rawWidth": 189,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "995e817c-6fa4-4266-af0d-0c442bdc9794",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"2": {
"ver": "1.0.4",
"uuid": "78834464-e762-4762-a3fe-bb165016f318",
"rawTextureUuid": "995e817c-6fa4-4266-af0d-0c442bdc9794",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b88a9495-aba0-47c9-b05d-e1f92157d436",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"20": {
"ver": "1.0.4",
"uuid": "d0f9477c-c66f-4c9b-959c-bd526ee480bc",
"rawTextureUuid": "b88a9495-aba0-47c9-b05d-e1f92157d436",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9fb787a3-7d08-4323-80a6-5bbf46fa8c13",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 233,
"platformSettings": {},
"subMetas": {
"21": {
"ver": "1.0.4",
"uuid": "38423321-8c8c-4b88-88aa-69ad3f28465b",
"rawTextureUuid": "9fb787a3-7d08-4323-80a6-5bbf46fa8c13",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 233,
"rawWidth": 189,
"rawHeight": 233,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment