Commit 4e17a6b5 authored by liujiaxin's avatar liujiaxin

'init'

parent ce304201
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="TsLint" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/OP15.iml" filepath="$PROJECT_DIR$/.idea/OP15.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
"compressing": "^1.5.0", "compressing": "^1.5.0",
"ng-zorro-antd": "^8.5.2", "ng-zorro-antd": "^8.5.2",
"rxjs": "~6.5.4", "rxjs": "~6.5.4",
"node-sass": "^4.0.0",
"spark-md5": "^3.0.0", "spark-md5": "^3.0.0",
"tslib": "^1.10.0", "tslib": "^1.10.0",
"zone.js": "~0.10.2" "zone.js": "~0.10.2"
...@@ -55,4 +54,4 @@ ...@@ -55,4 +54,4 @@
"tslint": "~5.18.0", "tslint": "~5.18.0",
"typescript": "~3.7.5" "typescript": "~3.7.5"
} }
} }
\ No newline at end of file
...@@ -329,6 +329,7 @@ export class MySprite extends Sprite { ...@@ -329,6 +329,7 @@ export class MySprite extends Sprite {
this.scaleX = this.scaleY = value; this.scaleX = this.scaleY = value;
} }
getBoundingBox() { getBoundingBox() {
const getParentData = (item) => { const getParentData = (item) => {
...@@ -1956,6 +1957,10 @@ export class HotZoneItem extends MySprite { ...@@ -1956,6 +1957,10 @@ export class HotZoneItem extends MySprite {
audio_url; audio_url;
pic_url; pic_url;
text; text;
gIdx;
isAnimaStyle = false;
private _itemType; private _itemType;
private shapeRect: ShapeRect; private shapeRect: ShapeRect;
...@@ -2056,7 +2061,10 @@ export class HotZoneItem extends MySprite { ...@@ -2056,7 +2061,10 @@ export class HotZoneItem extends MySprite {
this.hideLabel(); this.hideLabel();
} }
setAnimaStyle(isAnimaStyle) {
this.isAnimaStyle = isAnimaStyle;
console.log('in setAnimaStyle ')
}
drawArrow() { drawArrow() {
if (!this.arrow) { return; } if (!this.arrow) { return; }
...@@ -2068,13 +2076,16 @@ export class HotZoneItem extends MySprite { ...@@ -2068,13 +2076,16 @@ export class HotZoneItem extends MySprite {
this.arrow.update(); this.arrow.update();
this.arrowTop.x = rect.x + rect.width / 2; if (!this.isAnimaStyle) {
this.arrowTop.y = rect.y; this.arrowTop.x = rect.x + rect.width / 2;
this.arrowTop.update(); this.arrowTop.y = rect.y;
this.arrowTop.update();
this.arrowRight.x = rect.x + rect.width;
this.arrowRight.y = rect.y + rect.height / 2; this.arrowRight.x = rect.x + rect.width;
this.arrowRight.update(); this.arrowRight.y = rect.y + rect.height / 2;
this.arrowRight.update();
}
} }
drawFrame() { drawFrame() {
...@@ -2197,10 +2208,155 @@ export class HotZoneLabel extends Label { ...@@ -2197,10 +2208,155 @@ export class HotZoneLabel extends Label {
this.drawFrame(); this.drawFrame();
} }
getLabelRect() {
const rect = this.getBoundingBox();
const width = rect.width / this.scaleX;
const height = this.height * this.scaleY;
const x = this.x - width / 2;
const y = this.y - height / 2;
return {width, height, x, y};
}
} }
export class HotZoneAction extends MySprite {
}
export class DragItem extends MySprite {
lineDashFlag = true;
item;
init() {
this.anchorX = 0.5;
this.anchorY = 0.5;
this.initCenterCircle();
}
setSize(w, h) {
this.anchorX = 0.5;
this.anchorY = 0.5;
this.width = w;
this.height = h;
// const rect = new ShapeRect(this.ctx);
// rect.x = -w / 2;
// rect.y = -h / 2;
// rect.setSize(w, h);
// rect.fillColor = '#000000';
// rect.alpha = 0.1;
// this.addChild(rect);
}
initCenterCircle() {
const circle = new ShapeCircle(this.ctx);
circle.setRadius(10);
circle.fillColor = '#ffa568'
this.addChild(circle);
this.width = circle.width;
this.height = circle.height;
}
getPosition() {
return {x: this.x, y: this.y};
}
drawLine() {
if (!this.item) {
return;
}
this.ctx.save();
const rect = this.getBoundingBox();
const w = rect.width;
const h = rect.height;
const x = rect.x //+ w / 2;
const y = rect.y //+ h / 2;
this.ctx.setLineDash([4, 4]);
this.ctx.lineWidth = 1;
this.ctx.strokeStyle = '#ffa568';
this.ctx.beginPath();
this.ctx.moveTo( x + w / 2 , y + h / 2 );
this.ctx.lineTo(this.item.x, this.item.y);
// this.ctx.fill();
this.ctx.stroke();
this.ctx.restore();
}
drawFrame() {
this.ctx.save();
const rect = this.getBoundingBox();
const w = rect.width;
const h = rect.height;
const x = rect.x //+ w / 2;
const y = rect.y //+ h / 2;
this.ctx.setLineDash([4, 4]);
this.ctx.lineWidth = 2;
this.ctx.strokeStyle = '#ffa568';
// this.ctx.fillStyle = '#ffffff';
this.ctx.beginPath();
this.ctx.moveTo( x - w / 2, y - h / 2);
this.ctx.lineTo(x + w / 2, y - h / 2);
this.ctx.lineTo(x + w / 2, y + h / 2);
this.ctx.lineTo(x - w / 2, y + h / 2);
this.ctx.lineTo(x - w / 2, y - h / 2);
// this.ctx.fill();
this.ctx.stroke();
this.ctx.restore();
}
draw() {
super.draw();
if (this.lineDashFlag) {
this.drawLine();
// this.drawFrame();
// this.drawArrow();
}
}
}
export class EditorItem extends MySprite { export class EditorItem extends MySprite {
...@@ -2208,6 +2364,8 @@ export class EditorItem extends MySprite { ...@@ -2208,6 +2364,8 @@ export class EditorItem extends MySprite {
arrow: MySprite; arrow: MySprite;
label: Label; label: Label;
text; text;
arrowTop;
arrowRight;
showLabel(text = null) { showLabel(text = null) {
...@@ -2246,6 +2404,13 @@ export class EditorItem extends MySprite { ...@@ -2246,6 +2404,13 @@ export class EditorItem extends MySprite {
this.arrow.load('assets/common/arrow.png', 1, 0); this.arrow.load('assets/common/arrow.png', 1, 0);
this.arrow.setScaleXY(0.06); this.arrow.setScaleXY(0.06);
// this.arrowTop = new MySprite(this.ctx);
// this.arrowTop.load('assets/common/arrow_top.png', 0.5, 0);
// this.arrowTop.setScaleXY(0.06);
//
// this.arrowRight = new MySprite(this.ctx);
// this.arrowRight.load('assets/common/arrow_right.png', 1, 0.5);
// this.arrowRight.setScaleXY(0.06);
} }
this.showLabel(); this.showLabel();
...@@ -2262,16 +2427,25 @@ export class EditorItem extends MySprite { ...@@ -2262,16 +2427,25 @@ export class EditorItem extends MySprite {
this.hideLabel(); this.hideLabel();
} }
refreshLabelScale() {}
drawArrow() { drawArrow() {
if (!this.arrow) { return; } if (!this.arrow) { return; }
const rect = this.getBoundingBox(); const rect = this.getBoundingBox();
this.arrow.x = rect.x + rect.width; this.arrow.x = rect.x + rect.width;
this.arrow.y = rect.y; this.arrow.y = rect.y;
this.arrow.update(); this.arrow.update();
// this.arrowTop.x = rect.x + rect.width / 2;
// this.arrowTop.y = rect.y;
// this.arrowTop.update();
//
// this.arrowRight.x = rect.x + rect.width;
// this.arrowRight.y = rect.y + rect.height / 2;
// this.arrowRight.update();
} }
drawFrame() { drawFrame() {
...@@ -2325,784 +2499,3 @@ export class EditorItem extends MySprite { ...@@ -2325,784 +2499,3 @@ export class EditorItem extends MySprite {
} }
//
//
// import TWEEN from '@tweenjs/tween.js';
//
//
// class Sprite {
// x = 0;
// y = 0;
// color = '';
// radius = 0;
// alive = false;
// margin = 0;
// angle = 0;
// ctx;
//
// constructor(ctx) {
// this.ctx = ctx;
// }
// update($event) {
// this.draw();
// }
// draw() {
//
// }
//
// }
//
//
//
//
//
// export class MySprite extends Sprite {
//
// width = 0;
// height = 0;
// _anchorX = 0;
// _anchorY = 0;
// _offX = 0;
// _offY = 0;
// scaleX = 1;
// scaleY = 1;
// alpha = 1;
// rotation = 0;
// visible = true;
//
// children = [this];
//
// img;
// _z = 0;
//
//
// init(imgObj = null, anchorX:number = 0.5, anchorY:number = 0.5) {
//
// if (imgObj) {
//
// this.img = imgObj;
//
// this.width = this.img.width;
// this.height = this.img.height;
// }
//
// this.anchorX = anchorX;
// this.anchorY = anchorY;
// }
//
//
//
// update($event = null) {
// if (this.visible) {
// this.draw();
// }
// }
// draw() {
//
// this.ctx.save();
//
// this.drawInit();
//
// this.updateChildren();
//
// this.ctx.restore();
// }
//
// drawInit() {
//
// this.ctx.translate(this.x, this.y);
//
// this.ctx.rotate(this.rotation * Math.PI / 180);
//
// this.ctx.scale(this.scaleX, this.scaleY);
//
// this.ctx.globalAlpha = this.alpha;
//
// }
//
// drawSelf() {
// if (this.img) {
// this.ctx.drawImage(this.img, this._offX, this._offY);
// }
// }
//
// updateChildren() {
//
// if (this.children.length <= 0) { return; }
//
// for (let i = 0; i < this.children.length; i++) {
//
// if (this.children[i] === this) {
//
// this.drawSelf();
// } else {
//
// this.children[i].update();
// }
// }
// }
//
//
// load(url, anchorX = 0.5, anchorY = 0.5) {
//
// return new Promise((resolve, reject) => {
// const img = new Image();
// img.onload = () => resolve(img);
// img.onerror = reject;
// img.src = url;
// }).then(img => {
//
// this.init(img, anchorX, anchorY);
// return img;
// });
// }
//
// addChild(child, z = 1) {
// if (this.children.indexOf(child) === -1) {
// this.children.push(child);
// child._z = z;
// child.parent = this;
// }
//
// this.children.sort((a, b) => {
// return a._z - b._z;
// });
//
// }
// removeChild(child) {
// const index = this.children.indexOf(child);
// if (index !== -1) {
// this.children.splice(index, 1);
// }
// }
//
// set anchorX(value) {
// this._anchorX = value;
// this.refreshAnchorOff();
// }
// get anchorX() {
// return this._anchorX;
// }
// set anchorY(value) {
// this._anchorY = value;
// this.refreshAnchorOff();
// }
// get anchorY() {
// return this._anchorY;
// }
// refreshAnchorOff() {
// this._offX = -this.width * this.anchorX;
// this._offY = -this.height * this.anchorY;
// }
//
// setScaleXY(value) {
// this.scaleX = this.scaleY = value;
// }
//
// getBoundingBox() {
//
// const x = this.x + this._offX * this.scaleX;
// const y = this.y + this._offY * this.scaleY;
// const width = this.width * this.scaleX;
// const height = this.height * this.scaleY;
//
// return {x, y, width, height};
// }
//
// }
//
//
//
//
//
// export class Item extends MySprite {
//
// baseX;
//
// move(targetY, callBack) {
//
// const self = this;
//
// const tween = new TWEEN.Tween(this)
// .to({ y: targetY }, 2500)
// .easing(TWEEN.Easing.Quintic.Out)
// .onComplete(function() {
//
// self.hide(callBack);
// // if (callBack) {
// // callBack();
// // }
// })
// .start();
//
// }
//
// show(callBack = null) {
//
// const tween = new TWEEN.Tween(this)
// .to({ alpha: 1 }, 800)
// // .easing(TWEEN.Easing.Quadratic.Out) // Use an easing function to make the animation smooth.
// .onComplete(function() {
// if (callBack) {
// callBack();
// }
// })
// .start(); // Start the tween immediately.
//
// }
//
// hide(callBack = null) {
//
// const tween = new TWEEN.Tween(this)
// .to({ alpha: 0 }, 800)
// // .easing(TWEEN.Easing.Quadratic.Out) // Use an easing function to make the animation smooth.
// .onComplete(function() {
// if (callBack) {
// callBack();
// }
// })
// .start(); // Start the tween immediately.
// }
//
//
// shake(id) {
//
//
// if (!this.baseX) {
// this.baseX = this.x;
// }
//
// const baseX = this.baseX;
// const baseTime = 50;
// const sequence = [
// {target: {x: baseX + 40 * id}, time: baseTime - 25},
// {target: {x: baseX - 20 * id}, time: baseTime},
// {target: {x: baseX + 10 * id}, time: baseTime},
// {target: {x: baseX - 5 * id}, time: baseTime},
// {target: {x: baseX + 2 * id}, time: baseTime},
// {target: {x: baseX - 1 * id}, time: baseTime},
// {target: {x: baseX}, time: baseTime},
//
// ];
//
//
// const self = this;
//
// function runSequence() {
//
// if (self['shakeTween']) {
// self['shakeTween'].stop();
// }
//
// const tween = new TWEEN.Tween(self);
//
// if (sequence.length > 0) {
// // console.log('sequence.length: ', sequence.length);
// const action = sequence.shift();
// tween.to(action['target'], action['time']);
// tween.onComplete( () => {
// runSequence();
// });
// tween.start();
//
// self['shakeTween'] = tween;
// }
// }
//
// runSequence();
//
// }
//
//
//
// drop(targetY, callBack = null) {
//
// const self = this;
//
// const time = Math.abs(targetY - this.y) * 2.4;
//
// this.alpha = 1;
//
// const tween = new TWEEN.Tween(this)
// .to({ y: targetY }, time)
// .easing(TWEEN.Easing.Cubic.In)
// .onComplete(function() {
//
// // self.hideItem(callBack);
// if (callBack) {
// callBack();
// }
// })
// .start();
//
//
// }
//
//
// }
//
//
// export class EndSpr extends MySprite {
//
// show(s) {
//
// this.scaleX = this.scaleY = 0;
// this.alpha = 0;
//
// const tween = new TWEEN.Tween(this)
// .to({ alpha: 1, scaleX: s, scaleY: s }, 800)
// .easing(TWEEN.Easing.Elastic.Out) // Use an easing function to make the animation smooth.
// .onComplete(function() {
//
// })
// .start(); // Start the tween immediately.
//
// }
// }
//
//
//
// export class ShapeRect extends MySprite {
//
// fillColor = '#FF0000';
//
// setSize(w, h) {
// this.width = w;
// this.height = h;
//
// console.log('w:', w);
// console.log('h:', h);
// }
//
// drawShape() {
//
// this.ctx.fillStyle = this.fillColor;
// this.ctx.fillRect(this._offX, this._offY, this.width, this.height);
//
// }
//
//
// drawSelf() {
// super.drawSelf();
// this.drawShape();
// }
// }
//
//
// export class HotZoneItem extends MySprite {
//
//
// lineDashFlag = false;
// arrow: MySprite;
// label: Label;
// title;
//
// arrowTop;
// arrowRight;
//
// audio_url;
// pic_url;
// text;
// private _itemType;
// private shapeRect: ShapeRect;
//
// get itemType() {
// return this._itemType;
// }
// set itemType(value) {
// this._itemType = value;
// }
//
// setSize(w, h) {
// this.width = w;
// this.height = h;
//
//
// const rect = new ShapeRect(this.ctx);
// rect.x = -w / 2;
// rect.y = -h / 2;
// rect.setSize(w, h);
// rect.fillColor = '#ffffff';
// rect.alpha = 0.2;
// this.addChild(rect);
// }
//
// showLabel(text = null) {
//
//
// if (!this.label) {
// this.label = new Label(this.ctx);
// this.label.anchorY = 0;
// this.label.fontSize = '40px';
// this.label.textAlign = 'center';
// this.addChild(this.label);
// // this.label.scaleX = 1 / this.scaleX;
// // this.label.scaleY = 1 / this.scaleY;
//
// this.refreshLabelScale();
//
// }
//
// if (text) {
// this.label.text = text;
// } else if (this.title) {
// this.label.text = this.title;
// }
// this.label.visible = true;
//
// }
//
// hideLabel() {
// if (!this.label) { return; }
//
// this.label.visible = false;
// }
//
// refreshLabelScale() {
// if (this.scaleX == this.scaleY) {
// this.label.setScaleXY(1);
// }
//
// if (this.scaleX > this.scaleY) {
// this.label.scaleX = this.scaleY / this.scaleX;
// } else {
// this.label.scaleY = this.scaleX / this.scaleY;
// }
// }
//
// showLineDash() {
// this.lineDashFlag = true;
//
// if (this.arrow) {
// this.arrow.visible = true;
// } else {
// this.arrow = new MySprite(this.ctx);
// this.arrow.load('assets/common/arrow.png', 1, 0);
// this.arrow.setScaleXY(0.06);
//
// this.arrowTop = new MySprite(this.ctx);
// this.arrowTop.load('assets/common/arrow_top.png', 0.5, 0);
// this.arrowTop.setScaleXY(0.06);
//
// this.arrowRight = new MySprite(this.ctx);
// this.arrowRight.load('assets/common/arrow_right.png', 1, 0.5);
// this.arrowRight.setScaleXY(0.06);
// }
//
// this.showLabel();
// }
//
// hideLineDash() {
//
// this.lineDashFlag = false;
//
// if (this.arrow) {
// this.arrow.visible = false;
// }
//
// this.hideLabel();
// }
//
//
//
// drawArrow() {
// if (!this.arrow) { return; }
//
// const rect = this.getBoundingBox();
// this.arrow.x = rect.x + rect.width;
// this.arrow.y = rect.y;
//
// this.arrow.update();
//
//
// this.arrowTop.x = rect.x + rect.width / 2;
// this.arrowTop.y = rect.y;
// this.arrowTop.update();
//
// this.arrowRight.x = rect.x + rect.width;
// this.arrowRight.y = rect.y + rect.height / 2;
// this.arrowRight.update();
// }
//
// drawFrame() {
//
//
// this.ctx.save();
//
//
// const rect = this.getBoundingBox();
//
// const w = rect.width;
// const h = rect.height;
// const x = rect.x + w / 2;
// const y = rect.y + h / 2;
//
// this.ctx.setLineDash([5, 5]);
// this.ctx.lineWidth = 2;
// this.ctx.strokeStyle = '#1bfff7';
// // this.ctx.fillStyle = '#ffffff';
//
// this.ctx.beginPath();
//
// this.ctx.moveTo( x - w / 2, y - h / 2);
//
// this.ctx.lineTo(x + w / 2, y - h / 2);
//
// this.ctx.lineTo(x + w / 2, y + h / 2);
//
// this.ctx.lineTo(x - w / 2, y + h / 2);
//
// this.ctx.lineTo(x - w / 2, y - h / 2);
//
// // this.ctx.fill();
// this.ctx.stroke();
//
//
//
//
// this.ctx.restore();
//
// }
//
// draw() {
// super.draw();
//
// if (this.lineDashFlag) {
// this.drawFrame();
// this.drawArrow();
// }
// }
// }
//
//
// export class EditorItem extends MySprite {
//
// lineDashFlag = false;
// arrow: MySprite;
// label:Label;
// text;
//
// showLabel(text = null) {
//
//
// if (!this.label) {
// this.label = new Label(this.ctx);
// this.label.anchorY = 0;
// this.label.fontSize = '50px';
// this.label.textAlign = 'center';
// this.addChild(this.label);
// this.label.setScaleXY(1 / this.scaleX);
// }
//
// if (text) {
// this.label.text = text;
// } else if (this.text) {
// this.label.text = this.text;
// }
// this.label.visible = true;
//
// }
//
// hideLabel() {
// if (!this.label) { return; }
//
// this.label.visible = false;
// }
//
// showLineDash() {
// this.lineDashFlag = true;
//
// if (this.arrow) {
// this.arrow.visible = true;
// } else {
// this.arrow = new MySprite(this.ctx);
// this.arrow.load('assets/common/arrow.png', 1, 0);
// this.arrow.setScaleXY(0.06);
//
// }
//
// this.showLabel();
// }
//
// hideLineDash() {
//
// this.lineDashFlag = false;
//
// if (this.arrow) {
// this.arrow.visible = false;
// }
//
// this.hideLabel();
// }
//
//
//
// drawArrow() {
// if (!this.arrow) { return; }
//
// const rect = this.getBoundingBox();
// this.arrow.x = rect.x + rect.width;
// this.arrow.y = rect.y;
//
// this.arrow.update();
// }
//
// drawFrame() {
//
//
// this.ctx.save();
//
//
// const rect = this.getBoundingBox();
//
// const w = rect.width;
// const h = rect.height;
// const x = rect.x + w / 2;
// const y = rect.y + h / 2;
//
// this.ctx.setLineDash([5, 5]);
// this.ctx.lineWidth = 2;
// this.ctx.strokeStyle = '#1bfff7';
// // this.ctx.fillStyle = '#ffffff';
//
// this.ctx.beginPath();
//
// this.ctx.moveTo( x - w / 2, y - h / 2);
//
// this.ctx.lineTo(x + w / 2, y - h / 2);
//
// this.ctx.lineTo(x + w / 2, y + h / 2);
//
// this.ctx.lineTo(x - w / 2, y + h / 2);
//
// this.ctx.lineTo(x - w / 2, y - h / 2);
//
// // this.ctx.fill();
// this.ctx.stroke();
//
//
//
//
// this.ctx.restore();
//
// }
//
// draw() {
// super.draw();
//
// if (this.lineDashFlag) {
// this.drawFrame();
// this.drawArrow();
// }
// }
// }
//
//
//
// export class Label extends MySprite {
//
// text:String;
// fontSize:String = '40px';
// fontName:String = 'Verdana';
// textAlign:String = 'left';
//
//
// constructor(ctx) {
// super(ctx);
// this.init();
// }
//
// drawText() {
//
// // console.log('in drawText', this.text);
//
// if (!this.text) { return; }
//
// this.ctx.font = `${this.fontSize} ${this.fontName}`;
// this.ctx.textAlign = this.textAlign;
// this.ctx.textBaseline = 'middle';
// this.ctx.fontWeight = 900;
//
// this.ctx.lineWidth = 5;
// this.ctx.strokeStyle = '#ffffff';
// this.ctx.strokeText(this.text, 0, 0);
//
// this.ctx.fillStyle = '#000000';
// this.ctx.fillText(this.text, 0, 0);
//
//
// }
//
//
// drawSelf() {
// super.drawSelf();
// this.drawText();
// }
//
// }
//
//
//
// export function getPosByAngle(angle, len) {
//
// const radian = angle * Math.PI / 180;
// const x = Math.sin(radian) * len;
// const y = Math.cos(radian) * len;
//
// return {x, y};
//
// }
//
// export function getAngleByPos(px, py, mx, my) {
//
// // const _x = p2x - p1x;
// // const _y = p2y - p1y;
// // const tan = _y / _x;
// //
// // const radina = Math.atan(tan); // 用反三角函数求弧度
// // const angle = Math.floor(180 / (Math.PI / radina)); //
// //
// // console.log('r: ' , angle);
// // return angle;
// //
//
//
//
// const x = Math.abs(px - mx);
// const y = Math.abs(py - my);
// // const x = Math.abs(mx - px);
// // const y = Math.abs(my - py);
// const z = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));
// const cos = y / z;
// const radina = Math.acos(cos); // 用反三角函数求弧度
// let angle = Math.floor(180 / (Math.PI / radina) * 100) / 100; // 将弧度转换成角度
//
// if(mx > px && my > py) {// 鼠标在第四象限
// angle = 180 - angle;
// }
//
// if(mx === px && my > py) {// 鼠标在y轴负方向上
// angle = 180;
// }
//
// if(mx > px && my === py) {// 鼠标在x轴正方向上
// angle = 90;
// }
//
// if(mx < px && my > py) {// 鼠标在第三象限
// angle = 180 + angle;
// }
//
// if(mx < px && my === py) {// 鼠标在x轴负方向
// angle = 270;
// }
//
// if(mx < px && my < py) {// 鼠标在第二象限
// angle = 360 - angle;
// }
//
// // console.log('angle: ', angle);
// return angle;
//
// }
...@@ -32,33 +32,143 @@ ...@@ -32,33 +32,143 @@
<nz-divider style="margin-top: 10px;"></nz-divider> <nz-divider style="margin-top: 10px;"></nz-divider>
<div style="margin-top: -20px; margin-bottom: 5px; width: 100%;">
<div style="margin-top: -20px; margin-bottom: 5px"> <div *ngIf="customTypeGroupArr">
<nz-radio-group [ngModel]="it.itemType" (ngModelChange)="radioChange($event, it)"> <nz-radio-group [ngModel]="it.gIdx" (ngModelChange)="customRadioChange($event, it)" style="display: flex; align-items: center; justify-content: center; flex-wrap: wrap;">
<label *ngIf="isHasRect" nz-radio nzValue="rect">矩形</label> <div *ngFor="let group of customTypeGroupArr; let gIdx = index" style="display: flex; ">
<label *ngIf="isHasPic" nz-radio nzValue="pic">图片</label> <label nz-radio nzValue="{{gIdx}}">{{group.name}}</label>
<label *ngIf="isHasText" nz-radio nzValue="text">文本</label> </div>
</nz-radio-group> </nz-radio-group>
</div>
<div *ngIf="it.itemType == 'pic'"> </div>
<app-upload-image-with-preview
[picUrl]="it?.pic_url" <!-- <div *ngIf="!customTypeGroupArr">
(imageUploaded)="onItemImgUploadSuccess($event, it)"> <nz-radio-group [ngModel]="it.itemType" (ngModelChange)="radioChange($event, it)" style="display: flex; align-items: center; justify-content: center">
</app-upload-image-with-preview>
</div> <label *ngIf="isHasRect" nz-radio nzValue="rect">矩形</label>
<label *ngIf="isHasPic" nz-radio nzValue="pic">图片</label>
<label *ngIf="isHasText" nz-radio nzValue="text">文本</label>
</nz-radio-group>
</div> -->
<div *ngIf="it.itemType == 'text'">
<input type="text" nz-input [(ngModel)]="it.text" (blur)="saveText(it)">
</div> </div>
<div style="width: 100%; margin-top: 5px;"> <div *ngIf="customTypeGroupArr && customTypeGroupArr[it.gIdx]">
<app-audio-recorder
[audioUrl]="it.audio_url" <div *ngIf="customTypeGroupArr[it.gIdx].pic">
(audioUploaded)="onItemAudioUploadSuccess($event, it)" <app-upload-image-with-preview
></app-audio-recorder> [picUrl]="it?.pic_url"
(imageUploaded)="onItemImgUploadSuccess($event, it)">
</app-upload-image-with-preview>
</div>
<div *ngIf="customTypeGroupArr[it.gIdx].text" style="margin-top: 5px">
<input type="text" nz-input [(ngModel)]="it.text" (blur)="saveText(it)">
</div>
<div *ngIf="customTypeGroupArr[it.gIdx].anima" align="center" style="margin-top: 5px">
<button nz-button (click)="setAnimaBtnClick(i)" >
<i nz-icon nzType="tool" nzTheme="outline"></i>
配置龙骨动画
</button>
</div>
<div *ngIf="customTypeGroupArr[it.gIdx].animaSmall" align="center" style="margin-top: 5px">
<button nz-button (click)="setAnimaSmallBtnClick(i)" >
<i nz-icon nzType="tool" nzTheme="outline"></i>
配置龙骨动画(小)
</button>
</div>
<div *ngIf="customTypeGroupArr[it.gIdx].audio" style="display: flex;align-items: center; margin-top: 5px">
<app-audio-recorder
style="margin: auto"
[audioUrl]="it.audio_url"
(audioUploaded)="onItemAudioUploadSuccess($event, it)"
></app-audio-recorder>
</div>
<!-- <div *ngIf="customTypeGroupArr[it.gIdx]?.action" style="display: flex;align-items: center; margin-top: 5px">-->
<!-- <app-custom-action-->
<!-- style="margin: auto"-->
<!-- [item]="it ? it['actionData_' + it.gIdx] : {}"-->
<!-- [type]="customTypeGroupArr[it.gIdx].action.type"-->
<!-- [option]="customTypeGroupArr[it.gIdx].action.option"-->
<!-- (save)="onSaveCustomAction($event, it)">-->
<!-- ></app-custom-action>-->
<!-- </div>-->
<div *ngIf="customTypeGroupArr[it.gIdx]?.isShowPos" style="display: flex; align-items: center; justify-content: center; margin-top: 5px;">
x: <input type="text" nz-input [(ngModel)]="it.posX" style="width: 50px; margin-right: 15px;" (blur)="saveItemPos(it)">
y: <input type="text" nz-input [(ngModel)]="it.posY" style="width: 50px" (blur)="saveItemPos(it)">
</div>
<div *ngIf="customTypeGroupArr[it.gIdx]?.select" align="center" >
<nz-select [(ngModel)]="it.selectType" nzAllowClear nzPlaceHolder="Choose" style="width: 70%; margin-top: 5px;">
<nz-option *ngFor="let s of customTypeGroupArr[it.gIdx]?.select" [nzValue]="s.value" [nzLabel]="s.label">
</nz-option>
</nz-select>
</div>
<div *ngIf="customTypeGroupArr[it.gIdx]?.label" align="center" style="margin-top: 5px; display: flex; align-items: center; justify-content: center;">
<span style="width: 30%;">{{customTypeGroupArr[it.gIdx].label + ':'}}</span>
<input type="text" nz-input [(ngModel)]="it.labelText" (blur)="saveText(it)">
</div>
<!-- <div *ngIf="customTypeGroupArr[it.gIdx]?.mathLabel" align="center" style="margin-top: 5px; display: flex; align-items: center; justify-content: center;">-->
<!-- <span style="width: 30%;">{{customTypeGroupArr[it.gIdx].mathLabel + ':'}}</span>-->
<!-- <app-formula-input [(ngfModel)]="it.mathLabel" ></app-formula-input>-->
<!-- </div>-->
<div *ngIf="customTypeGroupArr[it.gIdx]?.isCopy" align="center" style="margin-top: 5px; display: flex; align-items: center; justify-content: center;">
<button nz-button (click)="copyItem(it)" >
<i nz-icon nzType="copy" nzTheme="outline"></i>
复制粘贴
</button>
</div>
</div> </div>
<!-- <div *ngIf="!customTypeGroupArr">
<div *ngIf="it.itemType == 'pic'">
<app-upload-image-with-preview
[picUrl]="it?.pic_url"
(imageUploaded)="onItemImgUploadSuccess($event, it)">
</app-upload-image-with-preview>
</div>
<div *ngIf="it.itemType == 'text'">
<input type="text" nz-input [(ngModel)]="it.text" (blur)="saveText(it)">
</div>
<div *ngIf="isHasAudio"
style="width: 100%; margin-top: 5px; display: flex; align-items: center; justify-items: center;">
<app-audio-recorder
style="margin: auto"
[audioUrl]="it.audio_url"
(audioUploaded)="onItemAudioUploadSuccess($event, it)"
></app-audio-recorder>
</div>
<div *ngIf="it.itemType == 'rect' && isHasAnima" align="center" style="margin-bottom: 5px">
<button nz-button (click)="setAnimaBtnClick(i)" >
<i nz-icon nzType="tool" nzTheme="outline"></i>
配置龙骨动画
</button>
</div>
</div> -->
</div> </div>
</div> </div>
...@@ -83,12 +193,29 @@ ...@@ -83,12 +193,29 @@
<div class="save-box"> <div class="save-box">
<button class="save-btn" nz-button nzType="primary" [nzSize]="'large'" nzShape="round" <button style="margin-left: 200px" class="save-btn" nz-button nzType="primary" [nzSize]="'large'" nzShape="round"
(click)="saveClick()" > (click)="saveClick()" >
<i nz-icon nzType="save"></i> <i nz-icon nzType="save"></i>
Save Save
</button> </button>
<div *ngIf="isCopyData" style="height: 40px; display: flex; justify-items: center;" >
<label style="margin-left: 40px" nz-checkbox [(ngModel)]="bgItem.isShowDebugLine">显示辅助框</label>
<button style="margin-left: 20px; margin-top: -5px" nz-button (click)="copyHotZoneData()"> 复制基础数据 </button>
<div style="margin-left: 10px; margin-top: -5px" >
<span>粘贴数据: </span>
<input style="width: 100px;" type="text" nz-input [(ngModel)]="pasteData" >
<button style="margin-left: 5px;" nz-button [disabled]="pasteData==''" nzType="primary" (click)="importData()">导入</button>
</div>
</div>
</div> </div>
...@@ -98,3 +225,52 @@ ...@@ -98,3 +225,52 @@
<label style="opacity: 0; position: absolute; top: 0px; font-family: 'BRLNSR_1'">1</label> <label style="opacity: 0; position: absolute; top: 0px; font-family: 'BRLNSR_1'">1</label>
<!--龙骨面板-->
<nz-modal [(nzVisible)]="animaPanelVisible" nzTitle="配置资源文件" (nzAfterClose)="closeAfterPanel()" (nzOnCancel)="animaPanelCancel()" (nzOnOk)="animaPanelOk()" nzOkText="保存">
<div class="anima-upload-btn">
<span style="margin-right: 10px">上传 ske_json 文件: </span>
<nz-upload [nzShowUploadList]="false"
nzAccept="application/json"
[nzAction]="uploadUrl"
[nzData]="uploadData"
(nzChange)="skeJsonHandleChange($event)">
<button nz-button><i nz-icon nzType="upload"></i><span>Upload</span></button>
</nz-upload>
<i *ngIf="isSkeJsonLoading" style="margin-left: 10px;" nz-icon [nzType]="'loading'"></i>
<span *ngIf="skeJsonData['name']" style="margin-left: 10px"><u> {{skeJsonData['name']}} </u></span>
</div>
<div class="anima-upload-btn">
<span style="margin-right: 10px">上传 tex_json 文件: </span>
<nz-upload [nzShowUploadList]="false"
nzAccept="application/json"
[nzAction]="uploadUrl"
[nzData]="uploadData"
(nzChange)="texJsonHandleChange($event)">
<button nz-button><i nz-icon nzType="upload"></i><span>Upload</span></button>
</nz-upload>
<i *ngIf="isTexJsonLoading" style="margin-left: 10px;" nz-icon [nzType]="'loading'"></i>
<span *ngIf="texJsonData['name']" style="margin-left: 10px"><u> {{texJsonData['name']}} </u></span>
</div>
<div class="anima-upload-btn">
<span style="margin-right: 10px">上传 tex_png 文件: </span>
<nz-upload [nzShowUploadList]="false"
nzAccept = "image/*"
[nzAction]="uploadUrl"
[nzData]="uploadData"
(nzChange)="texPngHandleChange($event)">
<button nz-button><i nz-icon nzType="upload"></i><span>Upload</span></button>
</nz-upload>
<i *ngIf="isTexPngLoading" style="margin-left: 10px;" nz-icon [nzType]="'loading'"></i>
<span *ngIf="texPngData['name']" style="margin-left: 10px"><u> {{texPngData['name']}} </u></span>
</div>
<div class="anima-upload-btn" *ngIf="customTypeGroupArr && customTypeGroupArr[curDragonBoneGIdx] && customTypeGroupArr[curDragonBoneGIdx].animaNames">
提示:需包含以下动画: {{customTypeGroupArr[curDragonBoneGIdx].animaNames.toString()}}
</div>
</nz-modal>
...@@ -81,6 +81,10 @@ ...@@ -81,6 +81,10 @@
} }
} }
.anima-upload-btn {
padding: 10px;
}
h5 { h5 {
margin-top: 1rem; margin-top: 1rem;
} }
...@@ -89,8 +93,8 @@ h5 { ...@@ -89,8 +93,8 @@ h5 {
@font-face @font-face
{ {
font-family: 'BRLNSR_1'; font-family: 'ahronbd-1';
src: url("/assets/font/BRLNSR_1.TTF") ; src: url("/assets/font/ahronbd-1.ttf") ;
} }
...@@ -105,106 +109,3 @@ h5 { ...@@ -105,106 +109,3 @@ h5 {
//@import '../../../style/common_mixin';
//
//.p-image-uploader {
// position: relative;
// display: block;
// width: 100%;
// height: 0;
// padding-bottom: 56.25%;
// .p-box {
// position: absolute;
// left: 0;
// top: 0;
// right: 0;
// bottom: 0;
// border: 2px dashed #ddd;
// border-radius: 0.5rem;
// background-color: #fafafa;
// text-align: center;
// color: #aaa;
// .p-upload-icon {
// text-align: center;
// margin: auto;
// .anticon-upload {
// color: #888;
// font-size: 5rem;
// }
// .p-progress-bar {
// position: relative;
// width: 20rem;
// height: 1.5rem;
// border: 1px solid #ccc;
// border-radius: 1rem;
// .p-progress-bg {
// background-color: #1890ff;
// border-radius: 1rem;
// height: 100%;
// }
// .p-progress-value {
// position: absolute;
// top: 0;
// left: 0;
// width: 100%;
// height: 100%;
// text-shadow: 0 0 4px #000;
// color: white;
// text-align: center;
// font-size: 0.9rem;
// line-height: 1.5rem;
// }
// }
// }
// .p-preview {
// width: 100%;
// height: 100%;
// //background-image: url("https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png");
// @include k-img-bg();
// }
// }
//}
//
//.p-btn-delete {
// position: absolute;
// right: -0.5rem;
// top: -0.5rem;
// width: 2rem;
// height: 2rem;
// border: 0.2rem solid white;
// border-radius: 50%;
// font-size: 1.2rem;
// background-color: #fb781a;
// color: white;
// text-align: center;
//}
//
//.p-upload-progress-bg {
// position: absolute;
// width: 100%;
// height: 100%;
// display: flex;
// align-items: center;
// justify-content: center;
// & .i-text {
// position: absolute;
// text-align: center;
// color: white;
// text-shadow: 0 0 2px rgba(0, 0, 0, .85);
// }
// & .i-bg {
// position: absolute;
// left: 0;
// top: 0;
// height: 100%;
// background-color: #27b43f;
// border-radius: 0.5rem;
// }
//}
//
//
//:host ::ng-deep .ant-upload {
// display: block;
//}
import { import {
ApplicationRef,
ChangeDetectorRef,
Component, Component,
ElementRef, ElementRef,
EventEmitter, EventEmitter,
...@@ -12,10 +14,11 @@ import { ...@@ -12,10 +14,11 @@ import {
} from '@angular/core'; } from '@angular/core';
import {Subject} from 'rxjs'; import {Subject} from 'rxjs';
import {debounceTime} from 'rxjs/operators'; import {debounceTime} from 'rxjs/operators';
import {EditorItem, HotZoneImg, HotZoneItem, HotZoneLabel, Label, MySprite, removeItemFromArr} from './Unit'; import {DragItem, EditorItem, HotZoneImg, HotZoneItem, HotZoneLabel, Label, MySprite, removeItemFromArr, ShapeRect, ShapeRectNew} from './Unit';
import TWEEN from '@tweenjs/tween.js'; import TWEEN from '@tweenjs/tween.js';
import {getMinScale} from "../../play/Unit"; import {getMinScale} from '../../play/Unit';
import {tar} from "compressing"; import {tar} from 'compressing';
import {NzMessageService} from 'ng-zorro-antd';
@Component({ @Component({
...@@ -25,18 +28,14 @@ import {tar} from "compressing"; ...@@ -25,18 +28,14 @@ import {tar} from "compressing";
}) })
export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
@ViewChild('canvas', {static: true}) canvas: ElementRef;
@ViewChild('wrap', {static: true}) wrap: ElementRef;
@Input()
imgItemArr = null;
@Input() @Input()
hotZoneItemArr = null; hotZoneItemArr = null;
@Input() @Input()
hotZoneArr = null; hotZoneArr = null;
@Output()
save = new EventEmitter();
@ViewChild('canvas', {static: true}) canvas: ElementRef;
@ViewChild('wrap', {static: true}) wrap: ElementRef;
@Input() @Input()
isHasRect = true; isHasRect = true;
@Input() @Input()
...@@ -44,16 +43,31 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -44,16 +43,31 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
@Input() @Input()
isHasText = true; isHasText = true;
@Input() @Input()
hotZoneFontObj = { isHasAudio = true;
size: 50, @Input()
name: 'BRLNSR_1', isHasAnima = false;
color: '#8f3758' @Input()
} customTypeGroupArr; // [{name:string, rect:boolean, pic:boolean, text:boolean, audio:boolean, anima:boolean, animaNames:['name1', ..]}, ...]
@Input()
// hotZoneFontObj;
@Input()
isCopyData = false;
hotZoneFontObj;
// hotZoneFontObj = {
// size: 50,
// name: 'ahronbd-1',
// color: '#8f3758'
// }
@Input() @Input()
defaultItemType = 'text'; defaultItemType = 'text';
@Input() @Input()
hotZoneImgSize = 190; hotZoneImgSize = 0;
@Output()
save = new EventEmitter();
saveDisabled = true; saveDisabled = true;
...@@ -86,8 +100,43 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -86,8 +100,43 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
changeSizeFlag = false; changeSizeFlag = false;
changeTopSizeFlag = false; changeTopSizeFlag = false;
changeRightSizeFlag = false; changeRightSizeFlag = false;
animaPanelVisible = false;
constructor() {
uploadUrl;
uploadData;
skeJsonData = {};
texJsonData = {};
texPngData = {};
animaName = '';
curDragonBoneIndex;
curDragonBoneGIdx;
pasteData = '';
isSkeJsonLoading = false;
isTexJsonLoading = false;
isTexPngLoading = false;
isAnimaSmall = false;
savePropertyArr = [
'id',
'gIdx',
'selectType',
'labelText',
'posX',
'posY',
'mathLabel',
]
constructor(private nzMessageService: NzMessageService, private appRef: ApplicationRef, private changeDetectorRef: ChangeDetectorRef) {
this.uploadUrl = (<any> window).courseware.uploadUrl();
this.uploadData = (<any> window).courseware.uploadData();
window['air'].getUploadCallback = (url, data) => {
this.uploadUrl = url;
this.uploadData = data;
};
} }
_bgItem = null; _bgItem = null;
...@@ -110,11 +159,14 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -110,11 +159,14 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
ngOnInit() { ngOnInit() {
this.initListener(); this.initListener();
// this.init(); // this.init();
this.update(); this.update();
this.refresh();
} }
ngOnDestroy() { ngOnDestroy() {
...@@ -136,10 +188,12 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -136,10 +188,12 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
onItemImgUploadSuccess(e, item) { onItemImgUploadSuccess(e, item) {
item.pic_url = e.url; item.pic_url = e.url;
this.loadHotZonePic(item.pic, e.url); this.loadHotZonePic(item.pic, e.url);
this.refresh();
} }
onItemAudioUploadSuccess(e, item) { onItemAudioUploadSuccess(e, item) {
item.audio_url = e.url; item.audio_url = e.url;
this.refresh();
} }
...@@ -150,37 +204,61 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -150,37 +204,61 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
this.renderArr.push(this.bg); this.renderArr.push(this.bg);
} }
if (!this.bgItem.url) {
this.bgItem.url = 'http://teach.cdn.ireadabc.com/8ebb1858564340ea0936b83e3280ad7d.jpg';
}
const bg = this.bg; const bg = this.bg;
if (this.bgItem.url) { // if (this.bgItem.url) {
bg.load(this.bgItem.url).then(() => { bg.load(this.bgItem.url).then(() => {
const rate1 = this.canvasWidth / bg.width; const rate1 = this.canvasWidth / bg.width;
const rate2 = this.canvasHeight / bg.height; const rate2 = this.canvasHeight / bg.height;
const rate = Math.min(rate1, rate2); const rate = Math.min(rate1, rate2);
bg.setScaleXY(rate); bg.setScaleXY(rate);
bg.x = this.canvasWidth / 2;
bg.y = this.canvasHeight / 2;
bg.removeChildren();
bg.x = this.canvasWidth / 2; const bgBorder = new ShapeRectNew(this.ctx);
bg.y = this.canvasHeight / 2; bgBorder.setSize(bg.width, bg.height, 0);
bgBorder.fillColor = '#ff0000';
bgBorder.fill = false;
bgBorder.stroke = true;
bgBorder.x = -bg.width / 2;
bgBorder.y = -bg.height / 2;
bgBorder.lineWidth = 0.5;
bg.addChild(bgBorder);
if (callBack) {
callBack(); if (callBack) {
} callBack();
}); }
}
this.refresh();
});
// }
} }
addBtnClick() { addBtnClick(data=null) {
// this.imgArr.push({}); // this.imgArr.push({});
// this.hotZoneArr.push({}); // this.hotZoneArr.push({});
const item = this.getHotZoneItem(); const item = this.getHotZoneItem(data);
this.hotZoneArr.push(item); this.hotZoneArr.push(item);
this.refreshItem(item);
if (this.customTypeGroupArr) {
this.refreshCustomItem(item);
} else {
this.refreshItem(item);
}
this.refreshHotZoneId(); this.refreshHotZoneId();
...@@ -191,6 +269,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -191,6 +269,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
const item = this.hotZoneArr.splice(index, 1)[0]; const item = this.hotZoneArr.splice(index, 1)[0];
removeItemFromArr(this.renderArr, item.pic); removeItemFromArr(this.renderArr, item.pic);
removeItemFromArr(this.renderArr, item.textLabel); removeItemFromArr(this.renderArr, item.textLabel);
removeItemFromArr(this.renderArr, item.drag);
this.refreshHotZoneId(); this.refreshHotZoneId();
...@@ -199,6 +278,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -199,6 +278,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
onImgUploadSuccessByImg(e, img) { onImgUploadSuccessByImg(e, img) {
img.pic_url = e.url; img.pic_url = e.url;
this.refreshImage(img); this.refreshImage(img);
this.refresh();
} }
refreshImage(img) { refreshImage(img) {
...@@ -221,6 +301,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -221,6 +301,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
} }
} }
this.refresh();
} }
...@@ -245,10 +326,18 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -245,10 +326,18 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
item.anchorX = 0.5; item.anchorX = 0.5;
item.anchorY = 0.5; item.anchorY = 0.5;
item.x = this.canvasWidth / 2; item.x = this.canvasWidth / 2;
item.y = this.canvasHeight / 2; item.y = this.canvasHeight / 2;
item.itemType = this.defaultItemType; item.itemType = this.getDefaultItemType();
item.gIdx = '0';
item['id'] = this.createItemId() // new Date().getTime().toString();
item['data'] = saveData;
console.log('item.x: ', item.x);
if (saveData) { if (saveData) {
...@@ -257,41 +346,203 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -257,41 +346,203 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
item.scaleY = saveRect.height / item.height; item.scaleY = saveRect.height / item.height;
item.x = saveRect.x + saveRect.width / 2; item.x = saveRect.x + saveRect.width / 2;
item.y = saveRect.y + saveRect.height / 2; item.y = saveRect.y + saveRect.height / 2;
item.gIdx = saveData.gIdx;
item['id'] = saveData.id;
item['skeJsonData'] = saveData.skeJsonData;
item['texJsonData'] = saveData.texJsonData;
item['texPngData'] = saveData.texPngData;
item['actionData_' + item.gIdx] = saveData['actionData_' + item.gIdx];
this.savePropertyArr.forEach((key) => {
if (saveData[key]) {
item[key] = saveData[key];
}
})
} }
console.log('item.x:~~ ', item.x);
item.showLineDash(); item.showLineDash();
const pic = new HotZoneImg(this.ctx); // const pic = new HotZoneImg(this.ctx);
this.setItemPic(item, saveData);
this.setItemLabel(item, saveData);
this.setItemAnima(item, saveData);
this.setItemDrag(item, saveData);
return item;
}
setItemPic(item, saveData) {
console.log('in setItemPic ', saveData);
const pic = new EditorItem(this.ctx);
pic.visible = false; pic.visible = false;
item['pic'] = pic; item['pic'] = pic;
if (saveData && saveData.pic_url) { if (saveData) {
this.loadHotZonePic(pic, saveData.pic_url);
let picUrl = saveData.pic_url;
const actionData = saveData['actionData_' + item.gIdx];
if (actionData && actionData.type == 'pic') {
picUrl = actionData.pic_url;
}
console.log('saveData: ', saveData);
console.log('picUrl: ', picUrl);
if (picUrl) {
this.loadHotZonePic(pic, picUrl, saveData.imgScale);
}
} }
pic.x = item.x; pic.x = item.x;
pic.y = item.y; pic.y = item.y;
this.renderArr.push(pic); this.renderArr.push(pic);
}
setItemDrag(item, saveData) {
console.log('in setItemDrag ', saveData);
const dragItem = new DragItem(this.ctx);
dragItem.init();
dragItem.item = item;
item['drag'] = dragItem;
dragItem.visible = false;
dragItem.x = item.x;
dragItem.y = item.y;
this.renderArr.push(dragItem);
if (saveData) {
if (saveData.dragDot) {
dragItem.x = saveData.dragDot.x / saveData.mapScale * this.mapScale;
dragItem.y = saveData.dragDot.y / saveData.mapScale * this.mapScale;
}
}
// console.log('item.itemType: ', item.itemType);
// let w = item.width;
// let h = item.height;
// if (saveData) {
// switch (saveData.itemType) {
// case 'rect':
// w = saveData.rect.width;
// h = saveData.rect.height;
// break;
// case 'pic':
// w = saveData.imgSizeW * saveData.imgScale;
// h = saveData.imgSizeH * saveData.imgScale;;
// break;
// case 'text':
// w = saveData.rect.width;
// h = saveData.rect.height;
// break;
// }
// }
// dragItem.setSize(w, h);
}
setItemAnima(item, saveData) {
console.log('in setItemAnima ', saveData);
// const pic = new EditorItem(this.ctx);
// pic.visible = false;
// item['pic'] = pic;
// if (saveData) {
// let picUrl = saveData.pic_url;
// const actionData = saveData['actionData_' + item.gIdx];
// if (actionData && actionData.type == 'pic') {
// picUrl = actionData.pic_url;
// }
// console.log('saveData: ', saveData);
// console.log('picUrl: ', picUrl);
// if (picUrl) {
// this.loadHotZonePic(pic, picUrl, saveData.imgScale);
// }
// }
// pic.x = item.x;
// pic.y = item.y;
// this.renderArr.push(pic);
}
setItemLabel(item, saveData) {
const textLabel = new HotZoneLabel(this.ctx); const textLabel = new HotZoneLabel(this.ctx);
textLabel.fontSize = this.hotZoneFontObj.size; if (this.hotZoneFontObj) {
textLabel.fontName = this.hotZoneFontObj.name; textLabel.fontSize = this.hotZoneFontObj.size;
textLabel.fontColor = this.hotZoneFontObj.color; textLabel.fontName = this.hotZoneFontObj.name;
textLabel.fontColor = this.hotZoneFontObj.color;
}
textLabel.textAlign = 'center'; textLabel.textAlign = 'center';
// textLabel.setOutline(); // textLabel.setOutline();
// console.log('saveData:', saveData);
item['textLabel'] = textLabel; item['textLabel'] = textLabel;
textLabel.setScaleXY(this.mapScale); textLabel.setScaleXY(this.mapScale);
if (saveData && saveData.text) { if (saveData) {
textLabel.text = saveData.text;
if (saveData.text && this.hotZoneFontObj) {
textLabel.text = saveData.text
}
this.setActionFont(textLabel, saveData['actionData_' + item.gIdx]);
textLabel.refreshSize(); textLabel.refreshSize();
} }
textLabel.x = item.x; textLabel.x = item.x;
textLabel.y = item.y; textLabel.y = item.y;
this.renderArr.push(textLabel); this.renderArr.push(textLabel);
}
return item; setActionFont(textLabel, actionData) {
if (actionData && actionData.type == 'text') {
textLabel.text = actionData.text;
for (let i=0; i<actionData.changeOption.length; i++) {
const op = actionData.changeOption[i];
textLabel[op[0]] = op[1];
}
}
} }
getDefaultItemType() {
if (this.customTypeGroupArr) {
const group = this.customTypeGroupArr[0];
if (group.rect) {
return 'rect';
}
if (group.pic) {
return 'pic';
}
if (group.text) {
return 'text';
}
} else {
return this.defaultItemType;
}
}
getPicItem(img, saveData = null) { getPicItem(img, saveData = null) {
...@@ -327,9 +578,11 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -327,9 +578,11 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
item.y = saveRect.y + saveRect.height / 2; item.y = saveRect.y + saveRect.height / 2;
} else { } else {
item.showLineDash(); // item.showLineDash();
} }
item.showLineDash();
console.log('aaa');
}); });
return item; return item;
} }
...@@ -337,6 +590,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -337,6 +590,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
onAudioUploadSuccessByImg(e, img) { onAudioUploadSuccessByImg(e, img) {
img.audio_url = e.url; img.audio_url = e.url;
this.refresh();
} }
deleteItem(e, i) { deleteItem(e, i) {
...@@ -345,15 +599,111 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -345,15 +599,111 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
this.hotZoneArr.splice(i, 1); this.hotZoneArr.splice(i, 1);
this.refreshHotZoneId(); this.refreshHotZoneId();
this.refresh();
} }
// radioChange(e, item) {
// item.itemType = e;
radioChange(e, item) { // this.refreshItem(item);
item.itemType = e; // this.refresh();
// // console.log(' in radioChange e: ', e);
// }
this.refreshItem(item); customRadioChange(e, item) {
console.log('in customRadioChange', e);
item.gIdx = -1;
setTimeout(() => {
item.gIdx = e;
this.refreshCustomItem(item);
this.refresh();
}, 1);
// const curGroup = this.customTypeGroupArr[e];
// console.log(' in radioChange e: ', e); }
refreshCustomItem(item) {
this.hideHotZoneItem(item);
const group = this.customTypeGroupArr[item.gIdx];
if (!group) {
return;
}
if (group.text) {
this.showItemLabel(item);
}
if (group.rect) {
this.showItemRect(item, !group.isFixed);
}
if (group.pic && !group.anima) {
this.showItemPic(item);
}
if (group.action) {
if (group.action.type == 'pic') {
this.showItemPic(item);
}
if (group.action.type == 'text') {
this.showItemLabel(item);
}
if (group.action.type == 'anima') {
this.showItemRect(item);
}
}
item.drag.visible = group.drag;
item.setAnimaStyle(group.animaSmall)
}
showItemDrag(item) {
item.drag.visible = true;
// item.dragBody.visible = true;
// item.itemType = 'pic';
// this.showArrowTop(item)
}
showItemPic(item) {
item.pic.visible = true;
item.itemType = 'pic';
this.showArrowTop(item)
}
showItemLabel(item) {
item.textLabel.visible = true;
item.itemType = 'text';
this.showArrowTop(item)
}
showItemRect(item, isShowArrowTop = true) {
item.visible = true;
item.itemType = 'rect';
this.showArrowTop(item, isShowArrowTop)
}
showArrowTop(item, isShowArrowTop = false) {
if (isShowArrowTop) {
item.arrowTop.visible = true;
item.arrowRight.visible = true;
} else {
item.arrowTop.visible = false;
item.arrowRight.visible = false;
}
}
hideHotZoneItem(item) {
item.visible = false;
item.pic.visible = false;
item.textLabel.visible = false;
} }
refreshItem(item) { refreshItem(item) {
...@@ -368,33 +718,30 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -368,33 +718,30 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
this.setTextState(item); this.setTextState(item);
break; break;
default: default:
this.setNoneState(item);
} }
} }
init() { init() {
console.log('init');
this.initData(); this.initData();
this.initCtx(); this.initCtx();
this.initItem(); this.initItem();
} }
initItem() { initItem() {
this.changeDetectorRef.markForCheck();
this.changeDetectorRef.detectChanges();
if (!this.bgItem) { if (!this.bgItem) {
this.bgItem = {}; this.bgItem = {};
} else { } else {
this.refreshBackground(() => { this.refreshBackground(() => {
// if (!this.imgItemArr) {
// this.imgItemArr = [];
// } else {
// this.initImgArr();
// }
// console.log('aaaaa');
if (!this.hotZoneItemArr) { if (!this.hotZoneItemArr) {
this.hotZoneItemArr = []; this.hotZoneItemArr = [];
} else { } else {
...@@ -404,6 +751,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -404,6 +751,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
}); });
} }
this.refresh();
} }
initHotZoneArr() { initHotZoneArr() {
...@@ -427,6 +775,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -427,6 +775,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
this.hotZoneArr = []; this.hotZoneArr = [];
const arr = this.hotZoneItemArr.concat(); const arr = this.hotZoneItemArr.concat();
console.log('this.hotZoneItemArr: ', this.hotZoneItemArr);
for (let i = 0; i < arr.length; i++) { for (let i = 0; i < arr.length; i++) {
const data = JSON.parse(JSON.stringify(arr[i])); const data = JSON.parse(JSON.stringify(arr[i]));
...@@ -449,9 +798,15 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -449,9 +798,15 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
item.pic_url = data.pic_url; item.pic_url = data.pic_url;
item.text = data.text; item.text = data.text;
item.itemType = data.itemType; item.itemType = data.itemType;
this.refreshItem(item);
console.log('item: ', item); if (this.customTypeGroupArr) {
this.refreshCustomItem(item);
} else {
this.refreshItem(item);
}
console.log('1 item: ', item);
this.hotZoneArr.push(item); this.hotZoneArr.push(item);
} }
...@@ -463,48 +818,6 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -463,48 +818,6 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
} }
initImgArr() {
console.log('this.imgItemArr: ', this.imgItemArr);
let curBgRect;
if (this.bg) {
curBgRect = this.bg.getBoundingBox();
} else {
curBgRect = {x: 0, y: 0, width: this.canvasWidth, height: this.canvasHeight};
}
let oldBgRect = this.bgItem.rect;
if (!oldBgRect) {
oldBgRect = curBgRect;
}
const rate = curBgRect.width / oldBgRect.width;
console.log('rate: ', rate);
this.imgArr = [];
const arr = this.imgItemArr.concat();
for (let i = 0; i < arr.length; i++) {
const data = JSON.parse(JSON.stringify(arr[i]));
const img = {pic_url: data.pic_url};
data.rect.x *= rate;
data.rect.y *= rate;
data.rect.width *= rate;
data.rect.height *= rate;
data.rect.x += curBgRect.x;
data.rect.y += curBgRect.y;
img['picItem'] = this.getPicItem(img, data);
img['audio_url'] = arr[i].audio_url;
this.imgArr.push(img);
}
this.refreshImageId();
}
initData() { initData() {
this.canvasWidth = this.wrap.nativeElement.clientWidth; this.canvasWidth = this.wrap.nativeElement.clientWidth;
...@@ -528,9 +841,28 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -528,9 +841,28 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
this.oldPos = {x: this.mx, y: this.my}; this.oldPos = {x: this.mx, y: this.my};
for (let i = 0; i < this.hotZoneArr.length; i++) {
// 先检测拖拽点
for (let i = this.hotZoneArr.length - 1; i >= 0; i--) {
const item = this.hotZoneArr[i];
if (item && item.drag && item.drag.visible) {
if (this.checkClickTarget(item.drag)) {
this.clickedDragPoint(item.drag);
return;
}
}
}
for (let i = this.hotZoneArr.length - 1; i >= 0; i--) {
const item = this.hotZoneArr[i]; const item = this.hotZoneArr[i];
console.log('mapDown item: ', item);
let callback; let callback;
let target; let target;
switch (item.itemType) { switch (item.itemType) {
...@@ -548,7 +880,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -548,7 +880,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
break; break;
} }
if (this.checkClickTarget(target)) { if (target && this.checkClickTarget(target)) {
callback(target); callback(target);
return; return;
} }
...@@ -578,15 +910,18 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -578,15 +910,18 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
const addY = this.my - this.oldPos.y; const addY = this.my - this.oldPos.y;
this.curItem.x += addX; this.curItem.x += addX;
this.curItem.y += addY; this.curItem.y += addY;
this.curItem.posX = this.curItem.x;
this.curItem.posY = this.curItem.y;
} }
this.oldPos = {x: this.mx, y: this.my}; this.oldPos = {x: this.mx, y: this.my};
this.saveDisabled = true; // this.saveDisabled = false;
} }
mapUp(event) { mapUp(event=null) {
this.curItem = null; this.curItem = null;
this.changeSizeFlag = false; this.changeSizeFlag = false;
this.changeTopSizeFlag = false; this.changeTopSizeFlag = false;
...@@ -685,10 +1020,13 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -685,10 +1020,13 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
changeCurItem(item) { changeCurItem(item) {
console.log(' in changeCurItem', item)
this.hideAllLineDash(); this.hideAllLineDash();
this.curItem = item; this.curItem = item;
this.curItem.showLineDash(); this.curItem.showLineDash();
} }
hideAllLineDash() { hideAllLineDash() {
...@@ -711,9 +1049,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -711,9 +1049,7 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
// 清除画布内容 // 清除画布内容
this.ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight); this.ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight);
for (let i = 0; i < this.renderArr.length; i++) {
this.renderArr[i].update(this);
}
// for (let i = 0; i < this.imgArr.length; i++) { // for (let i = 0; i < this.imgArr.length; i++) {
// const picItem = this.imgArr[i].picItem; // const picItem = this.imgArr[i].picItem;
...@@ -722,8 +1058,16 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -722,8 +1058,16 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
// } // }
// } // }
for (let i = 0; i < this.renderArr.length; i++) {
this.renderArr[i].update(this);
}
this.updateArr(this.hotZoneArr); this.updateArr(this.hotZoneArr);
this.updatePos()
this.updatePos();
TWEEN.update(); TWEEN.update();
...@@ -833,7 +1177,9 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -833,7 +1177,9 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
checkClickTarget(target) { checkClickTarget(target) {
if (!target || !target.visible) {
return;
}
const rect = target.getBoundingBox(); const rect = target.getBoundingBox();
if (this.checkPointInRect(this.mx, this.my, rect)) { if (this.checkPointInRect(this.mx, this.my, rect)) {
return true; return true;
...@@ -852,9 +1198,21 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -852,9 +1198,21 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
saveClick() { saveClick() {
const sendData = this.getSendData();
this.save.emit(sendData);
}
getSendData() {
const bgItem = this.bgItem; const bgItem = this.bgItem;
if (this.bg) { if (this.bg) {
bgItem['rect'] = this.bg.getBoundingBox(); const rect = this.bg.getBoundingBox();
bgItem['rect'] = rect;
rect.x = Math.round(rect.x * 100) / 100;
rect.y = Math.round(rect.y * 100) / 100;
rect.width = Math.round(rect.width * 100) / 100;
rect.height = Math.round(rect.height * 100) / 100;
} else { } else {
bgItem['rect'] = { bgItem['rect'] = {
x: 0, x: 0,
...@@ -870,19 +1228,52 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -870,19 +1228,52 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
for (let i = 0; i < hotZoneArr.length; i++) { for (let i = 0; i < hotZoneArr.length; i++) {
const hotZoneItem = { const hotZoneItem = {
id: hotZoneArr[i].id,
index: hotZoneArr[i].index, index: hotZoneArr[i].index,
pic_url: hotZoneArr[i].pic_url, pic_url: hotZoneArr[i].pic_url,
text: hotZoneArr[i].text, text: hotZoneArr[i].text,
audio_url: hotZoneArr[i].audio_url, audio_url: hotZoneArr[i].audio_url,
itemType: hotZoneArr[i].itemType, itemType: hotZoneArr[i].itemType,
fontSize: this.hotZoneFontObj.size,
fontName: this.hotZoneFontObj.name,
fontColor: this.hotZoneFontObj.color,
fontScale: hotZoneArr[i].textLabel ? hotZoneArr[i].textLabel.scaleX : 1, fontScale: hotZoneArr[i].textLabel ? hotZoneArr[i].textLabel.scaleX : 1,
imgScale: hotZoneArr[i].pic ? hotZoneArr[i].pic.scaleX : 1, imgScale: hotZoneArr[i].pic ? hotZoneArr[i].pic.scaleX : 1,
mapScale: this.mapScale imgSizeW: hotZoneArr[i].pic ? hotZoneArr[i].pic.width : 0,
imgSizeH: hotZoneArr[i].pic ? hotZoneArr[i].pic.height : 0,
mapScale: this.mapScale,
skeJsonData: hotZoneArr[i].skeJsonData,
texJsonData: hotZoneArr[i].texJsonData,
texPngData: hotZoneArr[i].texPngData,
dragDot: hotZoneArr[i].drag.getPosition(),
gIdx: hotZoneArr[i].gIdx,
}; };
hotZoneItem['rect'] = hotZoneArr[i].getBoundingBox();
this.savePropertyArr.forEach((key) => {
if (hotZoneArr[i][key]) {
hotZoneItem[key] = hotZoneArr[i][key];
}
})
hotZoneItem['actionData_' + hotZoneItem.gIdx] = hotZoneArr[i]['actionData_' + hotZoneArr[i].gIdx]
if (this.hotZoneFontObj) {
hotZoneItem['fontSize'] = this.hotZoneFontObj.size;
hotZoneItem['fontName'] = this.hotZoneFontObj.name;
hotZoneItem['ontColor'] = this.hotZoneFontObj.color;
}
if (hotZoneArr[i].itemType == 'pic') {
hotZoneItem['rect'] = hotZoneArr[i].pic.getBoundingBox();
} else if (hotZoneArr[i].itemType == 'text') {
hotZoneArr[i].textLabel.refreshSize();
hotZoneItem['rect'] = hotZoneArr[i].textLabel.getLabelRect();
// hotZoneItem['rect'].width = hotZoneItem['rect'].width / hotZoneArr[i].textLabel.scaleX;
// hotZoneItem['rect'].height = hotZoneArr[i].textLabel.height * hotZoneArr[i].textLabel.scaleY;
} else {
hotZoneItem['rect'] = hotZoneArr[i].getBoundingBox();
}
// hotZoneItem['rect'] = hotZoneArr[i].getBoundingBox();
hotZoneItem['rect'].x = Math.round((hotZoneItem['rect'].x - bgItem['rect'].x) * 100) / 100; hotZoneItem['rect'].x = Math.round((hotZoneItem['rect'].x - bgItem['rect'].x) * 100) / 100;
hotZoneItem['rect'].y = Math.round((hotZoneItem['rect'].y - bgItem['rect'].y) * 100) / 100; hotZoneItem['rect'].y = Math.round((hotZoneItem['rect'].y - bgItem['rect'].y) * 100) / 100;
hotZoneItem['rect'].width = Math.round((hotZoneItem['rect'].width) * 100) / 100; hotZoneItem['rect'].width = Math.round((hotZoneItem['rect'].width) * 100) / 100;
...@@ -894,7 +1285,360 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -894,7 +1285,360 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
console.log('hotZoneItemArr: ', hotZoneItemArr); console.log('hotZoneItemArr: ', hotZoneItemArr);
this.save.emit({bgItem, hotZoneItemArr}); return {bgItem, hotZoneItemArr};
}
saveText(item) {
if (item.itemType == 'text') {
item.textLabel.text = item.text;
}
}
saveItemPos(item) {
console.log('item.posX: ', item.posX)
console.log('item.posY: ', item.posY)
item.x = Number(item.posX || 0)
item.y = Number(item.posY || 0)
// this.changeCurItem(item);
// this.curItem.x = item.posX || 0;
// this.curItem.y = item.posY || 0;
// this.mapUp();
}
onSaveCustomAction(e, item) {
const data = e;
item['actionData_' + item.gIdx] = data;
if (data.type == 'pic') {
let picUrl = data.pic_url;
if (picUrl) {
this.loadHotZonePic(item.pic, picUrl);
}
}
if (data.type == 'text') {
this.setActionFont(item.textLabel, data);
item.textLabel.refreshSize();
}
// if (data.type == 'anima') {
// this.setActionAnima(item.anima, data);
// }
// this.loadHotZonePic(item.pic, e.url);
this.refresh()
}
setActionAnima() {
}
setAnimaBtnClick(index) {
console.log('aaaa')
this.isAnimaSmall = false;
this.setCurDragonBone(index);
// this.curDragonBoneIndex = index;
// this.curDragonBoneGIdx = Number(this.hotZoneArr[index].gIdx);
// const {skeJsonData, texJsonData, texPngData} = this.hotZoneArr[index];
// this.skeJsonData = skeJsonData || {};
// this.texJsonData = texJsonData || {};
// this.texPngData = texPngData || {};
// this.animaPanelVisible = true;
// this.refresh();
}
setAnimaSmallBtnClick(index) {
console.log('bbb')
this.isAnimaSmall = true;
this.setCurDragonBone(index);
}
setCurDragonBone(index) {
this.curDragonBoneIndex = index;
this.curDragonBoneGIdx = Number(this.hotZoneArr[index].gIdx);
const {skeJsonData, texJsonData, texPngData} = this.hotZoneArr[index];
this.skeJsonData = skeJsonData || {};
this.texJsonData = texJsonData || {};
this.texPngData = texPngData || {};
this.animaPanelVisible = true;
this.refresh();
}
setItemSizeByAnima(jsonData, item) {
console.log('json: ', jsonData);
const request = new XMLHttpRequest();
//通过url获取文件,第二个选项是文件所在的具体地址
request.open('GET', jsonData.url, true);
request.send(null);
request.onreadystatechange = ()=> {
if (request.readyState === 4 && request.status === 200) {
var type = request.getResponseHeader('Content-Type');
if (type.indexOf("text") !== 1) {
//返回一个文件内容的对象
const data = JSON.parse(request.responseText);
console.log('request.responseText;', data)
const animaSize = data.armature[0].canvas;
item.width = animaSize.width;
item.height = animaSize.height;
// return request.responseText;
}
}
}
}
animaPanelCancel() {
this.animaPanelVisible = false;
this.refresh();
}
animaPanelOk() {
this.setItemDragonBoneData(this.hotZoneArr[this.curDragonBoneIndex]);
console.log('this.hotZoneArr: ', this.hotZoneArr);
this.animaPanelVisible = false;
if (this.isAnimaSmall) {
this.setItemSizeByAnima(this.skeJsonData, this.hotZoneArr[this.curDragonBoneIndex]);
}
this.refresh();
}
setItemDragonBoneData(item) {
item['skeJsonData'] = this.skeJsonData;
item['texJsonData'] = this.texJsonData;
item['texPngData'] = this.texPngData;
}
skeJsonHandleChange(e) {
console.log('e: ', e);
switch (e.type) {
case 'start':
this.isSkeJsonLoading = true;
break;
case 'success':
this.skeJsonData['url'] = e.file.response.url;
this.skeJsonData['name'] = e.file.name;
this.nzMessageService.success('上传成功');
this.isSkeJsonLoading = false;
break;
case 'progress':
break;
}
}
texJsonHandleChange(e) {
console.log('e: ', e);
switch (e.type) {
case 'start':
this.isTexJsonLoading = true;
break;
case 'success':
this.texJsonData['url'] = e.file.response.url;
this.texJsonData['name'] = e.file.name;
this.nzMessageService.success('上传成功');
this.isTexJsonLoading = false;
break;
case 'progress':
break;
}
}
texPngHandleChange(e) {
console.log('e: ', e);
switch (e.type) {
case 'start':
this.isTexPngLoading = true;
break;
case 'success':
this.texPngData['url'] = e.file.response.url;
this.texPngData['name'] = e.file.name;
this.nzMessageService.success('上传成功');
this.isTexPngLoading = false;
break;
case 'progress':
break;
}
}
copyItem(it) {
const {hotZoneItemArr} = this.getSendData();
let itemData;
hotZoneItemArr.forEach((data) => {
if (data.id == it.id) {
itemData = data;
}
})
let curBgRect;
if (this.bg) {
curBgRect = this.bg.getBoundingBox();
} else {
curBgRect = {x: 0, y: 0, width: this.canvasWidth, height: this.canvasHeight};
}
let oldBgRect = this.bgItem.rect;
if (!oldBgRect) {
oldBgRect = curBgRect;
}
const rate = curBgRect.width / oldBgRect.width;
console.log('rate: ', rate);
const data = itemData
data.rect.x *= rate;
data.rect.y *= rate;
data.rect.width *= rate;
data.rect.height *= rate;
data.rect.x += curBgRect.x;
data.rect.y += curBgRect.y;
const item = this.getHotZoneItem(data);
item.audio_url = data.audio_url;
item.pic_url = data.pic_url;
item.text = data.text;
item.itemType = data.itemType;
this.hotZoneArr.push(item);
if (this.customTypeGroupArr) {
this.refreshCustomItem(item);
} else {
this.refreshItem(item);
}
this.refreshHotZoneId();
item['id'] = this.createItemId();
}
createItemId() {
return new Date().getTime().toString();
}
copyHotZoneData() {
const {bgItem, hotZoneItemArr} = this.getSendData();
// const hotZoneItemArrNew = [];
// const tmpArr = JSON.parse(JSON.stringify(hotZoneItemArr));
// tmpArr.forEach((item) => {
// if (item.gIdx === '0') {
// hotZoneItemArr.push(item);
// }
// })
const jsonData = {
bgItem,
hotZoneItemArr,
isHasRect: this.isHasRect,
isHasPic: this.isHasPic,
isHasText: this.isHasText,
isHasAudio: this.isHasAudio,
isHasAnima: this.isHasAnima,
hotZoneFontObj: this.hotZoneFontObj,
defaultItemType: this.defaultItemType,
hotZoneImgSize: this.hotZoneImgSize,
};
const oInput = document.createElement('input');
oInput.value = JSON.stringify(jsonData);
document.body.appendChild(oInput);
oInput.select(); // 选择对象
document.execCommand('Copy'); // 执行浏览器复制命令
document.body.removeChild(oInput);
this.nzMessageService.success('复制成功');
// alert('复制成功');
}
importData() {
if (!this.pasteData) {
return;
}
try {
const data = JSON.parse(this.pasteData);
console.log('data:', data);
const {
bgItem,
hotZoneItemArr,
isHasRect,
isHasPic,
isHasText,
isHasAudio,
isHasAnima,
hotZoneFontObj,
defaultItemType,
hotZoneImgSize,
} = data;
this.hotZoneItemArr = hotZoneItemArr;
this.isHasRect = isHasRect;
this.isHasPic = isHasPic;
this.isHasText = isHasText;
this.isHasAudio = isHasAudio;
this.isHasAnima = isHasAnima;
this.hotZoneFontObj = hotZoneFontObj;
this.defaultItemType = defaultItemType;
this.hotZoneImgSize = hotZoneImgSize;
this.bgItem = bgItem;
this.pasteData = '';
} catch (e) {
console.log('err: ', e);
this.nzMessageService.error('导入失败');
}
} }
private updatePos() { private updatePos() {
...@@ -917,12 +1661,15 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -917,12 +1661,15 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
break; break;
} }
item.x = x; if (x != undefined && y != undefined) {
item.y = y; item.x = x;
item.pic.x = x; item.y = y;
item.pic.y = y; item.pic.x = x;
item.textLabel.x = x; item.pic.y = y;
item.textLabel.y = y; item.textLabel.x = x;
item.textLabel.y = y;
}
}); });
} }
...@@ -944,6 +1691,12 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -944,6 +1691,12 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
item.textLabel.visible = true; item.textLabel.visible = true;
} }
private setNoneState(item: any) {
item.visible = false;
item.pic.visible = false;
item.textLabel.visible = false;
}
private clickedHotZoneRect(item: any) { private clickedHotZoneRect(item: any) {
if (this.checkClickTarget(item)) { if (this.checkClickTarget(item)) {
...@@ -962,6 +1715,17 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -962,6 +1715,17 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
private clickedHotZonePic(item: any) { private clickedHotZonePic(item: any) {
if (this.checkClickTarget(item)) { if (this.checkClickTarget(item)) {
if (item.lineDashFlag && this.checkClickTarget(item.arrow)) {
this.changeItemSize(item);
// } else if (item.lineDashFlag && this.checkClickTarget(item.arrowTop)) {
// this.changeItemTopSize(item);
// } else if (item.lineDashFlag && this.checkClickTarget(item.arrowRight)) {
// this.changeItemRightSize(item);
} else {
this.changeCurItem(item);
}
this.curItem = item; this.curItem = item;
} }
} }
...@@ -972,15 +1736,42 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges { ...@@ -972,15 +1736,42 @@ export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {
} }
} }
saveText(item) { clickedDragPoint(item) {
item.textLabel.text = item.text; this.curItem = item;
} }
private loadHotZonePic(pic: HotZoneImg, url) { private loadHotZonePic(pic: HotZoneImg, url, scale = null) {
const baseLen = this.hotZoneImgSize * this.mapScale;
let baseLen;
if (this.hotZoneImgSize) {
baseLen = this.hotZoneImgSize * this.mapScale;
}
pic.load(url).then(() => { pic.load(url).then(() => {
const s = getMinScale(pic, baseLen); if (!scale) {
pic.setScaleXY(s); if (baseLen) {
scale = getMinScale(pic, baseLen);
} else {
scale = this.bg.scaleX;
}
}
pic.setScaleXY(scale);
}); });
} }
closeAfterPanel() {
this.refresh();
}
/**
* 刷新 渲染页面
*/
refresh() {
setTimeout(() => {
this.appRef.tick();
}, 1);
}
} }
<div class="model-content"> <div class="model-content">
<div style="padding: 10px;"> <div style="padding: 10px;">
<h2>热区配置:</h2>
<app-custom-hot-zone
[bgItem]="item.bgItem"
[hotZoneItemArr]="item.hotZoneItemArr"
[customTypeGroupArr]="customTypeGroupArr"
(save)="saveHotZone(item, $event)"
>
</app-custom-hot-zone>
<div style="width: 300px;" align='center'> <div style="width: 300px;" align='center'>
<span>图1: </span> <span>图1: </span>
<app-upload-image-with-preview <app-upload-image-with-preview
...@@ -9,7 +21,7 @@ ...@@ -9,7 +21,7 @@
(imageUploaded)="onImageUploadSuccess($event, 'pic_url')"> (imageUploaded)="onImageUploadSuccess($event, 'pic_url')">
</app-upload-image-with-preview> </app-upload-image-with-preview>
</div> </div>
<div style="width: 300px; margin-top: 5px;" align='center'> <div style="width: 300px; margin-top: 5px;" align='center'>
<span>图2: </span> <span>图2: </span>
<app-upload-image-with-preview <app-upload-image-with-preview
......
...@@ -14,6 +14,29 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy { ...@@ -14,6 +14,29 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
// 储存对象 // 储存对象
item; item;
customTypeGroupArr = [
{
name: '轮播图片',
anima: true,
// audio: true,
// pic: true,
rect: true,
// isShowPos: true,
// isCopy: true,
// label: '比对',
},
];
saveHotZone(group, e) {
console.log('e: ', e);
const {bgItem, hotZoneItemArr} = e;
group.bgItem = bgItem;
group.hotZoneItemArr = hotZoneItemArr;
this.save();
}
constructor(private appRef: ApplicationRef, private changeDetectorRef: ChangeDetectorRef) { constructor(private appRef: ApplicationRef, private changeDetectorRef: ChangeDetectorRef) {
} }
...@@ -111,4 +134,4 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy { ...@@ -111,4 +134,4 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
}, 1); }, 1);
} }
} }
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"ver": "1.1.2",
"uuid": "70fdfdad-5d4e-4490-882f-578696a29e93",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"蚂蚁","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":653.35,"y":882,"width":533.65,"height":122},"bone":[{"name":"root"},{"length":78,"name":"bone","parent":"root","transform":{"x":1106.2,"y":963.4,"skX":-89.4194,"skY":-89.4194}},{"length":78,"name":"bone1","parent":"root","transform":{"x":919.1373,"y":963.4,"skX":-89.4194,"skY":-89.4194}},{"length":78,"name":"bone2","parent":"root","transform":{"x":734.5468,"y":963.4,"skX":-89.4194,"skY":-89.4194}},{"length":119,"name":"图层_4_拷贝_2","parent":"bone","transform":{"x":22.589,"y":-40.681,"skX":105.2167,"skY":105.2167}},{"length":40,"name":"head_拷贝_21","parent":"bone1","transform":{"x":24.2012,"y":-49.3478,"skX":-142.5871,"skY":-142.5871}},{"length":119,"name":"图层_4_拷贝_21","parent":"bone1","transform":{"x":22.589,"y":-40.681,"skX":105.2167,"skY":105.2167}},{"length":40,"name":"head_拷贝_2","parent":"bone","transform":{"x":24.2012,"y":-49.3478,"skX":-142.5871,"skY":-142.5871}},{"length":119,"name":"图层_4_拷贝_22","parent":"bone2","transform":{"x":22.589,"y":-40.681,"skX":105.2167,"skY":105.2167}},{"length":40,"name":"head_拷贝_22","parent":"bone2","transform":{"x":24.2012,"y":-49.3478,"skX":-142.5871,"skY":-142.5871}},{"length":25,"name":"foot4_拷贝_2","parent":"图层_4_拷贝_2","transform":{"x":58.4105,"y":19.4845,"skX":76.4484,"skY":76.4484}},{"length":30,"name":"foot5_拷贝_2","parent":"图层_4_拷贝_2","transform":{"x":66.1067,"y":15.2806,"skX":75.4276,"skY":75.4276}},{"length":29,"name":"foot2_拷贝_2","parent":"图层_4_拷贝_2","transform":{"x":32.6852,"y":18.5527,"skX":80.6725,"skY":80.6725}},{"length":30,"name":"foot5_拷贝_21","parent":"图层_4_拷贝_21","transform":{"x":66.1067,"y":15.2806,"skX":75.4276,"skY":75.4276}},{"length":28,"name":"foot6_拷贝_2","parent":"图层_4_拷贝_2","transform":{"x":72.3293,"y":15.2349,"skX":70.233,"skY":70.233}},{"length":28,"name":"foot6_拷贝_21","parent":"图层_4_拷贝_21","transform":{"x":72.3293,"y":15.2349,"skX":70.233,"skY":70.233}},{"length":34,"name":"foot1_拷贝_21","parent":"图层_4_拷贝_21","transform":{"x":22.9986,"y":19.5784,"skX":89.8385,"skY":89.8385}},{"length":25,"name":"foot4_拷贝_21","parent":"图层_4_拷贝_21","transform":{"x":58.4105,"y":19.4845,"skX":76.4484,"skY":76.4484}},{"length":29,"name":"foot2_拷贝_21","parent":"图层_4_拷贝_21","transform":{"x":32.6852,"y":18.5527,"skX":80.6725,"skY":80.6725}},{"length":34,"name":"foot1_拷贝_2","parent":"图层_4_拷贝_2","transform":{"x":22.9986,"y":19.5784,"skX":89.8385,"skY":89.8385}},{"length":26,"name":"foot3_拷贝_2","parent":"图层_4_拷贝_2","transform":{"x":46.6225,"y":20.4293,"skX":74.9608,"skY":74.9608}},{"length":26,"name":"foot3_拷贝_21","parent":"图层_4_拷贝_21","transform":{"x":46.6225,"y":20.4293,"skX":74.9608,"skY":74.9608}},{"length":30,"name":"foot5_拷贝_22","parent":"图层_4_拷贝_22","transform":{"x":66.1067,"y":15.2806,"skX":75.4276,"skY":75.4276}},{"length":26,"name":"foot3_拷贝_22","parent":"图层_4_拷贝_22","transform":{"x":46.6225,"y":20.4293,"skX":74.9608,"skY":74.9608}},{"length":28,"name":"foot6_拷贝_22","parent":"图层_4_拷贝_22","transform":{"x":72.3293,"y":15.2349,"skX":70.233,"skY":70.233}},{"length":34,"name":"foot1_拷贝_22","parent":"图层_4_拷贝_22","transform":{"x":22.9986,"y":19.5784,"skX":89.8385,"skY":89.8385}},{"length":25,"name":"foot4_拷贝_22","parent":"图层_4_拷贝_22","transform":{"x":58.4105,"y":19.4845,"skX":76.4484,"skY":76.4484}},{"length":29,"name":"foot2_拷贝_22","parent":"图层_4_拷贝_22","transform":{"x":32.6852,"y":18.5527,"skX":80.6725,"skY":80.6725}}],"slot":[{"name":"图层_4_拷贝_2","parent":"图层_4_拷贝_2"},{"name":"foot6_拷贝_2","parent":"foot6_拷贝_2"},{"name":"foot5_拷贝_2","parent":"foot5_拷贝_2"},{"name":"foot4_拷贝_2","parent":"foot4_拷贝_2"},{"name":"foot3_拷贝_2","parent":"foot3_拷贝_2"},{"name":"foot2_拷贝_2","parent":"foot2_拷贝_2"},{"name":"foot1_拷贝_2","parent":"foot1_拷贝_2"},{"name":"head_拷贝_2","parent":"head_拷贝_2"},{"name":"图层_4_拷贝_21","parent":"图层_4_拷贝_21"},{"name":"foot6_拷贝_21","parent":"foot6_拷贝_21"},{"name":"foot5_拷贝_21","parent":"foot5_拷贝_21"},{"name":"foot4_拷贝_21","parent":"foot4_拷贝_21"},{"name":"foot3_拷贝_21","parent":"foot3_拷贝_21"},{"name":"foot2_拷贝_21","parent":"foot2_拷贝_21"},{"name":"foot1_拷贝_21","parent":"foot1_拷贝_21"},{"name":"head_拷贝_21","parent":"head_拷贝_21"},{"name":"图层_4_拷贝_22","parent":"图层_4_拷贝_22"},{"name":"foot6_拷贝_22","parent":"foot6_拷贝_22"},{"name":"foot5_拷贝_22","parent":"foot5_拷贝_22"},{"name":"foot4_拷贝_22","parent":"foot4_拷贝_22"},{"name":"foot3_拷贝_22","parent":"foot3_拷贝_22"},{"name":"foot2_拷贝_22","parent":"foot2_拷贝_22"},{"name":"foot1_拷贝_22","parent":"foot1_拷贝_22"},{"name":"head_拷贝_22","parent":"head_拷贝_22"}],"skin":[{"slot":[{"name":"head_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/head_拷贝_2","transform":{"x":-3.63,"y":8.67,"skX":-127.99,"skY":-127.99}}]},{"name":"foot5_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot5_拷贝_2","transform":{"x":14.4,"y":-0.11,"skX":-91.22,"skY":-91.22}}]},{"name":"foot1_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot1_拷贝_2","transform":{"x":15.4,"y":-0.62,"skX":-105.64,"skY":-105.64}}]},{"name":"foot1_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot1_拷贝_2","transform":{"x":15.4,"y":-0.62,"skX":-105.64,"skY":-105.64}}]},{"name":"foot6_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot6_拷贝_2","transform":{"x":12.17,"y":1.55,"skX":-86.03,"skY":-86.03}}]},{"name":"foot3_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot3_拷贝_2","transform":{"x":13.26,"y":0.87,"skX":-90.76,"skY":-90.76}}]},{"name":"foot3_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot3_拷贝_2","transform":{"x":13.26,"y":0.87,"skX":-90.76,"skY":-90.76}}]},{"name":"图层_4_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/图层_4_拷贝_2","transform":{"x":46.16,"y":-6.72,"skX":-15.8,"skY":-15.8}}]},{"name":"图层_4_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/图层_4_拷贝_2","transform":{"x":46.16,"y":-6.72,"skX":-15.8,"skY":-15.8}}]},{"name":"foot5_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot5_拷贝_2","transform":{"x":14.4,"y":-0.11,"skX":-91.22,"skY":-91.22}}]},{"name":"foot2_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot2_拷贝_2","transform":{"x":15.88,"y":-0.64,"skX":-96.47,"skY":-96.47}}]},{"name":"foot4_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot4_拷贝_2","transform":{"x":11.43,"y":-0.8,"skX":-92.25,"skY":-92.25}}]},{"name":"foot5_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot5_拷贝_2","transform":{"x":14.4,"y":-0.11,"skX":-91.22,"skY":-91.22}}]},{"name":"head_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/head_拷贝_2","transform":{"x":-3.63,"y":8.67,"skX":-127.99,"skY":-127.99}}]},{"name":"foot3_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot3_拷贝_2","transform":{"x":13.26,"y":0.87,"skX":-90.76,"skY":-90.76}}]},{"name":"foot6_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot6_拷贝_2","transform":{"x":12.17,"y":1.55,"skX":-86.03,"skY":-86.03}}]},{"name":"foot2_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot2_拷贝_2","transform":{"x":15.88,"y":-0.64,"skX":-96.47,"skY":-96.47}}]},{"name":"foot2_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot2_拷贝_2","transform":{"x":15.88,"y":-0.64,"skX":-96.47,"skY":-96.47}}]},{"name":"foot1_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot1_拷贝_2","transform":{"x":15.4,"y":-0.62,"skX":-105.64,"skY":-105.64}}]},{"name":"foot6_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot6_拷贝_2","transform":{"x":12.17,"y":1.55,"skX":-86.03,"skY":-86.03}}]},{"name":"foot4_拷贝_2","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot4_拷贝_2","transform":{"x":11.43,"y":-0.8,"skX":-92.25,"skY":-92.25}}]},{"name":"foot4_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/foot4_拷贝_2","transform":{"x":11.43,"y":-0.8,"skX":-92.25,"skY":-92.25}}]},{"name":"head_拷贝_22","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/head_拷贝_2","transform":{"x":-3.63,"y":8.67,"skX":-127.99,"skY":-127.99}}]},{"name":"图层_4_拷贝_21","display":[{"name":"蚂蚁从画面最右边外面爬到最左边外面/图层_4_拷贝_2","transform":{"x":46.16,"y":-6.72,"skX":-15.8,"skY":-15.8}}]}]}],"animation":[{"duration":600,"playTimes":0,"name":"newAnimation","bone":[{"name":"bone","translateFrame":[{"duration":120},{"duration":480,"tweenEasing":0,"x":602.27},{"duration":0,"x":-2444.59}]},{"name":"head_拷贝_2","rotateFrame":[{"duration":120},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":0}]},{"name":"图层_4_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":0}]},{"name":"foot6_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":0,"rotate":-18.6}]},{"name":"foot3_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":0,"rotate":20.35}]},{"name":"foot5_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":0,"rotate":6.18}]},{"name":"foot1_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":0,"rotate":22.67}]},{"name":"foot4_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":0,"rotate":-1.02}]},{"name":"foot2_拷贝_2","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":0,"rotate":3.66}]},{"name":"bone1","translateFrame":[{"duration":120},{"duration":480,"tweenEasing":0,"x":602.27},{"duration":0,"x":-2444.59}]},{"name":"head_拷贝_21","rotateFrame":[{"duration":120},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":0}]},{"name":"图层_4_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":0}]},{"name":"foot5_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":0,"rotate":6.18}]},{"name":"foot3_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":0,"rotate":20.35}]},{"name":"foot6_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":0,"rotate":-18.6}]},{"name":"foot1_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":0,"rotate":22.67}]},{"name":"foot4_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":0,"rotate":-1.02}]},{"name":"foot2_拷贝_21","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":0,"rotate":3.66}]},{"name":"bone2","translateFrame":[{"duration":120},{"duration":480,"tweenEasing":0,"x":602.27},{"duration":0,"x":-2444.59}]},{"name":"head_拷贝_22","rotateFrame":[{"duration":120},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":10.78},{"duration":0}]},{"name":"图层_4_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-1.97},{"duration":6,"tweenEasing":0,"rotate":-0.09},{"duration":6,"tweenEasing":0,"rotate":-2.17},{"duration":0}]},{"name":"foot5_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":6,"tweenEasing":0,"rotate":6.18},{"duration":6,"tweenEasing":0,"rotate":-5.53},{"duration":0,"rotate":6.18}]},{"name":"foot3_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":6,"tweenEasing":0,"rotate":20.35},{"duration":6,"tweenEasing":0,"rotate":1.65},{"duration":0,"rotate":20.35}]},{"name":"foot6_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":6,"tweenEasing":0,"rotate":-18.6},{"duration":6,"tweenEasing":0,"rotate":5.15},{"duration":0,"rotate":-18.6}]},{"name":"foot1_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":6,"tweenEasing":0,"rotate":22.67},{"duration":6,"tweenEasing":0,"rotate":-0.13},{"duration":0,"rotate":22.67}]},{"name":"foot4_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":6,"tweenEasing":0,"rotate":-1.02},{"duration":6,"tweenEasing":0,"rotate":19.48},{"duration":0,"rotate":-1.02}]},{"name":"foot2_拷贝_22","rotateFrame":[{"duration":120},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":6,"tweenEasing":0,"rotate":3.66},{"duration":6,"tweenEasing":0,"rotate":17.63},{"duration":0,"rotate":3.66}]}],"slot":[{"name":"图层_4_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot6_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot5_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot4_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot3_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot2_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot1_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"head_拷贝_2","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_4_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot6_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot5_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot4_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot3_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot2_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot1_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"head_拷贝_21","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_4_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot6_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot5_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot4_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot3_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot2_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"foot1_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"head_拷贝_22","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":425,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"newAnimation"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "c447e113-b1b5-4f13-9a2e-678dc9fc8792",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"蚂蚁_tex.png","height":128,"name":"蚂蚁","SubTexture":[{"width":150,"y":1,"height":79,"name":"蚂蚁从画面最右边外面爬到最左边外面/图层_4_拷贝_2","x":1},{"width":11,"y":1,"height":34,"name":"蚂蚁从画面最右边外面爬到最左边外面/foot6_拷贝_2","x":228},{"width":8,"y":37,"height":33,"name":"蚂蚁从画面最右边外面爬到最左边外面/foot5_拷贝_2","x":228},{"width":8,"y":37,"height":31,"name":"蚂蚁从画面最右边外面爬到最左边外面/foot4_拷贝_2","x":238},{"width":8,"y":46,"height":32,"name":"蚂蚁从画面最右边外面爬到最左边外面/foot3_拷贝_2","x":210},{"width":10,"y":1,"height":34,"name":"蚂蚁从画面最右边外面爬到最左边外面/foot2_拷贝_2","x":241},{"width":16,"y":1,"height":43,"name":"蚂蚁从画面最右边外面爬到最左边外面/foot1_拷贝_2","x":210},{"width":55,"y":1,"height":97,"name":"蚂蚁从画面最右边外面爬到最左边外面/head_拷贝_2","x":153}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "3bd136d5-5391-4d24-9a04-7c91996d5544",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b59565db-6b1b-4301-bdec-7d3878f6f049",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 128,
"platformSettings": {},
"subMetas": {
"蚂蚁_tex": {
"ver": "1.0.4",
"uuid": "3a2997ac-cbcd-4b37-879b-f82b1225c5e0",
"rawTextureUuid": "b59565db-6b1b-4301-bdec-7d3878f6f049",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -2,
"offsetY": 14.5,
"trimX": 1,
"trimY": 1,
"width": 250,
"height": 97,
"rawWidth": 256,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "9417665d-9b7b-4ae1-9e4c-194e4ba8b396",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"苹果","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-1246,"y":-903,"width":799,"height":565},"bone":[{"name":"root"},{"length":97,"name":"Apple_02","parent":"root","transform":{"x":-1109.05,"y":-858.75,"skX":81.8908,"skY":81.8908}},{"length":107,"name":"Apple_021","parent":"root","transform":{"x":-658.05,"y":-883.05,"skX":80.3575,"skY":80.3575}},{"length":102,"name":"Apple_022","parent":"root","transform":{"x":-887.25,"y":-720.35,"skX":81.6959,"skY":81.6959}},{"length":105,"name":"Apple_023","parent":"root","transform":{"x":-576.7,"y":-566.15,"skX":80.8178,"skY":80.8178}},{"length":101,"name":"Apple_024","parent":"root","transform":{"x":-1034.05,"y":-462.65,"skX":81.0523,"skY":81.0523}}],"slot":[{"name":"Apple_01","parent":"Apple_02"},{"name":"Apple_02","parent":"Apple_021"},{"name":"Apple_03","parent":"Apple_022"},{"name":"Apple_04","parent":"Apple_024"},{"name":"Apple_05","parent":"Apple_023"}],"skin":[{"slot":[{"name":"Apple_05","display":[{"name":"五个苹果左右晃动三次/Apple_05","transform":{"x":-81.41,"y":260.14,"skX":-80.82,"skY":-80.82}}]},{"name":"Apple_04","display":[{"name":"五个苹果左右晃动三次/Apple_04","transform":{"x":-113.39,"y":-185.44,"skX":-81.05,"skY":-81.05}}]},{"name":"Apple_01","display":[{"name":"五个苹果左右晃动三次/Apple_01","transform":{"x":259.34,"y":-194.92,"skX":-81.89,"skY":-81.89}}]},{"name":"Apple_02","display":[{"name":"五个苹果左右晃动三次/Apple_02","transform":{"x":216.34,"y":282.17,"skX":-80.36,"skY":-80.36}}]},{"name":"Apple_03","display":[{"name":"五个苹果左右晃动三次/Apple_03","transform":{"x":111.86,"y":-12.73,"skX":-81.7,"skY":-81.7}}]}]}],"animation":[{"duration":120,"playTimes":0,"name":"normal","bone":[{"name":"Apple_02","rotateFrame":[{"duration":72},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-15.29},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-17.58},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-16.02},{"duration":0}]},{"name":"Apple_021","rotateFrame":[{"duration":72},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-15.29},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-17.58},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-16.02},{"duration":0}]},{"name":"Apple_022","rotateFrame":[{"duration":72},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-15.29},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-17.58},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-16.02},{"duration":0}]},{"name":"Apple_023","rotateFrame":[{"duration":72},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-15.29},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-17.58},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-16.02},{"duration":0}]},{"name":"Apple_024","rotateFrame":[{"duration":72},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-15.29},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-17.58},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"rotate":-16.02},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "4d85228f-ec02-4cbe-a0d8-cc8628fe805d",
"subMetas": {}
}
\ No newline at end of file
{"width":2048,"imagePath":"苹果_tex.png","height":2048,"name":"苹果","SubTexture":[{"width":733,"y":1,"height":547,"name":"五个苹果左右晃动三次/Apple_01","x":802},{"width":692,"y":1057,"height":561,"name":"五个苹果左右晃动三次/Apple_02","x":758},{"width":775,"y":550,"height":505,"name":"五个苹果左右晃动三次/Apple_03","x":758},{"width":755,"y":535,"height":531,"name":"五个苹果左右晃动三次/Apple_04","x":1},{"width":799,"y":1,"height":532,"name":"五个苹果左右晃动三次/Apple_05","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "146d0d76-3625-438b-a6c8-dbd27ca2af63",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "86f11d79-16d0-49dc-bda0-3c12dd926a41",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2048,
"height": 2048,
"platformSettings": {},
"subMetas": {
"苹果_tex": {
"ver": "1.0.4",
"uuid": "9e7bea81-1d99-439c-90a6-1f3f263b51c6",
"rawTextureUuid": "86f11d79-16d0-49dc-bda0-3c12dd926a41",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -256,
"offsetY": 214.5,
"trimX": 1,
"trimY": 1,
"width": 1534,
"height": 1617,
"rawWidth": 2048,
"rawHeight": 2048,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "44b17919-108f-4287-88f3-1ffd75f18164",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"鸟","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":202,"y":-1127,"width":214,"height":171},"bone":[{"name":"root"},{"length":53,"name":"bone","parent":"root","transform":{"x":307.7,"y":-995.9,"skX":88.6665,"skY":88.6665}},{"length":97,"name":"right","parent":"bone","transform":{"x":2.1359,"y":-18.7054,"skX":115.4307,"skY":115.4307}},{"length":62,"name":"chi","parent":"bone","transform":{"x":-8.505,"y":-38.5584,"skX":-94.1308,"skY":-94.1308}},{"length":111,"name":"left","parent":"right","transform":{"x":28.9162,"y":10.4002,"skX":81.4103,"skY":81.4103}}],"slot":[{"name":"right","parent":"right"},{"name":"chi","parent":"chi"},{"name":"left","parent":"left"}],"skin":[{"slot":[{"name":"left","display":[{"name":"鸟从最右边屏幕外飞到最左边屏幕外/left","transform":{"x":51.68,"y":-6.35,"skX":74.49,"skY":74.49}}]},{"name":"right","display":[{"name":"鸟从最右边屏幕外飞到最左边屏幕外/right","transform":{"x":43.86,"y":7.55,"skX":155.9,"skY":155.9}}]},{"name":"chi","display":[{"name":"鸟从最右边屏幕外飞到最左边屏幕外/chi","transform":{"x":19.9,"y":-3.82,"skX":5.46,"skY":5.46}}]}]}],"animation":[{"duration":240,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":120},{"duration":120,"tweenEasing":0,"x":1059.12},{"duration":0,"x":-1666.96}]},{"name":"right","rotateFrame":[{"duration":120},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":8.54},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":8.54},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":8.54},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":8.54},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":8.54},{"duration":0}]},{"name":"chi","rotateFrame":[{"duration":120},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-10.58},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-10.58},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-10.58},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-10.58},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-10.58},{"duration":0}]},{"name":"left","rotateFrame":[{"duration":120},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":141.32},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":141.32},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":141.32},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":141.32},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":141.32},{"duration":0}]}],"slot":[{"name":"right","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":84,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"chi","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":84,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"left","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":84,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "c09e0f09-3dcd-48ab-96e9-b3411b332e30",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"SubTexture":[{"width":175,"y":1,"height":126,"name":"鸟从最右边屏幕外飞到最左边屏幕外/right","x":1},{"width":101,"y":129,"height":100,"name":"鸟从最右边屏幕外飞到最左边屏幕外/chi","x":1},{"width":70,"y":129,"height":120,"name":"鸟从最右边屏幕外飞到最左边屏幕外/left","x":104}],"height":256,"name":"鸟","imagePath":"鸟_tex.png"}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "f7c2a4ed-1ea1-47fa-af1a-b0a87503411a",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "59ee93c5-d530-4e4d-877f-de07ec343ea2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 256,
"platformSettings": {},
"subMetas": {
"鸟_tex": {
"ver": "1.0.4",
"uuid": "54a93133-4ec0-4b2a-94b4-fab40df22181",
"rawTextureUuid": "59ee93c5-d530-4e4d-877f-de07ec343ea2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -39.5,
"offsetY": 3,
"trimX": 1,
"trimY": 1,
"width": 175,
"height": 248,
"rawWidth": 256,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "215edad1-0534-44e0-a550-a69dc286902c",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"小汽车","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-480,"y":-831,"width":314,"height":175},"bone":[{"name":"root"},{"length":139,"name":"bone","parent":"root","transform":{"x":-331.7,"y":-732.9,"skX":-91.8549,"skY":-91.8549}},{"length":78,"name":"图层_5","parent":"bone","transform":{"x":11.0755,"y":-29.9572,"skX":91.0516,"skY":91.0516}}],"slot":[{"name":"图层_5","parent":"图层_5"}],"skin":[{"slot":[{"name":"图层_5","display":[{"name":"小汽车从画面左边外面跑到画面右边外面/图层_5","transform":{"x":39,"y":0.05,"skX":0.8,"skY":0.8}}]}]}],"animation":[{"duration":192,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":120},{"duration":72,"tweenEasing":0,"x":1733.45},{"duration":0,"x":-1080.55}]},{"name":"图层_5","scaleFrame":[{"duration":120},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":0}]}],"slot":[{"name":"图层_5","colorFrame":[{"duration":120,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":56,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "927c2190-9931-4948-bc8f-f93273d386f1",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"小汽车_tex.png","height":256,"name":"小汽车","SubTexture":[{"width":314,"y":1,"height":175,"name":"小汽车从画面左边外面跑到画面右边外面/图层_5","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "cb558b4f-c46d-4597-be52-2a01e9919a07",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "edeffe0f-b105-4aa8-a84b-2bdf25d5d67e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 256,
"platformSettings": {},
"subMetas": {
"小汽车_tex": {
"ver": "1.0.4",
"uuid": "7ffd8ccc-9977-4251-8d9a-7791f6b1e9cf",
"rawTextureUuid": "edeffe0f-b105-4aa8-a84b-2bdf25d5d67e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -98,
"offsetY": 39.5,
"trimX": 1,
"trimY": 1,
"width": 314,
"height": 175,
"rawWidth": 512,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "315f6212-094f-41fe-b7f9-15080ed373ba",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"猫","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-1230,"y":497,"width":451,"height":489},"bone":[{"name":"root"},{"length":204,"name":"bone","parent":"root","transform":{"x":-1004.85,"y":858.65,"skX":179.4111,"skY":179.4111}},{"length":243,"name":"body","parent":"bone","transform":{"x":35.0905,"y":-81.5936,"skX":119.3364,"skY":119.3364}},{"length":319,"name":"weiba","parent":"bone","transform":{"x":71.4183,"y":13.1848,"skX":76.1021,"skY":76.1021}},{"length":135,"name":"leg","parent":"bone","transform":{"x":-109.0575,"y":19.6301,"skX":-98.665,"skY":-98.665}},{"length":170,"name":"head","parent":"body","transform":{"x":246.4025,"y":-1.4909,"skX":-3.1155,"skY":-3.1155}}],"slot":[{"name":"weiba","parent":"weiba"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"head","parent":"head"}],"skin":[{"slot":[{"name":"body","display":[{"name":"猫低头舔手再恢复/body","transform":{"x":129.78,"y":-3.78,"skX":61.25,"skY":61.25}}]},{"name":"head","display":[{"name":"猫低头舔手再恢复/head","transform":{"x":97.86,"y":-18.78,"skX":64.37,"skY":64.37}}]},{"name":"leg","display":[{"name":"猫低头舔手再恢复/leg","transform":{"x":69.87,"y":-5.33,"skX":-80.75,"skY":-80.75}}]},{"name":"weiba","display":[{"name":"猫低头舔手再恢复/weiba","transform":{"x":163.23,"y":-33.33,"skX":104.49,"skY":104.49}}]}]}],"animation":[{"duration":192,"playTimes":0,"name":"normal","bone":[{"name":"weiba","rotateFrame":[{"duration":120},{"duration":20,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":8.05},{"duration":10,"tweenEasing":0,"rotate":0.31},{"duration":10,"tweenEasing":0,"rotate":8.05},{"duration":10,"tweenEasing":0,"rotate":-1.27},{"duration":12,"tweenEasing":0,"rotate":8.05},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":20,"tweenEasing":0},{"duration":40,"tweenEasing":0,"x":80.31,"y":0.83},{"duration":12,"tweenEasing":0,"x":80.31,"y":0.83},{"duration":120}],"rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":-94.28},{"duration":10,"tweenEasing":0,"rotate":-72.67},{"duration":10,"tweenEasing":0,"rotate":-94.28},{"duration":10,"tweenEasing":0,"rotate":-72.67},{"duration":12,"tweenEasing":0,"rotate":-94.28},{"duration":120}]},{"name":"head","translateFrame":[{"duration":20,"tweenEasing":0},{"duration":40,"tweenEasing":0,"x":-46.23,"y":26.53},{"duration":12,"tweenEasing":0,"x":-46.23,"y":26.53},{"duration":120}],"rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":20.32},{"duration":10,"tweenEasing":0,"rotate":4.77},{"duration":10,"tweenEasing":0,"rotate":20.32},{"duration":10,"tweenEasing":0,"rotate":4.77},{"duration":12,"tweenEasing":0,"rotate":20.32},{"duration":120}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3380}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "0d98c5c3-f6ce-4b53-8b13-3f64793c6c2a",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"SubTexture":[{"width":161,"y":1,"height":399,"name":"猫低头舔手再恢复/weiba","x":271},{"width":67,"y":325,"height":160,"name":"猫低头舔手再恢复/leg","x":1},{"width":268,"y":1,"height":322,"name":"猫低头舔手再恢复/body","x":1},{"width":235,"y":1,"height":209,"name":"猫低头舔手再恢复/head","x":434}],"height":512,"name":"猫","imagePath":"猫_tex.png"}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "6f320da8-7ad6-4576-9ed9-9f008f467cf7",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "830faa0b-8013-45bb-a466-31bedee5bdb4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 512,
"platformSettings": {},
"subMetas": {
"猫_tex": {
"ver": "1.0.4",
"uuid": "1c9a1fcf-d582-48a1-aced-4e76515fb781",
"rawTextureUuid": "830faa0b-8013-45bb-a466-31bedee5bdb4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -177,
"offsetY": 13,
"trimX": 1,
"trimY": 1,
"width": 668,
"height": 484,
"rawWidth": 1024,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "a7ce5303-db8a-4b51-9a6c-077ae4660733",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"牛","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-578.5,"y":-604.5,"width":490,"height":373},"bone":[{"name":"root"},{"length":110,"name":"bone","parent":"root","transform":{"x":-307.9,"y":-448.55,"skX":-92.7016,"skY":-92.7016}},{"length":101,"name":"body_01","parent":"root","transform":{"x":-433,"y":-342.25,"skX":91.105,"skY":91.105}},{"length":205,"name":"body_0","parent":"bone","transform":{"x":-0.4431,"y":92.1315,"skX":-89.828,"skY":-89.828}},{"length":63,"name":"foot1_0","parent":"bone","transform":{"x":-103.005,"y":148.3098,"skX":179.2347,"skY":179.2347}},{"length":124,"name":"weiba_0","parent":"bone","transform":{"x":75.4534,"y":-113.9202,"skX":-114.6483,"skY":-114.6483}},{"length":154,"name":"body","parent":"body_01","transform":{"x":3.6746,"y":55.6895,"skX":-90.6221,"skY":-90.6221}},{"length":37,"name":"foot","parent":"body_01","transform":{"x":70.2377,"y":79.0602,"skX":-0.1146,"skY":-0.1146}},{"length":37,"name":"foot1","parent":"body_01","transform":{"x":58.2639,"y":-106.1433,"skX":-2.0954,"skY":-2.0954}},{"length":96,"name":"weiba","parent":"body_01","transform":{"x":-36.5439,"y":-113.4164,"skX":-53.2091,"skY":-53.2091}},{"length":135,"name":"head_0","parent":"body_0","transform":{"x":-23.6428,"y":6.1125,"skX":110.9512,"skY":110.9512}},{"length":96,"name":"head","parent":"body","transform":{"x":-12.4372,"y":-10.2956,"skX":-109.2744,"skY":-109.2744}},{"length":74,"name":"foot_0","parent":"body_0","transform":{"x":205.2654,"y":-78.517,"skX":-87.4704,"skY":-87.4704}}],"slot":[{"name":"weiba_0","parent":"weiba_0"},{"name":"body_0","parent":"body_0"},{"name":"foot1_0","parent":"foot1_0"},{"name":"foot_0","parent":"foot_0"},{"name":"head_0","parent":"head_0"},{"name":"foot1","parent":"foot1"},{"name":"foot","parent":"foot"},{"name":"weiba","parent":"weiba"},{"name":"body","parent":"body"},{"name":"head","parent":"head"}],"skin":[{"slot":[{"name":"head_0","display":[{"name":"牛前后晃动身体摆尾巴头晃动/head_0","transform":{"x":68.52,"y":9.85,"skX":71.58,"skY":71.58}}]},{"name":"foot_0","display":[{"name":"牛前后晃动身体摆尾巴头晃动/foot_0","transform":{"x":40.95,"y":8.05,"skX":-90,"skY":-90}}]},{"name":"foot1_0","display":[{"name":"牛前后晃动身体摆尾巴头晃动/foot1_0","transform":{"x":31,"y":3.48,"skX":-86.53,"skY":-86.53}}]},{"name":"head","display":[{"name":"牛前后晃动身体摆尾巴头晃动/head","transform":{"x":50.39,"y":-5.46,"skX":108.79,"skY":108.79}}]},{"name":"body_0","display":[{"name":"牛前后晃动身体摆尾巴头晃动/body_0","transform":{"x":132.46,"y":-60.66,"skX":-177.47,"skY":-177.47}}]},{"name":"body","display":[{"name":"牛前后晃动身体摆尾巴头晃动/body","transform":{"x":49.75,"y":0.23,"skX":-0.48,"skY":-0.48}}]},{"name":"weiba_0","display":[{"name":"牛前后晃动身体摆尾巴头晃动/weiba_0","transform":{"x":69.59,"y":-1.22,"skX":-152.65,"skY":-152.65}}]},{"name":"weiba","display":[{"name":"牛前后晃动身体摆尾巴头晃动/weiba","transform":{"x":52.25,"y":-1.9,"skX":-37.9,"skY":-37.9}}]},{"name":"foot","display":[{"name":"牛前后晃动身体摆尾巴头晃动/foot","transform":{"x":10.55,"y":-0.08,"skX":-90.99,"skY":-90.99}}]},{"name":"foot1","display":[{"name":"牛前后晃动身体摆尾巴头晃动/foot1","transform":{"x":21.02,"y":-3.64,"skX":-89.01,"skY":-89.01}}]}]}],"animation":[{"duration":108,"playTimes":0,"name":"normal","bone":[{"name":"body_0","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.15,"y":-3.28},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.15,"y":-3.28},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.15,"y":-3.28},{"duration":0}]},{"name":"weiba_0","rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-46.53},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-46.53},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-46.53},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-46.53},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-46.53},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-46.53},{"duration":0}]},{"name":"body","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":4.38,"y":-0.08},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":4.38,"y":-0.08},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":4.38,"y":-0.08},{"duration":0}]},{"name":"weiba","rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":43.22},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":43.22},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":43.22},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":43.22},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":43.22},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":43.22},{"duration":0}]},{"name":"head_0","rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-19.92},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-19.92},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-19.92},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-19.92},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-19.92},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-19.92},{"duration":0}]},{"name":"head","rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":14.97},{"duration":9,"tweenEasing":0,"rotate":-0.88},{"duration":9,"tweenEasing":0,"rotate":9.54},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":14.97},{"duration":9,"tweenEasing":0,"rotate":-0.88},{"duration":9,"tweenEasing":0,"rotate":9.54},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":14.97},{"duration":9,"tweenEasing":0,"rotate":-0.88},{"duration":9,"tweenEasing":0,"rotate":9.54},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "ff8e808c-0f2c-437d-93a2-e427b8036108",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"牛_tex.png","height":1024,"name":"牛","SubTexture":[{"width":154,"y":451,"height":76,"name":"牛前后晃动身体摆尾巴头晃动/weiba_0","x":115},{"width":466,"y":1,"height":309,"name":"牛前后晃动身体摆尾巴头晃动/body_0","x":1},{"width":54,"y":312,"height":78,"name":"牛前后晃动身体摆尾巴头晃动/foot1_0","x":430},{"width":46,"y":392,"height":85,"name":"牛前后晃动身体摆尾巴头晃动/foot_0","x":430},{"width":146,"y":312,"height":166,"name":"牛前后晃动身体摆尾巴头晃动/head_0","x":282},{"width":45,"y":479,"height":53,"name":"牛前后晃动身体摆尾巴头晃动/foot1","x":430},{"width":36,"y":1,"height":63,"name":"牛前后晃动身体摆尾巴头晃动/foot","x":469},{"width":104,"y":480,"height":69,"name":"牛前后晃动身体摆尾巴头晃动/weiba","x":271},{"width":279,"y":312,"height":137,"name":"牛前后晃动身体摆尾巴头晃动/body","x":1},{"width":112,"y":451,"height":127,"name":"牛前后晃动身体摆尾巴头晃动/head","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "e49a7f11-180e-464a-b737-4100c50c5293",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fd61a107-8e08-43a2-958c-4c2b08d80d6b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"牛_tex": {
"ver": "1.0.4",
"uuid": "2c91cbf2-20f0-4090-86dc-7a12bb65cdcd",
"rawTextureUuid": "fd61a107-8e08-43a2-958c-4c2b08d80d6b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -3,
"offsetY": 222.5,
"trimX": 1,
"trimY": 1,
"width": 504,
"height": 577,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "ea6cdadb-2b60-43cc-aa1d-9f828c02f6ba",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"鸭子","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":29,"y":287,"width":314,"height":297},"bone":[{"name":"root"},{"length":145,"name":"bone","parent":"root","transform":{"x":191.95,"y":474.15,"skX":0.2167,"skY":0.2167}},{"length":163,"name":"body","parent":"bone","transform":{"x":60.361,"y":-36.8785,"skX":168.6768,"skY":168.6768}},{"length":67,"name":"leftleg","parent":"bone","transform":{"x":-29.5333,"y":30.9119,"skX":84.367,"skY":84.367}},{"length":71,"name":"rightleg","parent":"bone","transform":{"x":14.1031,"y":27.2469,"skX":74.749,"skY":74.749}},{"length":121,"name":"head","parent":"body","transform":{"x":-11.5045,"y":13.1807,"skX":107.7156,"skY":107.7156}}],"slot":[{"name":"leftleg","parent":"leftleg"},{"name":"body","parent":"body"},{"name":"rightleg","parent":"rightleg"},{"name":"head","parent":"head"}],"skin":[{"slot":[{"name":"head","display":[{"name":"鸭子伸脖子左右走/head","transform":{"x":22.03,"y":13.35,"skX":83.39,"skY":83.39}}]},{"name":"leftleg","display":[{"name":"鸭子伸脖子左右走/leftleg","transform":{"x":30.85,"y":-12.34,"skX":-84.58,"skY":-84.58}}]},{"name":"body","display":[{"name":"鸭子伸脖子左右走/body","transform":{"x":90.06,"y":-28.18,"skX":-168.89,"skY":-168.89}}]},{"name":"rightleg","display":[{"name":"鸭子伸脖子左右走/rightleg","transform":{"x":37.86,"y":-11.63,"skX":-74.97,"skY":-74.97}}]}]}],"animation":[{"duration":144,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":72,"tweenEasing":0,"x":-259.57},{"duration":0}],"scaleFrame":[{"tweenEasing":0},{"duration":71,"tweenEasing":0,"x":-1},{"tweenEasing":0,"x":-1},{"duration":71}]},{"name":"body","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-3.61},{"duration":0}]},{"name":"leftleg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.48,"y":-15.86},{"duration":12,"tweenEasing":0,"x":15.07,"y":-0.06},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.48,"y":-15.86},{"duration":12,"tweenEasing":0,"x":15.07,"y":-0.06},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.48,"y":-15.86},{"duration":12,"tweenEasing":0,"x":15.07,"y":-0.06},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.48,"y":-15.86},{"duration":12,"tweenEasing":0,"x":15.07,"y":-0.06},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.48,"y":-15.86},{"duration":12,"tweenEasing":0,"x":15.07,"y":-0.06},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.48,"y":-15.86},{"duration":12,"tweenEasing":0,"x":15.07,"y":-0.06},{"duration":0}]},{"name":"rightleg","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-19.26,"y":0.07},{"duration":6,"tweenEasing":0,"x":-9.67,"y":-10.85},{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-19.26,"y":0.07},{"duration":6,"tweenEasing":0,"x":-9.67,"y":-10.85},{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-19.26,"y":0.07},{"duration":6,"tweenEasing":0,"x":-9.67,"y":-10.85},{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-19.26,"y":0.07},{"duration":6,"tweenEasing":0,"x":-9.67,"y":-10.85},{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-19.26,"y":0.07},{"duration":6,"tweenEasing":0,"x":-9.67,"y":-10.85},{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-19.26,"y":0.07},{"duration":6,"tweenEasing":0,"x":-9.67,"y":-10.85},{"duration":0}]},{"name":"head","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-9.94},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "f697428d-39cf-4b2d-8d49-85c508b96d9b",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"SubTexture":[{"width":73,"y":1,"height":99,"name":"鸭子伸脖子左右走/leftleg","x":418},{"width":281,"y":1,"height":203,"name":"鸭子伸脖子左右走/body","x":1},{"width":112,"y":206,"height":98,"name":"鸭子伸脖子左右走/rightleg","x":1},{"width":132,"y":1,"height":230,"name":"鸭子伸脖子左右走/head","x":284}],"height":512,"name":"鸭子","imagePath":"鸭子_tex.png"}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "89adc0d0-7e7a-444f-bd48-548ccd5fe537",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "299573b7-7d33-4268-9276-e2cd626729cf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"鸭子_tex": {
"ver": "1.0.4",
"uuid": "c671d825-dc77-4ecd-9085-6dff5ef5ecd8",
"rawTextureUuid": "299573b7-7d33-4268-9276-e2cd626729cf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10,
"offsetY": 103.5,
"trimX": 1,
"trimY": 1,
"width": 490,
"height": 303,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "ea3d4649-4982-43a9-bccd-cffeeac62a44",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"鸡蛋","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-526,"y":661,"width":277,"height":286},"bone":[{"name":"root"},{"name":"eggs","parent":"root","transform":{"x":-393.15,"y":842.85}}],"slot":[{"name":"eggs","parent":"eggs"}],"skin":[{"slot":[{"name":"eggs","display":[{"name":"鸡蛋晃动跳起再落下/eggs","transform":{"x":5.65,"y":-38.85}}]}]}],"animation":[{"duration":72,"playTimes":0,"name":"normal","bone":[{"name":"eggs","translateFrame":[{"duration":40},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"y":-62.27},{"duration":16,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"y":-62.27},{"duration":0}],"rotateFrame":[{"duration":24},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"rotate":-6.51},{"duration":4,"tweenEasing":0,"rotate":11.88},{"duration":4,"tweenEasing":0,"rotate":-6.51},{"duration":4,"tweenEasing":0,"rotate":11.88},{"duration":4,"tweenEasing":0,"rotate":1.18},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"rotate":-6.51},{"duration":4,"tweenEasing":0,"rotate":11.88},{"duration":4,"tweenEasing":0,"rotate":-6.51},{"duration":4,"tweenEasing":0,"rotate":11.88},{"duration":4,"tweenEasing":0,"rotate":1.18},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "07fab63b-dbeb-4664-9fc2-fcdc4a306891",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"鸡蛋_tex.png","height":512,"name":"鸡蛋","SubTexture":[{"width":277,"y":1,"height":286,"name":"鸡蛋晃动跳起再落下/eggs","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "240bda05-66e5-47db-ae31-f5f30ca6cfd5",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "732a7066-aa4a-48b9-93ba-6195161e67fd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"鸡蛋_tex": {
"ver": "1.0.4",
"uuid": "27a60d51-c797-4898-9a83-f4c8ab844353",
"rawTextureUuid": "732a7066-aa4a-48b9-93ba-6195161e67fd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -116.5,
"offsetY": 112,
"trimX": 1,
"trimY": 1,
"width": 277,
"height": 286,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "3039f9d2-0202-404e-b9ed-7f447ac6fa9c",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"农夫","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":221.5,"y":-678.5,"width":834,"height":1049},"bone":[{"name":"root"},{"length":206,"name":"bone","parent":"root","transform":{"x":590.95,"y":-207.9,"skX":180,"skY":180}},{"name":"bone_ikTarget1","parent":"root","transform":{"x":671.169,"y":-193.4084}},{"name":"bone_ikTarget","parent":"root","transform":{"x":671.169,"y":-193.4084}},{"name":"bone_ikTarget2","parent":"root","transform":{"x":628.1074,"y":-275.7538}},{"length":61,"name":"Shape_21","parent":"root","transform":{"x":620.15,"y":220.05,"skX":2.4733,"skY":2.4733}},{"name":"bone_ikTarget4","parent":"root","transform":{"x":705.6537,"y":87.8225}},{"name":"bone_ikTarget3","parent":"root","transform":{"x":435.6271,"y":69.8083}},{"length":227,"name":"body","parent":"bone","transform":{"x":16.45,"y":12.05,"skX":97.7436,"skY":97.7436}},{"length":143,"name":"dientes_ratrillo","parent":"bone","transform":{"x":-19.7,"y":-18.6,"skX":-114.7961,"skY":-114.7961}},{"length":141,"name":"body1","parent":"bone","transform":{"x":66.75,"y":-17.5,"skX":-70.1669,"skY":-70.1669}},{"length":133,"name":"body2","parent":"body1","transform":{"x":141.9178,"skX":-2.1392,"skY":-2.1392}},{"length":142,"name":"leftarm","parent":"body","transform":{"x":221.4262,"y":52.7459,"skX":144.9114,"skY":144.9114}},{"length":183,"name":"head","parent":"body","transform":{"x":230.8925,"y":0.6453,"skX":-11.8437,"skY":-11.8437}},{"length":165,"name":"rightarm","parent":"body","transform":{"x":221.5723,"y":-84.2228,"skX":-178.5978,"skY":-178.5978}},{"length":151,"name":"dientes_ratrillo1","parent":"dientes_ratrillo","transform":{"x":143.4227,"skX":11.4508,"skY":11.4508}},{"length":134,"name":"rightarm1","parent":"rightarm","transform":{"x":165.1495,"skX":-93.9881,"skY":-93.9881}},{"length":123,"name":"leftarm1","parent":"leftarm","transform":{"x":142.9203,"skX":51.8827,"skY":51.8827}},{"length":363,"name":"dientes_ratrillo2","parent":"rightarm1","transform":{"x":134.0427,"skX":56.6568,"skY":56.6568}}],"slot":[{"name":"body","parent":"body2"},{"name":"dientes_ratrillo","parent":"dientes_ratrillo2"},{"name":"leftarm","parent":"leftarm1"},{"name":"图层_2","parent":"body"},{"name":"rightarm","parent":"rightarm1"},{"name":"head","parent":"head"},{"name":"Shape_21","parent":"Shape_21"}],"ik":[{"chain":1,"name":"bone_ik3","bone":"dientes_ratrillo1","target":"bone_ikTarget4"},{"chain":1,"name":"bone_ik2","bone":"body2","target":"bone_ikTarget3"},{"chain":1,"name":"bone_ik","bone":"leftarm1","target":"bone_ikTarget1"},{"bendPositive":false,"chain":1,"name":"bone_ik1","bone":"rightarm1","target":"bone_ikTarget2"}],"skin":[{"slot":[{"name":"rightarm","display":[{"type":"mesh","name":"农夫戳草左戳戳右戳戳头晃动/rightarm","width":257,"height":269,"vertices":[516.9,-481.15,457.15,-429.1,431.45,-349.1,441.55,-273.8,467.2,-255.2,522.35,-236.5,671.5,-231.55,671.5,-304.05,624.1,-316.5,582.15,-307.95,543.3,-306.4,553.4,-326.6,545.65,-356.95,568.95,-370.85,538.65,-482.7],"uvs":[0.39844,0.07193,0.16595,0.26543,0.06595,0.56283,0.10525,0.84275,0.20506,0.9119,0.41965,0.98141,1,0.99981,1,0.7303,0.81556,0.68401,0.65233,0.7158,0.50117,0.72156,0.54047,0.64647,0.51031,0.53364,0.60097,0.48197,0.48307,0.06617],"triangles":[8,9,6,9,5,6,8,6,7,0,1,12,0,12,13,14,0,13,10,5,9,12,10,11,4,5,10,2,10,12,1,2,12,3,4,10,2,3,10],"weights":[2,14,0.97592,16,0.02408,2,14,0.857963,16,0.142037,2,14,0.598322,16,0.401678,2,14,0.499447,16,0.500553,2,14,0.498497,16,0.501503,2,14,0.409034,16,0.590966,2,14,0.100219,16,0.899781,2,14,0.08315,16,0.91685,2,14,0.096256,16,0.903744,2,14,0.101341,16,0.898659,2,14,0.205128,16,0.794872,2,14,0.417941,16,0.582059,2,14,0.776921,16,0.223079,1,8,1,1,8,1],"slotPose":[1,0,0,1,0,0],"bonePose":[14,-0.158947,0.987287,-0.987287,-0.158947,520.9,-450.85,16,0.995951,0.089897,-0.089897,0.995951,494.65,-287.8,8,0.13474,-0.990881,0.990881,0.13474,574.5,-219.95],"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,0],"userEdges":[]}]},{"name":"head","display":[{"name":"农夫戳草左戳戳右戳戳头晃动/head","transform":{"x":111.3,"y":-2.3,"skX":94.1,"skY":94.1}}]},{"name":"Shape_21","display":[{"name":"农夫戳草左戳戳右戳戳头晃动/Shape_21","transform":{"x":17.38,"y":-22.82,"skX":-2.47,"skY":-2.47}}]},{"name":"body","display":[{"type":"mesh","name":"农夫戳草左戳戳右戳戳头晃动/body","width":428,"height":653,"vertices":[541.23,-505.48,475.13,-455.63,435.03,-386.28,449.13,-318.03,454.53,-276.78,437.13,-179.33,412.28,-120.83,404.63,-57.98,396.03,12.57,388.38,71.02,462.13,125.17,564.98,125.17,571.48,84.02,537.98,48.27,540.13,-16.68,557.48,-48.23,579.13,-130.58,596.48,-91.58,608.33,-34.08,638.73,87.27,649.58,125.17,815.13,125.17,815.13,27.62,753.58,28.77,748.18,-68.83,717.83,-155.43,675.58,-242.18,666.83,-281.18,666.83,-328.78,675.58,-465.38,611.58,-469.58],"uvs":[0.36005,0.03423,0.20561,0.11057,0.11192,0.21677,0.14486,0.32129,0.15748,0.38446,0.11682,0.53369,0.05876,0.62328,0.04089,0.71953,0.02079,0.82757,0.00292,0.91708,0.17523,1,0.41554,1,0.43072,0.93698,0.35245,0.88224,0.35748,0.78277,0.39801,0.73446,0.4486,0.60835,0.48914,0.66807,0.51682,0.75613,0.58785,0.94196,0.6132,1,1,1,1,0.85061,0.85619,0.85237,0.84357,0.70291,0.77266,0.57029,0.67395,0.43744,0.6535,0.37772,0.6535,0.30482,0.67395,0.09564,0.52442,0.0892],"triangles":[23,20,21,23,21,22,24,18,23,18,19,23,19,20,23,25,17,24,17,18,24,26,16,25,16,17,25,30,28,29,27,16,26,1,3,30,30,3,28,3,4,28,28,4,27,4,16,27,2,3,1,4,5,16,0,1,30,6,15,16,5,6,16,13,11,12,13,10,11,7,14,15,6,7,15,8,13,14,7,8,14,8,10,13,8,9,10],"weights":[1,8,1,1,8,1,1,8,1,1,8,1,1,8,1,1,10,1,1,10,1,4,8,0.045926,11,0.479408,10,0.4315,9,0.043166,1,11,1,1,11,1,1,11,1,1,11,1,1,11,1,1,11,1,4,11,0.40838,10,0.384497,9,0.103955,15,0.103167,1,10,1,4,8,0.165934,9,0.468878,10,0.266852,15,0.098336,1,9,1,4,15,0.397227,9,0.389636,10,0.1077,11,0.105438,1,15,1,1,15,1,1,15,1,1,15,1,1,15,1,4,8,0.051694,15,0.455683,9,0.448922,10,0.043701,1,9,1,1,8,1,1,8,1,1,8,1,1,8,1,1,8,1],"slotPose":[1,0,0,1,0,0],"bonePose":[8,0.13474,-0.990881,0.990881,0.13474,574.5,-219.95,10,-0.305085,0.952325,-0.952325,-0.305085,524.2,-190.4,11,-0.34042,0.940273,-0.940273,-0.34042,480.902967,-55.248087,9,0.41939,0.907806,-0.907806,0.41939,610.65,-189.3,15,0.230819,0.972997,-0.972997,0.230819,670.8,-59.1],"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,24,24,25,25,26,26,27,27,28,28,29,29,30,30,0],"userEdges":[]}]},{"name":"dientes_ratrillo","display":[{"name":"农夫戳草左戳戳右戳戳头晃动/dientes_ratrillo","transform":{"x":185.29,"y":-12.86,"skX":-61.81,"skY":-61.81}}]},{"name":"leftarm","display":[{"type":"mesh","name":"农夫戳草左戳戳右戳戳头晃动/leftarm","width":214,"height":298,"vertices":[652.85,-454.75,617.15,-403.5,659.1,-318.05,684.7,-294.75,677.7,-255.15,628.8,-228.75,631.1,-172.05,674.6,-159.5,718.1,-159.5,723.6,-203.1,746.9,-255.9,761.6,-293.95,753.85,-349.1,701.8,-426.8],"uvs":[0.27734,0.00923,0.11051,0.18121,0.30654,0.46795,0.42617,0.54614,0.39346,0.67903,0.16495,0.76762,0.1757,0.95789,0.37897,1,0.58224,1,0.60794,0.85369,0.71682,0.67651,0.78551,0.54883,0.7493,0.36376,0.50607,0.10302],"triangles":[12,3,11,3,10,11,13,2,12,2,3,12,4,9,10,3,4,10,1,2,13,7,8,9,4,7,9,5,7,4,5,6,7,0,1,13],"weights":[1,8,1,1,8,1,2,12,0.609345,17,0.390655,2,12,0.377969,17,0.622031,2,12,0.07867,17,0.92133,2,12,0.162106,17,0.837894,2,12,0.072936,17,0.927064,2,12,0.04667,17,0.95333,2,12,0.134831,17,0.865169,2,12,0.152293,17,0.847707,2,12,0.369183,17,0.630817,2,12,0.49227,17,0.50773,2,12,0.556774,17,0.443226,2,12,0.914614,17,0.085386],"slotPose":[1,0,0,1,0,0],"bonePose":[12,0.459347,0.888257,-0.888257,0.459347,656.6,-432.25,17,-0.415292,0.909688,-0.909688,-0.415292,722.25,-305.3,8,0.13474,-0.990881,0.990881,0.13474,574.5,-219.95],"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,0],"userEdges":[]}]},{"name":"图层_2","display":[{"name":"农夫戳草左戳戳右戳戳头晃动/图层_2","transform":{"x":197.07,"y":49.9,"skX":82.26,"skY":82.26}}]}]}],"animation":[{"duration":96,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-14.88},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-14.88},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-14.88},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-14.88},{"duration":0}]},{"name":"bone_ikTarget1","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-16.11,"y":-35.81},{"duration":12,"tweenEasing":0,"x":-4.21,"y":6.92},{"duration":12,"tweenEasing":0,"x":-16.11,"y":-35.81},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-16.11,"y":-35.81},{"duration":12,"tweenEasing":0,"x":-4.21,"y":6.92},{"duration":12,"tweenEasing":0,"x":-16.11,"y":-35.81},{"duration":0}]},{"name":"bone_ikTarget2","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-6.56,"y":-34.99},{"duration":12,"tweenEasing":0,"x":1.96,"y":0.08},{"duration":12,"tweenEasing":0,"x":-6.56,"y":-34.99},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":-6.56,"y":-34.99},{"duration":12,"tweenEasing":0,"x":1.96,"y":0.08},{"duration":12,"tweenEasing":0,"x":-6.56,"y":-34.99},{"duration":0}]},{"name":"Shape_21","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"rotate":3.22},{"duration":40,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"rotate":3.22},{"duration":20}]},{"name":"body","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-8.96},{"duration":12,"tweenEasing":0,"rotate":-1.41},{"duration":12,"tweenEasing":0,"rotate":-8.96},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-8.96},{"duration":12,"tweenEasing":0,"rotate":-1.41},{"duration":12,"tweenEasing":0,"rotate":-8.96},{"duration":0}]},{"name":"body1","rotateFrame":[{"duration":96,"rotate":-2.07}]},{"name":"head","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":1.92},{"duration":12,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":1.92},{"duration":12,"tweenEasing":0,"rotate":15.3},{"duration":0}]},{"name":"body2","rotateFrame":[{"duration":96,"rotate":4.28}]},{"name":"dientes_ratrillo2","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":11.12,"y":-39.71},{"duration":12,"tweenEasing":0,"x":13.71,"y":-7.93},{"duration":12,"tweenEasing":0,"x":12.01,"y":-44.52},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":11.12,"y":-39.71},{"duration":12,"tweenEasing":0,"x":13.71,"y":-7.93},{"duration":12,"tweenEasing":0,"x":12.01,"y":-44.52},{"duration":0}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":31.64},{"duration":12,"tweenEasing":0,"rotate":17.18},{"duration":12,"tweenEasing":0,"rotate":31.64},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":31.64},{"duration":12,"tweenEasing":0,"rotate":17.18},{"duration":12,"tweenEasing":0,"rotate":31.64},{"duration":0}]}],"ik":[{"name":"bone_ik3","frame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}]},{"name":"bone_ik2","frame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}]},{"name":"bone_ik1","frame":[{"duration":48,"tweenEasing":0,"bendPositive":false},{"duration":48,"tweenEasing":0,"bendPositive":false},{"duration":0,"bendPositive":false}]},{"name":"bone_ik","frame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "db9ac426-bc0d-430c-97b8-750df4db43c8",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"imagePath":"农夫_tex.png","height":2048,"name":"农夫","SubTexture":[{"width":428,"y":348,"height":653,"name":"农夫戳草左戳戳右戳戳头晃动/body","x":1},{"width":327,"y":348,"height":496,"name":"农夫戳草左戳戳右戳戳头晃动/dientes_ratrillo","x":431},{"width":214,"y":619,"height":298,"name":"农夫戳草左戳戳右戳戳头晃动/leftarm","x":760},{"width":24,"y":846,"height":82,"name":"农夫戳草左戳戳右戳戳头晃动/图层_2","x":976},{"width":257,"y":348,"height":269,"name":"农夫戳草左戳戳右戳戳头晃动/rightarm","x":760},{"width":273,"y":846,"height":238,"name":"农夫戳草左戳戳右戳戳头晃动/head","x":431},{"width":834,"y":1,"height":345,"name":"农夫戳草左戳戳右戳戳头晃动/Shape_21","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "e9153428-8986-46f2-9d26-2e6f1c4aeb1e",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bb772e41-92a8-4829-b005-964103891491",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 2048,
"platformSettings": {},
"subMetas": {
"农夫_tex": {
"ver": "1.0.4",
"uuid": "0c9ce9d7-594d-433c-b64b-3a91a05fce04",
"rawTextureUuid": "bb772e41-92a8-4829-b005-964103891491",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -3,
"offsetY": 481.5,
"trimX": 1,
"trimY": 1,
"width": 1016,
"height": 1083,
"rawWidth": 1024,
"rawHeight": 2048,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "a743f180-4795-46dc-8b5a-a53c91c6c303",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"鱼","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":612,"y":582,"width":217,"height":205},"bone":[{"name":"root"},{"length":148,"name":"bone","parent":"root","transform":{"x":703.35,"y":688.6,"skX":1.9079,"skY":1.9079}},{"length":118,"name":"Layer_430","parent":"bone","transform":{"x":-23.7458,"y":27.5558,"skX":-53.8765,"skY":-53.8765}},{"length":24,"name":"1","parent":"bone","transform":{"x":99.5467,"y":-15.2726,"skX":-22.45,"skY":-22.45}},{"length":26,"name":"3","parent":"bone","transform":{"x":-33.5784,"y":-57.3639,"skX":154.3186,"skY":154.3186}},{"length":22,"name":"2","parent":"bone","transform":{"x":-21.9425,"y":-88.0183,"skX":-143.2084,"skY":-143.2084}},{"length":42,"name":"4","parent":"bone","transform":{"x":-66.7623,"y":47.2989,"skX":-121.404,"skY":-121.404}}],"slot":[{"name":"Layer_430","parent":"Layer_430"},{"name":"4","parent":"4"},{"name":"3","parent":"3"},{"name":"2","parent":"2"},{"name":"1","parent":"1"}],"skin":[{"slot":[{"name":"4","display":[{"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/4","transform":{"x":7.93,"y":18.79,"skX":119.5,"skY":119.5}}]},{"name":"Layer_430","display":[{"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/Layer_430","transform":{"x":43.43,"y":12.75,"skX":51.97,"skY":51.97}}]},{"name":"2","display":[{"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/2","transform":{"x":7,"y":-0.61,"skX":141.3,"skY":141.3}}]},{"name":"3","display":[{"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/3","transform":{"x":8.65,"y":0.7,"skX":-156.23,"skY":-156.23}}]},{"name":"1","display":[{"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/1","transform":{"x":6.1,"y":2.66,"skX":20.54,"skY":20.54}}]}]}],"animation":[{"duration":168,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-59.71},{"duration":18,"tweenEasing":0,"y":346.91},{"duration":0}],"rotateFrame":[{"duration":120},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":133.63},{"duration":8,"tweenEasing":0,"rotate":129.8},{"duration":10,"tweenEasing":0,"rotate":-14.85},{"duration":0}]},{"name":"1","translateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":32.14,"y":35.83},{"duration":36,"tweenEasing":0,"x":62.71,"y":-14.8},{"duration":0}]},{"name":"3","translateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-77.7,"y":18.06},{"duration":36,"tweenEasing":0,"x":-61.85,"y":4.59},{"duration":0}]},{"name":"2","translateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-48.87,"y":-38.72},{"duration":36,"tweenEasing":0,"x":-42.09,"y":-41.66},{"duration":0}]},{"name":"4","translateFrame":[{"duration":120},{"duration":6,"tweenEasing":0},{"duration":42,"tweenEasing":0,"x":16.94,"y":-17.82},{"duration":0}]}],"slot":[{"name":"Layer_430","colorFrame":[{"duration":110,"tweenEasing":0,"value":{"aM":0}},{"duration":34,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":0}]},{"name":"4","colorFrame":[{"duration":110,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":32,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":0}]},{"name":"3","colorFrame":[{"duration":110,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":32,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":0}]},{"name":"2","colorFrame":[{"duration":110,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":32,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":0}]},{"name":"1","colorFrame":[{"duration":110,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":32,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "836b38d9-903e-46a7-98a4-a92a73692141",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"鱼_tex.png","height":256,"name":"鱼","SubTexture":[{"width":181,"y":1,"height":196,"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/Layer_430","x":1},{"width":71,"y":1,"height":77,"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/4","x":184},{"width":39,"y":80,"height":28,"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/3","x":184},{"width":39,"y":110,"height":28,"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/2","x":184},{"width":38,"y":140,"height":28,"name":"鱼透明到半透明跳起再扎入水里透明出水入水有水花/1","x":184}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "bb32454f-d5d1-41d8-b261-026462149641",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4c7d0703-d7cf-42d9-be37-7621ed84fab1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 256,
"platformSettings": {},
"subMetas": {
"鱼_tex": {
"ver": "1.0.4",
"uuid": "3c3cddcc-6be2-45a9-b2a0-82c1d8289d06",
"rawTextureUuid": "4c7d0703-d7cf-42d9-be37-7621ed84fab1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 29,
"trimX": 1,
"trimY": 1,
"width": 254,
"height": 196,
"rawWidth": 256,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "111aee68-4f20-49a3-bfd1-2576024921da",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"小女孩","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-950.5,"y":-272.5,"width":544,"height":835},"bone":[{"name":"root"},{"length":119,"name":"nena","parent":"root","transform":{"x":-613.05,"y":10.75,"skX":-1.3714,"skY":-1.3714}},{"length":179,"name":"nena1","parent":"nena","transform":{"x":15.7646,"y":91.5035,"skX":-99.9417,"skY":-99.9417}},{"length":106,"name":"leftleg","parent":"nena","transform":{"x":55.1786,"y":154.0647,"skX":52.657,"skY":52.657}},{"length":106,"name":"rightleg","parent":"nena","transform":{"x":-60.6332,"y":167.7969,"skX":109.0636,"skY":109.0636}},{"length":81,"name":"rightarm","parent":"nena1","transform":{"x":169.172,"y":-41.4693,"skX":-137.802,"skY":-137.802}},{"length":164,"name":"head","parent":"nena1","transform":{"x":189.409,"y":-0.1465,"skX":-1.5624,"skY":-1.5624}},{"length":115,"name":"leftarm","parent":"nena1","transform":{"x":169.8923,"y":57.3929,"skX":-152.052,"skY":-152.052}}],"slot":[{"name":"rightleg","parent":"rightleg"},{"name":"leftleg","parent":"leftleg"},{"name":"nena","parent":"nena1"},{"name":"leftarm","parent":"leftarm"},{"name":"rightarm","parent":"rightarm"},{"name":"head","parent":"head"}],"skin":[{"slot":[{"name":"leftleg","display":[{"name":"小女孩前后送娃娃看娃娃裙子吹动/leftleg","transform":{"x":67.94,"y":4.86,"skX":-51.29,"skY":-51.29}}]},{"name":"leftarm","display":[{"name":"小女孩前后送娃娃看娃娃裙子吹动/leftarm","transform":{"x":63.22,"y":0.26,"skX":-106.64,"skY":-106.64}}]},{"name":"head","display":[{"name":"小女孩前后送娃娃看娃娃裙子吹动/head","transform":{"x":77.66,"y":-6.97,"skX":102.88,"skY":102.88}}]},{"name":"rightleg","display":[{"name":"小女孩前后送娃娃看娃娃裙子吹动/rightleg","transform":{"x":55.63,"y":14.64,"skX":-107.69,"skY":-107.69}}]},{"name":"rightarm","display":[{"name":"小女孩前后送娃娃看娃娃裙子吹动/rightarm","transform":{"x":89.12,"y":-3.73,"skX":-120.88,"skY":-120.88}}]},{"name":"nena","display":[{"name":"小女孩前后送娃娃看娃娃裙子吹动/nena","transform":{"x":-57.33,"y":-96.52,"skX":101.31,"skY":101.31}}]}]}],"animation":[{"duration":108,"playTimes":0,"name":"normal","bone":[{"name":"nena","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":10.77},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":10.77},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":10.77},{"duration":0}]},{"name":"nena1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0}]},{"name":"leftleg","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":11.57},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":11.57},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":11.57},{"duration":0}]},{"name":"rightleg","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":7.59},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":7.59},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":7.59},{"duration":0}]},{"name":"rightarm","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":11.34},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":11.34},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":11.34},{"duration":0}]},{"name":"head","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-16.93},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-16.93},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-16.93},{"duration":0}]},{"name":"leftarm","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":12.14},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":12.14},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":12.14},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "5944f89e-5b70-4b17-af99-09fa63c15f23",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"imagePath":"小女孩_tex.png","height":1024,"name":"小女孩","SubTexture":[{"width":108,"y":774,"height":128,"name":"小女孩前后送娃娃看娃娃裙子吹动/rightleg","x":631},{"width":100,"y":774,"height":136,"name":"小女孩前后送娃娃看娃娃裙子吹动/leftleg","x":741},{"width":544,"y":1,"height":771,"name":"小女孩前后送娃娃看娃娃裙子吹动/nena","x":1},{"width":106,"y":774,"height":158,"name":"小女孩前后送娃娃看娃娃裙子吹动/leftarm","x":523},{"width":214,"y":774,"height":244,"name":"小女孩前后送娃娃看娃娃裙子吹动/rightarm","x":307},{"width":304,"y":774,"height":229,"name":"小女孩前后送娃娃看娃娃裙子吹动/head","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "2368f043-d708-4d13-886b-6e7d83f98c30",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "eec70003-218d-4571-8bf0-75ce87d11707",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"小女孩_tex": {
"ver": "1.0.4",
"uuid": "7e97392a-4c5e-45ef-8120-9922ff5f42ff",
"rawTextureUuid": "eec70003-218d-4571-8bf0-75ce87d11707",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -91,
"offsetY": 2.5,
"trimX": 1,
"trimY": 1,
"width": 840,
"height": 1017,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "bb9337f7-de35-4cb4-8646-37afa1807449",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"母鸡","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-1114.37,"y":58,"width":1007.37,"height":596.06},"bone":[{"name":"root"},{"length":122,"name":"bone","parent":"root","transform":{"x":-195.35,"y":161.6,"skX":-1.9653,"skY":-1.9653}},{"length":122,"name":"bone2","parent":"root","transform":{"x":-661.2299,"y":576.0115,"skX":-1.9653,"skY":-1.9653,"scX":-1}},{"length":122,"name":"bone1","parent":"root","transform":{"x":-961.7156,"y":480.026,"skX":-1.9653,"skY":-1.9653}},{"length":33,"name":"rightleg","parent":"bone","transform":{"x":2.3376,"y":36.8518,"skX":88.7759,"skY":88.7759}},{"length":33,"name":"rightleg1","parent":"bone1","transform":{"x":2.3376,"y":36.8518,"skX":88.7759,"skY":88.7759}},{"length":117,"name":"body","parent":"bone","transform":{"x":-47.3939,"y":-8.2802,"skX":-1.2469,"skY":-1.2469}},{"length":34,"name":"leftleg","parent":"bone","transform":{"x":24.0866,"y":35.7971,"skX":88.8869,"skY":88.8869}},{"length":34,"name":"leftleg2","parent":"bone2","transform":{"x":24.0866,"y":35.7971,"skX":88.8869,"skY":88.8869}},{"length":34,"name":"leftleg1","parent":"bone1","transform":{"x":24.0866,"y":35.7971,"skX":88.8869,"skY":88.8869}},{"length":117,"name":"body1","parent":"bone1","transform":{"x":-47.3939,"y":-8.2802,"skX":-1.2469,"skY":-1.2469}},{"length":117,"name":"body2","parent":"bone2","transform":{"x":-47.3939,"y":-8.2802,"skX":-1.2469,"skY":-1.2469}},{"length":33,"name":"rightleg2","parent":"bone2","transform":{"x":2.3376,"y":36.8518,"skX":88.7759,"skY":88.7759}},{"length":64,"name":"chi","parent":"body","transform":{"x":23.5555,"y":-10.146,"skX":-58.7652,"skY":-58.7652}},{"length":64,"name":"head1","parent":"body1","transform":{"x":-10.8666,"y":-0.0089,"skX":179.943,"skY":179.943}},{"length":64,"name":"head","parent":"body","transform":{"x":-10.8666,"y":-0.0089,"skX":179.943,"skY":179.943}},{"length":64,"name":"chi1","parent":"body1","transform":{"x":23.5555,"y":-10.146,"skX":-58.7652,"skY":-58.7652}},{"length":64,"name":"head2","parent":"body2","transform":{"x":-10.8666,"y":-0.0089,"skX":179.943,"skY":179.943}},{"length":64,"name":"chi2","parent":"body2","transform":{"x":23.5555,"y":-10.146,"skX":-58.7652,"skY":-58.7652}}],"slot":[{"name":"body","parent":"body"},{"name":"chi","parent":"chi"},{"name":"leftleg","parent":"leftleg"},{"name":"rightleg","parent":"rightleg"},{"name":"head","parent":"head"},{"name":"body1","parent":"body1"},{"name":"chi1","parent":"chi1"},{"name":"leftleg1","parent":"leftleg1"},{"name":"rightleg1","parent":"rightleg1"},{"name":"head1","parent":"head1"},{"name":"body2","parent":"body2"},{"name":"chi2","parent":"chi2"},{"name":"leftleg2","parent":"leftleg2"},{"name":"rightleg2","parent":"rightleg2"},{"name":"head2","parent":"head2"}],"skin":[{"slot":[{"name":"body","display":[{"name":"三只母鸡左啄右啄/body","transform":{"x":51.12,"y":-18.61,"skX":3.21,"skY":3.21}}]},{"name":"head","display":[{"name":"三只母鸡左啄右啄/head","transform":{"x":40.4,"y":-3.15,"skX":-176.73,"skY":-176.73}}]},{"name":"rightleg","display":[{"name":"三只母鸡左啄右啄/rightleg","transform":{"x":18.08,"y":1.76,"skX":-86.81,"skY":-86.81}}]},{"name":"leftleg2","display":[{"name":"三只母鸡左啄右啄/leftleg","transform":{"x":17.45,"y":0.39,"skX":-86.92,"skY":-86.92}}]},{"name":"chi","display":[{"name":"三只母鸡左啄右啄/chi","transform":{"x":28.82,"y":-2.25,"skX":61.98,"skY":61.98}}]},{"name":"leftleg1","display":[{"name":"三只母鸡左啄右啄/leftleg","transform":{"x":17.45,"y":0.39,"skX":-86.92,"skY":-86.92}}]},{"name":"head1","display":[{"name":"三只母鸡左啄右啄/head","transform":{"x":40.4,"y":-3.15,"skX":-176.73,"skY":-176.73}}]},{"name":"chi2","display":[{"name":"三只母鸡左啄右啄/chi","transform":{"x":28.82,"y":-2.25,"skX":61.98,"skY":61.98}}]},{"name":"body1","display":[{"name":"三只母鸡左啄右啄/body","transform":{"x":51.12,"y":-18.61,"skX":3.21,"skY":3.21}}]},{"name":"head2","display":[{"name":"三只母鸡左啄右啄/head","transform":{"x":40.4,"y":-3.15,"skX":-176.73,"skY":-176.73}}]},{"name":"rightleg2","display":[{"name":"三只母鸡左啄右啄/rightleg","transform":{"x":18.08,"y":1.76,"skX":-86.81,"skY":-86.81}}]},{"name":"leftleg","display":[{"name":"三只母鸡左啄右啄/leftleg","transform":{"x":17.45,"y":0.39,"skX":-86.92,"skY":-86.92}}]},{"name":"rightleg1","display":[{"name":"三只母鸡左啄右啄/rightleg","transform":{"x":18.08,"y":1.76,"skX":-86.81,"skY":-86.81}}]},{"name":"body2","display":[{"name":"三只母鸡左啄右啄/body","transform":{"x":51.12,"y":-18.61,"skX":3.21,"skY":3.21}}]},{"name":"chi1","display":[{"name":"三只母鸡左啄右啄/chi","transform":{"x":28.82,"y":-2.25,"skX":61.98,"skY":61.98}}]}]}],"animation":[{"duration":108,"playTimes":0,"name":"normal","bone":[{"name":"body","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":0}]},{"name":"chi","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":0}]},{"name":"head","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":10.51},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":5.87},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":0}]},{"name":"body1","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":0}]},{"name":"head1","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":10.51},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":5.87},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":0}]},{"name":"chi1","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":0}]},{"name":"body2","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.8},{"duration":8}]},{"name":"head2","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":10.51},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":5.87},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-26.39},{"duration":8}]},{"name":"chi2","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":9.59},{"duration":8}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "9f8f3a2e-e2dd-4d29-92ac-6fb9d1279bca",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"SubTexture":[{"width":172,"y":1,"height":151,"name":"三只母鸡左啄右啄/body","x":1},{"width":103,"y":154,"height":98,"name":"三只母鸡左啄右啄/chi","x":111},{"width":27,"y":1,"height":48,"name":"三只母鸡左啄右啄/leftleg","x":216},{"width":27,"y":1,"height":45,"name":"三只母鸡左啄右啄/rightleg","x":175},{"width":108,"y":154,"height":98,"name":"三只母鸡左啄右啄/head","x":1}],"height":256,"name":"母鸡","imagePath":"母鸡_tex.png"}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "bf5fa08c-7de5-4bf0-857b-3b32f75a54f8",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d57aa50b-41e6-41d1-a78c-e2f79b25333f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 256,
"platformSettings": {},
"subMetas": {
"母鸡_tex": {
"ver": "1.0.4",
"uuid": "f6491149-e8e6-4ac0-ad0a-2c3cc2ff430b",
"rawTextureUuid": "d57aa50b-41e6-41d1-a78c-e2f79b25333f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -6,
"offsetY": 1.5,
"trimX": 1,
"trimY": 1,
"width": 242,
"height": 251,
"rawWidth": 256,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "1380d965-0cfd-45d1-96d3-6894382a64fe",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"房子","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-571.5,"y":-475.5,"width":1143,"height":951},"bone":[{"name":"root"},{"length":209,"name":"house1","parent":"root","transform":{"x":-185.9,"y":227.8,"skX":-87.8536,"skY":-87.8536}},{"length":130,"name":"house2","parent":"root","transform":{"x":356.1,"y":-28.8,"skX":-90,"skY":-90}}],"slot":[{"name":"house2","parent":"house2"},{"name":"house1","parent":"house1"}],"skin":[{"slot":[{"name":"house1","display":[{"name":"两个房子依次放大缩小/house1","transform":{"x":128.28,"y":170.72,"skX":87.85,"skY":87.85}}]},{"name":"house2","display":[{"name":"两个房子依次放大缩小/house2","transform":{"x":37.7,"y":1.4,"skX":90,"skY":90}}]}]}],"animation":[{"duration":192,"playTimes":0,"name":"normal","bone":[{"name":"house1","scaleFrame":[{"duration":120},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":36}]},{"name":"house2","scaleFrame":[{"duration":156},{"duration":16,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2492,"height":3308}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "7bb49576-efa4-4634-ae72-9a1691dea9f6",
"subMetas": {}
}
\ No newline at end of file
{"width":2048,"SubTexture":[{"width":428,"y":1,"height":818,"name":"两个房子依次放大缩小/house2","x":1125},{"width":1122,"y":1,"height":739,"name":"两个房子依次放大缩小/house1","x":1}],"height":1024,"name":"房子","imagePath":"房子_tex.png"}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "935da5b5-62fd-4317-b654-771501096d80",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "35227886-dd7b-4268-981a-4a2f4a44844c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2048,
"height": 1024,
"platformSettings": {},
"subMetas": {
"房子_tex": {
"ver": "1.0.4",
"uuid": "8fe204e5-6f50-46be-8d2a-2a81f9fbad05",
"rawTextureUuid": "35227886-dd7b-4268-981a-4a2f4a44844c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -247,
"offsetY": 102,
"trimX": 1,
"trimY": 1,
"width": 1552,
"height": 818,
"rawWidth": 2048,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "1d1b55f6-522b-4095-bc6c-fdeeefe815e1",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"name":"mao","version":"5.5","armature":[{"name":"Armature","slot":[{"name":"影子","color":{},"parent":"root"},{"name":"尾巴","color":{},"z":1,"parent":"尾巴2"},{"name":"右腿","color":{},"z":2,"parent":"右腿"},{"name":"左腿","color":{},"z":3,"parent":"左腿"},{"name":"右手","color":{},"z":4,"parent":"右手2"},{"name":"左手","color":{},"z":5,"parent":"左手2"},{"name":"左手伸直","color":{},"z":6,"parent":"左手"},{"name":"右手伸直","color":{},"z":7,"parent":"右手"},{"name":"身体","color":{},"z":8,"parent":"bone"},{"name":"领带","color":{},"z":9,"parent":"领带2"},{"name":"右耳","color":{},"z":10,"parent":"右耳"},{"name":"左耳","color":{},"z":11,"parent":"左耳"},{"name":"组_1","color":{},"z":12,"parent":"bone1"},{"name":"右眼","color":{},"z":13,"parent":"右眼"},{"name":"右眉毛","color":{},"z":14,"parent":"右眉毛"},{"name":"左眼","color":{},"z":15,"parent":"左眼"},{"name":"左眉毛","color":{},"z":16,"parent":"左眉毛"},{"name":"眼镜","color":{},"z":17,"parent":"眼镜"},{"name":"胡子","color":{},"z":18,"parent":"胡子1"},{"name":"鼻子","color":{},"z":19,"parent":"鼻子"},{"name":"嘴","color":{},"z":20,"parent":"嘴"},{"name":"帽子","color":{},"z":21,"parent":"帽子"}],"defaultActions":[{"gotoAndPlay":"begin"}],"aabb":{"x":710.308561974626,"height":483.5647539622176,"y":285.4193106747044,"width":362.6105263157899},"canvas":{"x":0,"height":1600,"y":0,"width":2176},"skin":[{"name":"","slot":[{"name":"左耳","display":[{"name":"猫01/左耳","transform":{"x":7.2491,"skY":127.651,"y":4.5192,"skX":127.651},"type":"image","path":"猫01/左耳"}]},{"name":"影子","display":[{"name":"猫01/影子","transform":{"x":884.8534,"y":735.9841},"type":"image","path":"猫01/影子"}]},{"name":"眼镜","display":[{"name":"猫01/眼镜","transform":{"x":-1.5367,"skY":97.8429,"y":2.3624,"skX":97.8429},"type":"image","path":"猫01/眼镜"}]},{"name":"左手伸直","display":[{"name":"猫01伸/左手伸直","transform":{"x":-0.9077,"skY":-128.9072,"y":53.8063,"skX":-128.9072},"type":"image","path":"猫01伸/左手伸直"}]},{"name":"胡子","display":[{"bonePose":[24,-0.9086924368221263,0.41746623248146225,-0.41746623248146225,-0.9086924368221263,0,-54.9,25,0.9915333108690438,0.12985258348247164,-0.12985258348247164,0.9915333108690438,34.7,-61.65],"userEdges":[],"slotPose":[0.9999999999999999,-2.498001805406602e-16,2.498001805406602e-16,0.9999999999999999,21.000000000000007,-42.499999999999986],"weights":[2,24,0.5957227179303393,25,0.4042772820696607,1,24,1,1,24,1,1,24,1,1,24,1,2,24,0.5465316356128019,25,0.4534683643871981,1,25,1,1,25,1,1,25,1,1,25,1,1,25,1],"transform":{"x":-11.0973,"skY":-7.4611,"y":20.7668,"skX":-7.4611},"type":"mesh","width":176,"name":"猫01/胡子","uvs":[0.47727,0.42941,0.14858,0.99941,0,0.99941,0,0.25294,0.16619,0.11824,0.46989,0.26824,0.62784,0.07647,0.83381,0,1,0,1,0.81412,0.76108,0.56471],"height":85,"vertices":[-4,-6,-61.85,42.45,-88,42.45,-88,-21,-58.75,-32.45,-5.3,-19.7,22.5,-36,58.75,-42.5,88,-42.5,88,26.7,45.95,5.5],"path":"猫01/胡子","triangles":[10,9,8,7,10,8,6,10,7,6,0,10,5,0,6,5,4,0,4,1,0,3,2,1,3,1,4],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,0]}]},{"name":"鼻子","display":[{"name":"猫01/鼻子","transform":{"x":0.6893,"skY":62.2415,"y":-0.1933,"skX":62.2415},"type":"image","path":"猫01/鼻子"}]},{"name":"左手","display":[{"bonePose":[2,0.10006862050548088,-0.9949805380961629,0.9949805380961629,0.10006862050548088,-26.4,128.95,8,-0.628061234545813,0.7781639195316045,-0.7781639195316045,-0.628061234545813,-66.7,22,19,-0.564293574788866,-0.8255742010576654,0.8255742010576654,-0.564293574788866,-98.5,61.400000000000006,27,-0.9634528338167091,-0.267878026367511,0.267878026367511,-0.9634528338167091,-114.05000000000001,38.650000000000006],"userEdges":[],"slotPose":[0.9999999999999998,4.440892098500626e-16,-4.440892098500626e-16,0.9999999999999998,-116,41.99999999999999],"weights":[1,27,1,1,27,1,2,27,0.52,19,0.48,3,19,0.5,8,0.29,27,0.21,2,19,0.53,8,0.47000000000000003,2,19,0.49,8,0.51,1,2,1,1,2,1,1,2,1,2,2,0.64,8,0.36,2,8,0.81,2,0.19,2,19,0.49,8,0.51,2,19,0.73,8,0.27,2,27,0.52,19,0.48,1,27,1,1,27,1,1,27,1],"transform":{"x":0.9813,"skY":164.462,"y":-3.7499,"skX":164.462},"type":"mesh","width":124,"name":"猫01/左手","uvs":[0,0.44257,0.07621,0.56284,0.37742,0.60135,0.41734,0.83581,0.53871,1,0.66532,1,0.87742,0.81351,1,0.36622,1,0,0.84556,0,0.70887,0.18176,0.61815,0.30878,0.59758,0.26622,0.49274,0.10338,0.37379,0.05878,0.26774,0,0,0],"height":74,"vertices":[-62,-4.25,-52.55,4.65,-15.2,7.5,-10.25,24.85,4.8,37,20.5,37,46.8,23.2,62,-9.9,62,-37,42.85,-37,25.9,-23.55,14.65,-14.15,12.1,-17.3,-0.9,-29.35,-15.65,-32.65,-28.8,-37,-62,-37],"path":"猫01/左手","triangles":[10,6,7,9,10,7,9,7,8,10,11,6,11,5,6,3,4,11,2,3,11,11,4,5,12,2,11,13,2,12,14,2,13,14,15,2,15,1,2,0,1,15,16,0,15],"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":"猫01/左眼","transform":{"x":2.2392,"skY":103.3513,"y":5.7217,"skX":103.3513},"type":"image","path":"猫01/左眼"}]},{"name":"身体","display":[{"bonePose":[2,0.10006862050548088,-0.9949805380961629,0.9949805380961629,0.10006862050548088,-26.4,128.95,5,-0.23092160580048127,-0.9729723593065361,0.9729723593065361,-0.23092160580048127,5.200000000000003,5.750000000000014],"userEdges":[],"slotPose":[1,0,0,1,-17,62],"weights":[1,5,1,1,5,1,2,2,0.6890456427703172,5,0.31095435722968284,2,2,0.8737792266327024,5,0.12622077336729756,2,2,0.9246026735291119,5,0.0753973264708881,2,2,0.8441279451809226,5,0.15587205481907737,2,2,0.7438188647372951,5,0.25618113526270503,2,2,0.458852511481229,5,0.541147488518771,1,5,1,1,5,1],"transform":{"x":10,"y":-38.75},"type":"mesh","width":122,"name":"猫01/身体","uvs":[0.45041,0.00556,0.12418,0.12861,0.0168,0.3625,0,0.80194,0.09139,1,0.9123,1,1,0.80194,1,0.41944,1,0.10028,0.82377,0],"height":180,"vertices":[-6.05,-89,-45.85,-66.85,-58.95,-24.75,-61,54.35,-49.85,90,50.3,90,61,54.35,61,-14.5,61,-71.95,39.5,-90],"path":"猫01/身体","triangles":[1,2,0,9,0,7,0,2,7,2,3,7,9,7,8,4,5,6,3,4,6,7,3,6],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,0]}]},{"name":"尾巴","display":[{"bonePose":[2,0.10006862050548088,-0.9949805380961629,0.9949805380961629,0.10006862050548088,-26.4,128.95,7,-0.9857652909736379,0.1681273062642085,-0.1681273062642085,-0.9857652909736379,-65.55000000000001,142.15000000000003,17,0.11417268347300655,-0.9934609193866524,0.9934609193866524,0.11417268347300655,-127.69999999999999,152.75000000000003,26,-0.793406064886026,-0.6086927108172653,0.6086927108172653,-0.793406064886026,-120.50000000000001,90.10000000000002,29,-0.9773007365750258,0.21185672113461934,-0.21185672113461934,-0.9773007365750258,-161.95000000000002,58.3],"userEdges":[],"slotPose":[1,-6.661338147750939e-16,6.661338147750939e-16,1,-133.49999999999997,108.50000000000007],"weights":[1,29,1,4,29,0.5227016984146547,26,0.43202636408426703,17,0.03465313859056454,7,0.010618798910513497,2,26,0.48,17,0.52,1,17,1,4,17,0.4911620289380977,7,0.486310553875708,26,0.015607726312633907,29,0.006919690873560398,4,17,0.4935498145297986,7,0.4918862208015806,26,0.010039731191844524,29,0.004524233476776202,1,7,1,1,7,1,1,2,1,1,2,1,1,2,1,1,7,1,1,7,1,4,7,0.7433172546809301,17,0.24222335523992874,26,0.01106360379462275,29,0.0033957862845183373,1,17,1,2,26,0.48,17,0.52,1,26,1,4,29,0.7305281686669947,26,0.2600263049428544,17,0.007092878355418108,7,0.002352648034732981,1,29,1],"transform":{"x":-0.8857,"skY":142.505,"y":-22.5117,"skX":142.505},"type":"mesh","width":175,"name":"猫01/尾巴","uvs":[0.00514,0.23853,0.31057,0.16835,0.45657,0.27477,0.50629,0.53807,0.46914,0.88945,0.52057,1,0.69714,1,0.86914,0.96422,1,0.81972,1,0.62844,0.92057,0.63899,0.82286,0.75,0.68286,0.82752,0.60543,0.82477,0.63114,0.57706,0.61057,0.2,0.45143,0,0.28571,0,0,0],"height":109,"vertices":[-86.6,-28.5,-33.15,-36.15,-7.6,-24.55,1.1,4.15,-5.4,42.45,3.6,54.5,34.5,54.5,64.6,50.6,87.5,34.85,87.5,14,73.6,15.15,56.5,27.25,32,35.7,18.45,35.4,22.95,8.4,19.35,-32.7,-8.5,-54.5,-37.5,-54.5,-87.5,-54.5],"path":"猫01/尾巴","triangles":[10,11,8,11,7,8,10,8,9,12,6,11,11,6,7,15,3,14,12,13,6,13,5,6,2,3,15,3,13,14,16,2,15,4,5,13,3,4,13,16,1,2,17,1,16,17,0,1,18,0,17],"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":"猫01/右腿","transform":{"x":23.5727,"skY":-75.4548,"y":-10.6202,"skX":-75.4548},"type":"image","path":"猫01/右腿"}]},{"name":"组_1","display":[{"name":"猫01/组_1","transform":{"x":89.5565,"skY":103.3513,"y":0.4939,"skX":103.3513},"type":"image","path":"猫01/组_1"}]},{"name":"左眉毛","display":[{"name":"猫01/左眉毛","transform":{"x":3.113,"skY":19.409,"y":1.998,"skX":19.409},"type":"image","path":"猫01/左眉毛"}]},{"name":"领带","display":[{"bonePose":[2,0.10006862050548088,-0.9949805380961629,0.9949805380961629,0.10006862050548088,-26.4,128.95,6,-3.885780586188048e-16,1,-1,-3.885780586188048e-16,-5.299999999999999,16.85000000000001,15,-0.02855977389887697,0.9995920864606948,-0.9995920864606948,-0.02855977389887697,-5.299999999999999,81.95,5,-0.23092160580048127,-0.9729723593065361,0.9729723593065361,-0.23092160580048127,5.200000000000003,5.750000000000014],"userEdges":[],"slotPose":[1.0000000000000002,6.938893903907228e-18,-6.938893903907228e-18,1.0000000000000002,-11.999999999999996,70.00000000000001],"weights":[1,2,1,1,2,1,1,2,1,1,5,1,1,5,1,1,5,1,1,2,1,1,2,1,2,15,0.5404804692408611,6,0.4595195307591388,2,15,0.9385812044988878,6,0.061418795501112136,2,15,0.9420585956610453,6,0.05794140433895465,2,15,0.5420950026535496,6,0.45790499734645035],"transform":{"x":-11.7538,"skY":-91.6366,"y":7.0386,"skX":-91.6366},"type":"mesh","width":120,"name":"猫01/领带","uvs":[0.46583,0.18397,0.25292,0.19872,0,0.15897,0,0.00288,0.57875,0,1,0,1,0.15417,0.65917,0.16891,0.6625,0.61314,0.685,1,0.39792,1,0.43375,0.61314],"height":156,"vertices":[-4.1,-49.3,-29.65,-47,-60,-53.2,-60,-77.55,9.45,-78,60,-78,60,-53.95,19.1,-51.65,19.5,17.65,22.2,78,-12.25,78,-7.95,17.65],"path":"猫01/领带","triangles":[4,7,5,5,7,6,0,11,8,0,8,7,4,0,7,8,11,9,11,10,9,1,0,4,3,1,4,3,2,1],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,0]}]},{"name":"右手","display":[{"bonePose":[2,0.10006862050548088,-0.9949805380961629,0.9949805380961629,0.10006862050548088,-26.4,128.95,9,0.6141409115204024,0.7891963892447109,-0.7891963892447109,0.6141409115204024,31.80000000000001,23.89999999999999,21,-0.8582390203981698,0.5132502156511869,-0.5132502156511869,-0.8582390203981698,74.25,78.44999999999999,28,0.7318029361026762,0.6815162967321489,-0.6815162967321489,0.7318029361026762,33.70000000000001,102.69999999999999],"userEdges":[],"slotPose":[1,1.6653345369377348e-16,-1.6653345369377348e-16,1,56.49999999999999,72],"weights":[3,9,0.9332953684052754,21,0.03988697109198161,28,0.026817660502743007,1,2,1,1,2,1,1,9,1,2,9,0.56,21,0.44,1,21,1,2,28,0.55,21,0.45,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,2,28,0.55,21,0.45,1,21,1,1,21,1,3,21,0.4586177517259628,9,0.4535368207985339,28,0.0878454274755032,2,9,0.56,21,0.44,1,9,1,1,9,1,1,9,1,1,9,1],"transform":{"x":-4.2374,"skY":-42.9622,"y":-38.0049,"skX":-42.9622},"type":"mesh","width":69,"name":"猫01/右手","uvs":[0.26884,0,0,0,0,0.39918,0.1587,0.41721,0.37391,0.55164,0.16449,0.59098,0.00507,0.70041,0,0.77664,0.03116,0.8832,0.3,1,0.72101,1,0.77536,0.91557,0.71957,0.84959,0.61522,0.81107,0.46667,0.81311,0.43913,0.81557,0.42029,0.80246,0.66667,0.78443,0.90507,0.73402,1,0.65492,1,0.58811,1,0.47828,0.92319,0.34221,0.70217,0.1791,0.36522,0.02336],"height":122,"vertices":[-15.95,-61,-34.5,-61,-34.5,-12.3,-23.55,-10.1,-8.7,6.3,-23.15,11.1,-34.15,24.45,-34.5,33.75,-32.35,46.75,-13.8,61,15.25,61,19,50.7,15.15,42.65,7.95,37.95,-2.3,38.2,-4.2,38.5,-5.5,36.9,11.5,34.7,27.95,28.55,34.5,18.9,34.5,10.75,34.5,-2.65,29.2,-19.25,13.95,-39.15,-9.3,-58.15],"path":"猫01/右手","triangles":[22,4,21,17,18,20,4,17,20,21,4,20,18,19,20,23,4,22,3,4,23,12,10,11,4,16,17,13,14,10,14,9,10,13,10,12,15,9,14,24,3,23,1,3,0,0,3,24,5,6,16,8,9,16,4,5,16,16,9,15,6,7,16,7,8,16,1,2,3],"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,24,24,0]}]},{"name":"右眼","display":[{"name":"猫01/右眼","transform":{"x":1.7338,"skY":103.3513,"y":5.0365,"skX":103.3513},"type":"image","path":"猫01/右眼"}]},{"name":"右眉毛","display":[{"name":"猫01/右眉毛","transform":{"x":8.65,"y":-0.05},"type":"image","path":"猫01/右眉毛"}]},{"name":"左腿","display":[{"name":"猫01/左腿","transform":{"x":16.201,"skY":-91.0238,"y":2.711,"skX":-91.0238},"type":"image","path":"猫01/左腿"}]},{"name":"嘴","display":[{"name":"猫01/嘴","transform":{"x":2.7,"y":0.4},"type":"image","path":"猫01/嘴"}]},{"name":"右耳","display":[{"name":"猫01/右耳","transform":{"x":24.8427,"skY":78.1755,"y":-7.2444,"skX":78.1755},"type":"image","path":"猫01/右耳"}]},{"name":"帽子","display":[{"name":"猫01/帽子","transform":{"x":12.1614,"skY":20.7126,"y":6.1486,"skX":20.7126},"type":"image","path":"猫01/帽子"}]},{"name":"右手伸直","display":[{"name":"猫01伸/右手伸直","transform":{"x":-6.0558,"skY":-52.1105,"y":-53.1162,"skX":-52.1105},"type":"image","path":"猫01伸/右手伸直"}]}]}],"animation":[{"name":"begin","frame":[],"bone":[{"name":"root","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"bone","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"领带","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":1.7096,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":1.7096,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":24},{"tweenEasing":0,"y":-2.769,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"y":-2.769,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左腿","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右腿","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":10.0266,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":10.0266,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-1.298,"y":-9.9228,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-1.298,"y":-9.9228,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-6.0264,"tweenEasing":0},{"duration":12,"rotate":-7.2656,"tweenEasing":0},{"duration":12,"rotate":-1.7867,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-6.0264,"tweenEasing":0},{"duration":12,"rotate":-7.2656,"tweenEasing":0},{"duration":12,"rotate":-1.7867,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.8988,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.8988,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":27.8631,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":27.8631,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.1516,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.1516,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"眼镜","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"帽子","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.153,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.153,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"鼻子","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左眉毛","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左眼","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"rotate":4.3629,"tweenEasing":0},{"duration":12,"rotate":-7.231,"tweenEasing":0},{"duration":12,"rotate":-16.1684,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":4.3629,"tweenEasing":0},{"duration":12,"rotate":-7.231,"tweenEasing":0},{"duration":12,"rotate":-16.1684,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右眼","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":36,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"尾巴1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":7.109,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":7.109,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右眉毛","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-20.969,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-20.969,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"嘴","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":2.3286,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":2.3286,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-13.8027,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-13.8027,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":25.9315,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":25.9315,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":6.5829,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":6.5829,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-6.2263,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-6.2263,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"duration":24},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":8.6942,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":8.6942,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.1888,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.1888,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]}],"playTimes":0,"ffd":[],"ik":[],"slot":[{"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":"组_1","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":[]},{"name":"影子","displayFrame":[],"colorFrame":[]},{"name":"身体","displayFrame":[],"colorFrame":[]},{"name":"左手伸直","displayFrame":[{"duration":96,"value":-1}],"colorFrame":[]},{"name":"右手伸直","displayFrame":[{"duration":96,"value":-1}],"colorFrame":[]}],"duration":96},{"name":"right","frame":[],"bone":[{"name":"root","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"bone","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"领带","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":-4.3907,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":20},{"tweenEasing":0,"y":-7.3176,"duration":20},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左腿","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":5.635,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":20},{"tweenEasing":0,"x":-5.3204,"y":0.1256,"duration":20},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"右腿","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":5.635,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":20},{"tweenEasing":0,"x":-8.6457,"y":0.2041,"duration":20},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":10.6931,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":20},{"tweenEasing":0,"x":2.133,"y":-0.0504,"duration":20},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":13.0682,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":-19.1744,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":-7.5433,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":25.5925,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"眼镜","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":5},{"tweenEasing":0,"x":10.1211,"y":2.1099,"duration":5},{"tweenEasing":0,"duration":30},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"帽子","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":13.1211,"y":2.3609,"duration":10},{"tweenEasing":0,"x":-4.4837,"y":-0.0621,"duration":10},{"tweenEasing":0,"x":5.8327,"y":1.4218,"duration":10},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"鼻子","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左眉毛","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":5},{"tweenEasing":0,"x":5.3923,"y":1.1241,"duration":5},{"tweenEasing":0,"x":-2.6063,"y":-0.337,"duration":30},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左眼","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":1.2,"y":1.2,"duration":10},{"tweenEasing":0,"x":1.2,"y":1.2,"duration":10},{"tweenEasing":0,"x":1.2,"y":1.2,"duration":10},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":-6.3333,"tweenEasing":0},{"duration":10,"rotate":7.1423,"tweenEasing":0},{"duration":10,"rotate":10.2162,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"右眼","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":1.2,"y":1.2,"duration":10},{"tweenEasing":0,"x":1.2,"y":1.2,"duration":10},{"tweenEasing":0,"x":1.2,"y":1.2,"duration":10},{"duration":0}]},{"name":"尾巴1","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":-26.3138,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"右眉毛","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":5},{"tweenEasing":0,"x":5.3923,"y":1.1241,"duration":5},{"tweenEasing":0,"x":-2.6063,"y":-0.337,"duration":30},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":-49.9219,"tweenEasing":0},{"duration":20,"rotate":-39.9594,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"嘴","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":5},{"tweenEasing":0,"y":1.2,"duration":5},{"tweenEasing":0,"y":0.2,"duration":5},{"tweenEasing":0,"y":1.2,"duration":5},{"tweenEasing":0,"y":0.2,"duration":7},{"tweenEasing":0,"y":1.2,"duration":7},{"tweenEasing":0,"y":0.2,"duration":6},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":30,"rotate":-64.9909,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":-14.1404,"tweenEasing":0},{"duration":10,"rotate":-5.0194,"tweenEasing":0},{"duration":10,"rotate":-17.9662,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":16.8101,"tweenEasing":0},{"duration":10,"rotate":5.1383,"tweenEasing":0},{"duration":10,"rotate":20.1338,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":43.9461,"tweenEasing":0},{"duration":20,"rotate":22.7134,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":-19.9919,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":16.3186,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"rotate":24.2661,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":40,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"rotate":17.0811,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":40},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":40},{"duration":0}]}],"playTimes":0,"ffd":[],"ik":[],"slot":[{"name":"尾巴","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"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":"组_1","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":[]},{"name":"影子","displayFrame":[],"colorFrame":[]},{"name":"身体","displayFrame":[],"colorFrame":[]},{"name":"左手伸直","displayFrame":[{"duration":40}],"colorFrame":[]},{"name":"右手伸直","displayFrame":[],"colorFrame":[]}],"duration":40},{"name":"normal","frame":[],"bone":[{"name":"root","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"bone","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"领带","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":18},{"tweenEasing":0,"y":-2.0329,"duration":18},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左腿","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":18},{"tweenEasing":0,"x":-3.3712,"y":0.3391,"duration":18},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右腿","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":18},{"tweenEasing":0,"x":-3.3712,"y":0.3391,"duration":18},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":5.0458,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":4.4081,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-9.2734,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-3.9571,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-4.1269,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"眼镜","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"帽子","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"鼻子","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左眉毛","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左眼","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":9},{"tweenEasing":0,"x":0.2,"duration":9},{"tweenEasing":0,"duration":18},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":6.5924,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右眼","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":9},{"tweenEasing":0,"x":0.2,"duration":9},{"tweenEasing":0,"duration":18},{"duration":0}]},{"name":"尾巴1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":5.0456,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右眉毛","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"嘴","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-0.5975,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-5.8134,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":5.67,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-4.6385,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-4.7872,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":3.4123,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":7.7593,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"rotate":-4.5584,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":36},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":36},{"duration":0}]}],"playTimes":0,"ffd":[],"ik":[],"slot":[{"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":"组_1","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":[]},{"name":"影子","displayFrame":[],"colorFrame":[]},{"name":"身体","displayFrame":[],"colorFrame":[]},{"name":"左手伸直","displayFrame":[{"duration":36,"value":-1}],"colorFrame":[]},{"name":"右手伸直","displayFrame":[{"duration":36,"value":-1}],"colorFrame":[]}],"duration":36},{"name":"wrong","frame":[],"bone":[{"name":"root","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"bone","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"领带","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"rotate":2.8008,"tweenEasing":0},{"duration":8,"rotate":2.8008,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左腿","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"rotate":-2.6065,"tweenEasing":0},{"duration":8,"rotate":-2.6065,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"x":-1.9782,"y":0.2972,"duration":32},{"tweenEasing":0,"x":-1.9782,"y":0.2972,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"右腿","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"rotate":-2.6065,"tweenEasing":0},{"duration":8,"rotate":-2.6065,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"x":1.9782,"y":-0.2972,"duration":32},{"tweenEasing":0,"x":1.9782,"y":-0.2972,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"rotate":4.3759,"tweenEasing":0},{"duration":16,"rotate":-0.9493,"tweenEasing":0},{"duration":8,"rotate":4.3759,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0},{"duration":16,"rotate":-8.3373,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0},{"duration":16,"rotate":-17.9294,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":7,"rotate":8.1159,"tweenEasing":0},{"duration":18,"rotate":17.0262,"tweenEasing":0},{"duration":7,"rotate":17.7957,"tweenEasing":0},{"duration":8,"rotate":8.1159,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"眼镜","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"帽子","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"鼻子","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左眉毛","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左眼","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0},{"duration":16,"rotate":-7.4285,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"右眼","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"尾巴1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"右眉毛","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":7,"rotate":-27.0428,"tweenEasing":0},{"duration":18,"rotate":-42.1864,"tweenEasing":0},{"duration":7,"rotate":-44.7675,"tweenEasing":0},{"duration":8,"rotate":-27.0428,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"嘴","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":2},{"tweenEasing":0,"y":0.4667,"duration":4},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":4},{"tweenEasing":0,"y":0.4667,"duration":2},{"tweenEasing":0,"y":0.2,"duration":6},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"rotate":-34.0903,"tweenEasing":0},{"duration":16,"rotate":-15.4811,"tweenEasing":0},{"duration":8,"rotate":-25.9899,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"rotate":31.1127,"tweenEasing":0},{"duration":16,"rotate":9.0714,"tweenEasing":0},{"duration":8,"rotate":28.4615,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":2,"rotate":21.1976,"tweenEasing":0},{"duration":7,"rotate":26.0029,"tweenEasing":0},{"duration":9,"rotate":96.3651,"tweenEasing":0},{"duration":9,"rotate":34.0843,"tweenEasing":0},{"duration":7,"rotate":98.4071,"tweenEasing":0},{"duration":8,"rotate":26.0029,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"duration":32},{"tweenEasing":0,"duration":8},{"duration":0}]}],"playTimes":0,"ffd":[],"ik":[],"slot":[{"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":"组_1","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":[]},{"name":"影子","displayFrame":[],"colorFrame":[]},{"name":"身体","displayFrame":[],"colorFrame":[]},{"name":"左手伸直","displayFrame":[{"duration":48,"value":-1}],"colorFrame":[]},{"name":"右手伸直","displayFrame":[{"duration":48,"value":-1}],"colorFrame":[]}],"duration":48},{"name":"finish","frame":[],"bone":[{"name":"root","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"bone","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"领带","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":-3.8619,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":1.7096,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":1.7096,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":26},{"tweenEasing":0,"y":-7.6181,"duration":24},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"y":-2.769,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"y":-2.769,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左腿","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":6.305,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":26},{"tweenEasing":0,"x":-5.4386,"y":0.1786,"duration":24},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右腿","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":6.305,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-1.656,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":26},{"tweenEasing":0,"x":-6.7031,"y":-5.1693,"duration":24},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-2.7551,"y":0.2771,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":9.5597,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":10.0266,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":10.0266,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-1.298,"y":-9.9228,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"x":-1.298,"y":-9.9228,"duration":24},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":17.3385,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-6.0264,"tweenEasing":0},{"duration":12,"rotate":-7.2656,"tweenEasing":0},{"duration":12,"rotate":-1.7867,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":-6.0264,"tweenEasing":0},{"duration":12,"rotate":-7.2656,"tweenEasing":0},{"duration":12,"rotate":-1.7867,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":-19.1782,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.8988,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.8988,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":-12.0712,"tweenEasing":0},{"duration":25,"tweenEasing":0},{"duration":24,"rotate":27.8631,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":27.8631,"tweenEasing":0},{"duration":9}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":49},{"tweenEasing":0,"duration":48},{"duration":9}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":49},{"tweenEasing":0,"duration":48},{"duration":9}]},{"name":"右手","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":22,"rotate":18.0014,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.1516,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.1516,"tweenEasing":0},{"duration":2}],"translateFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":2}],"scaleFrame":[{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":2}]},{"name":"眼镜","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":36,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":14},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":13.048,"y":-0.5502,"duration":6},{"tweenEasing":0,"x":0.692,"y":0.5317,"duration":24},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":14},{"tweenEasing":0,"duration":36},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"帽子","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.153,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-3.153,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"x":7.457,"y":1.5583,"duration":6},{"tweenEasing":0,"x":-6.6664,"y":1.1384,"duration":36},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"鼻子","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左眉毛","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"x":6.4728,"y":0.8607,"duration":42},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左眼","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":4},{"tweenEasing":0,"duration":16},{"tweenEasing":0,"duration":4},{"tweenEasing":0,"x":0.2,"duration":4},{"tweenEasing":0,"duration":16},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":20,"rotate":-13.0313,"tweenEasing":0},{"duration":16,"rotate":14.5197,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":4.3629,"tweenEasing":0},{"duration":12,"rotate":-7.231,"tweenEasing":0},{"duration":12,"rotate":-16.1684,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"rotate":4.3629,"tweenEasing":0},{"duration":12,"rotate":-7.231,"tweenEasing":0},{"duration":12,"rotate":-16.1684,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右眼","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":36,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":36,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":4},{"tweenEasing":0,"duration":16},{"tweenEasing":0,"duration":4},{"tweenEasing":0,"x":0.2,"duration":4},{"tweenEasing":0,"duration":16},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":0.2,"duration":6},{"tweenEasing":0,"duration":36},{"duration":0}]},{"name":"尾巴1","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":6.1561,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":7.109,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":7.109,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右眉毛","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"x":6.4728,"y":0.8607,"duration":42},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":36,"rotate":-76.2623,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-20.969,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-20.969,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"嘴","rotateFrame":[{"duration":50,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":8},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"y":0.2,"duration":6},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":-106.3868,"tweenEasing":0},{"duration":24,"rotate":-26.2264,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":2.3286,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":2.3286,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":-14.9384,"tweenEasing":0},{"duration":12,"rotate":5.3691,"tweenEasing":0},{"duration":12,"rotate":-13.3337,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-13.8027,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-13.8027,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":14.6986,"tweenEasing":0},{"duration":12,"rotate":4.7716,"tweenEasing":0},{"duration":12,"rotate":12.1816,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":25.9315,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":25.9315,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":35.243,"tweenEasing":0},{"duration":24,"rotate":30.1214,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":6.5829,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":6.5829,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":6,"rotate":4.4556,"tweenEasing":0},{"duration":6,"rotate":-19.7558,"tweenEasing":0},{"duration":8,"rotate":10.9587,"tweenEasing":0},{"duration":8,"rotate":-11.7808,"tweenEasing":0},{"duration":8,"rotate":17.3524,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":-18.3593,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-6.2263,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-6.2263,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"duration":24},{"tweenEasing":0,"duration":24},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":6,"rotate":-0.0026,"tweenEasing":0},{"duration":6,"rotate":13.7518,"tweenEasing":0},{"duration":8,"rotate":-4.6954,"tweenEasing":0},{"duration":8,"rotate":17.3351,"tweenEasing":0},{"duration":8,"rotate":-7.5326,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":48,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":112.3086,"tweenEasing":0},{"duration":24,"rotate":37.7087,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":8.6942,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":8.6942,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"rotate":-9.3495,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.1888,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"rotate":-12.1888,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}],"scaleFrame":[{"tweenEasing":0,"duration":50},{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":48},{"tweenEasing":0,"duration":48},{"duration":0}]}],"playTimes":0,"ffd":[],"ik":[],"slot":[{"name":"尾巴","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[{"duration":3},{"duration":2,"value":-1},{"duration":45,"value":-1},{"duration":106}],"colorFrame":[]},{"name":"左手","displayFrame":[{"duration":3},{"duration":2,"value":-1},{"duration":45,"value":-1},{"duration":106}],"colorFrame":[]},{"name":"领带","displayFrame":[],"colorFrame":[]},{"name":"右耳","displayFrame":[],"colorFrame":[]},{"name":"左耳","displayFrame":[],"colorFrame":[]},{"name":"组_1","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":[]},{"name":"影子","displayFrame":[],"colorFrame":[]},{"name":"身体","displayFrame":[],"colorFrame":[]},{"name":"左手伸直","displayFrame":[{"duration":3,"value":-1},{"duration":2},{"duration":45},{"duration":106,"value":-1}],"colorFrame":[]},{"name":"右手伸直","displayFrame":[{"duration":3,"value":-1},{"duration":2},{"duration":45},{"duration":8,"value":-1},{"duration":98,"value":-1}],"colorFrame":[]}],"duration":156}],"bone":[{"name":"root","transform":{}},{"name":"bone","transform":{"x":891.9191,"y":616.1693},"length":160,"parent":"root"},{"name":"领带","transform":{"x":0.6,"skY":-84.2569,"y":28.2,"skX":-84.2569},"length":113,"parent":"bone"},{"name":"左腿","transform":{"x":-20.0746,"skY":175.2807,"y":-25.7203,"skX":175.2807},"length":67,"parent":"领带"},{"name":"右腿","transform":{"x":-8.2206,"skY":159.7117,"y":32.1842,"skX":159.7117},"length":66,"parent":"领带"},{"name":"bone1","transform":{"x":125.7438,"skY":-19.0945,"y":19.1129,"skX":-19.0945},"length":235,"parent":"领带"},{"name":"领带1","transform":{"x":113.6488,"skY":174.2569,"y":9.7764,"skX":174.2569},"length":65,"parent":"领带"},{"name":"尾巴","transform":{"x":-17.0514,"skY":-105.4221,"y":-37.6326,"skX":-105.4221},"length":63,"parent":"领带"},{"name":"左手","transform":{"x":102.3804,"skY":-146.8359,"y":-50.8001,"skX":-146.8359},"length":50,"parent":"领带"},{"name":"右手","transform":{"x":110.3467,"skY":136.3674,"y":47.3957,"skX":136.3674},"length":69,"parent":"领带"},{"name":"鼻子","transform":{"x":59.3977,"skY":41.1099,"y":27.0986,"skX":41.1099},"length":1,"parent":"bone1"},{"name":"帽子","transform":{"x":192.6558,"skY":82.6388,"y":-5.4078,"skX":82.6388},"length":27,"parent":"bone1"},{"name":"眼镜","transform":{"x":78.9107,"skY":5.5084,"y":15.902,"skX":5.5084},"length":28,"parent":"bone1"},{"name":"左眉毛","transform":{"x":140.8962,"skY":83.9424,"y":-36.7575,"skX":83.9424},"length":10,"parent":"bone1"},{"name":"左眼","transform":{"x":96.0507,"y":-35.5301},"parent":"bone1"},{"name":"领带2","transform":{"x":65.1,"skY":1.6366,"skX":1.6366},"length":66,"parent":"领带1"},{"name":"右眼","transform":{"x":96.7167,"y":59.7489},"parent":"bone1"},{"name":"尾巴1","transform":{"x":63.0475,"skY":106.2349,"skX":106.2349},"length":63,"parent":"尾巴"},{"name":"右眉毛","transform":{"x":143.1362,"skY":103.3513,"y":60.3339,"skX":103.3513},"length":17,"parent":"bone1"},{"name":"左手1","transform":{"x":50.632,"skY":106.7395,"skX":106.7395},"length":27,"parent":"左手"},{"name":"嘴","transform":{"x":33.0885,"skY":103.3513,"y":8.4698,"skX":103.3513},"length":16,"parent":"bone1"},{"name":"右手1","transform":{"x":69.1209,"skY":97.009,"skX":97.009},"length":47,"parent":"右手"},{"name":"左耳","transform":{"x":151.1649,"skY":-24.2997,"y":-83.7051,"skX":-24.2997},"length":57,"parent":"bone1"},{"name":"右耳","transform":{"x":134.348,"skY":25.1759,"y":78.9579,"skX":25.1759},"length":64,"parent":"bone1"},{"name":"胡子","transform":{"x":-11.3223,"skY":-142.4333,"y":-14.2123,"skX":-142.4333},"length":65,"parent":"鼻子"},{"name":"胡子1","transform":{"x":10.8123,"skY":69.7025,"y":13.3506,"skX":69.7025},"length":66,"parent":"鼻子"},{"name":"尾巴2","transform":{"x":63.0624,"skY":-59.0609,"skX":-59.0609},"length":52,"parent":"尾巴1"},{"name":"左手2","transform":{"x":27.5566,"skY":-40.1087,"skX":-40.1087},"length":55,"parent":"左手1"},{"name":"右手2","transform":{"x":47.2479,"skY":-106.1572,"skX":-106.1572},"length":37,"parent":"右手1"},{"name":"bone2","transform":{"x":52.2431,"skY":-49.7262,"skX":-49.7262},"length":61,"parent":"尾巴2"}],"frameRate":24,"type":"Armature","ik":[]}],"frameRate":24,"isGlobal":0}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "8914b311-4cc5-4084-9634-12bcc9d52343",
"subMetas": {}
}
\ No newline at end of file
{"name":"mao","imagePath":"mao_tex.png","SubTexture":[{"name":"猫01/影子","x":1,"height":66,"y":343,"width":337},{"name":"猫01/尾巴","x":1,"height":109,"y":188,"width":175},{"name":"猫01/右腿","x":178,"height":117,"y":188,"width":104},{"name":"猫01/左腿","x":1,"height":115,"y":569,"width":64},{"name":"猫01/右手","x":427,"height":122,"y":590,"width":69},{"name":"猫01/左手","x":301,"height":74,"y":590,"width":124},{"name":"猫01伸/左手伸直","x":299,"height":169,"y":1,"width":168},{"name":"猫01伸/右手伸直","x":299,"height":169,"y":172,"width":168},{"name":"猫01/身体","x":340,"height":180,"y":343,"width":122},{"name":"猫01/领带","x":1,"height":156,"y":411,"width":120},{"name":"猫01/右耳","x":155,"height":76,"y":602,"width":90},{"name":"猫01/左耳","x":67,"height":85,"y":602,"width":86},{"name":"猫01/组_1","x":1,"height":185,"y":1,"width":296},{"name":"猫01/右眼","x":1,"height":60,"y":686,"width":59},{"name":"猫01/右眉毛","x":67,"height":5,"y":595,"width":33},{"name":"猫01/左眼","x":247,"height":60,"y":666,"width":59},{"name":"猫01/左眉毛","x":247,"height":12,"y":602,"width":31},{"name":"猫01/眼镜","x":301,"height":63,"y":525,"width":170},{"name":"猫01/胡子","x":123,"height":85,"y":515,"width":176},{"name":"猫01/鼻子","x":67,"height":24,"y":569,"width":28},{"name":"猫01/嘴","x":1,"height":30,"y":299,"width":65},{"name":"猫01/帽子","x":123,"height":102,"y":411,"width":158}],"height":1024,"width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d502f83c-26e4-4742-9c98-f2ec226a3926",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ef411b2a-700d-4eed-b153-e9978d134dc2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"mao_tex": {
"ver": "1.0.4",
"uuid": "33d349da-29fe-4b56-bac4-8e151e18009a",
"rawTextureUuid": "ef411b2a-700d-4eed-b153-e9978d134dc2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -7.5,
"offsetY": 138.5,
"trimX": 1,
"trimY": 1,
"width": 495,
"height": 745,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "8c3aee89-a22a-471a-a577-b91dc52744f3",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"音乐-3-副本","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"armatureName","aabb":{"x":-468.5,"y":-365,"width":937,"height":730},"bone":[{"name":"root"},{"length":97,"name":"图层18","parent":"root","transform":{"x":-151.05,"y":-153.05,"skX":95.8329,"skY":95.8329}},{"length":69,"name":"图层17_拷贝_2","parent":"root","transform":{"x":-111.3,"y":-339.8,"skX":113.627,"skY":113.627}},{"length":112,"name":"图层17","parent":"root","transform":{"x":-329.9,"y":-329.9,"skX":107.4604,"skY":107.4604}}],"slot":[{"name":"图层7","parent":"root"},{"name":"图层17","parent":"图层17"},{"name":"图层17_拷贝_2","parent":"图层17_拷贝_2"},{"name":"图层18","parent":"图层18"}],"skin":[{"slot":[{"name":"图层17","display":[{"name":"图层17","transform":{"x":44.44,"y":-13.35,"skX":-107.46,"skY":-107.46}}]},{"name":"图层7","display":[{"name":"图层7"}]},{"name":"图层18","display":[{"name":"图层18","transform":{"x":57.89,"y":15.15,"skX":-95.83,"skY":-95.83}}]},{"name":"图层17_拷贝_2","display":[{"name":"图层17_拷贝_2","transform":{"x":28.41,"y":-5.66,"skX":-113.63,"skY":-113.63}}]}]}],"animation":[{"duration":58,"playTimes":0,"name":"normal","bone":[{"name":"图层18","translateFrame":[{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":198.78,"y":-5.08},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":198.78,"y":-5.08},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":198.78,"y":-5.08},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":198.78,"y":-5.08},{"duration":10}],"rotateFrame":[{"duration":9},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-29.69},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-29.69},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-29.69},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-29.69},{"duration":0}]},{"name":"图层17_拷贝_2","translateFrame":[{"duration":3},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":152.69,"y":73.87},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":152.69,"y":73.87},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":152.69,"y":73.87},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":152.69,"y":73.87},{"duration":7}],"rotateFrame":[{"duration":9},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-21.71},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-21.71},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-21.71},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-21.71},{"duration":0}]},{"name":"图层17","translateFrame":[{"duration":6},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":82.71,"y":91.26},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":82.71,"y":91.26},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":82.71,"y":91.26},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":82.71,"y":91.26},{"duration":4}],"rotateFrame":[{"duration":9},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-19.56},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-19.56},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-19.56},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-19.56},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":937,"height":730}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "85c02d20-775c-468c-9d40-5990616da740",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"imagePath":"音乐-3-副本_tex.png","height":1024,"name":"音乐-3-副本","SubTexture":[{"width":937,"y":1,"height":730,"name":"图层7","x":1},{"width":128,"y":733,"height":141,"name":"图层17","x":1},{"width":82,"y":1,"height":91,"name":"图层17_拷贝_2","x":940},{"width":123,"y":876,"height":134,"name":"图层18","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "a7622ed2-b5ea-4c87-9356-169409b7e2d3",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "251b536e-8758-4912-8d33-a0c422ec2c2f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"音乐-3-副本_tex": {
"ver": "1.0.4",
"uuid": "6c7db54d-d24d-40bc-9dfc-4ad08f2ed39b",
"rawTextureUuid": "251b536e-8758-4912-8d33-a0c422ec2c2f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 6.5,
"trimX": 1,
"trimY": 1,
"width": 1021,
"height": 1009,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "1680dfa5-9a70-48b5-95a5-c841a1c29ba4",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"音乐-3-副本(2)","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"armatureName","aabb":{"x":-237,"y":-305,"width":474,"height":610},"bone":[{"name":"root"},{"length":63,"name":"图层18_拷贝","parent":"root","transform":{"x":-34.95,"y":-104.85,"skX":96.6783,"skY":96.6783}},{"length":131,"name":"图层19","parent":"root","transform":{"x":131.05,"y":17.45,"skX":103.6238,"skY":103.6238}},{"length":112,"name":"图层17_拷贝","parent":"root","transform":{"x":-73.25,"y":104.85,"skX":102.4568,"skY":102.4568}}],"slot":[{"name":"图层7","parent":"root"},{"name":"图层17_拷贝","parent":"图层17_拷贝"},{"name":"图层18_拷贝","parent":"图层18_拷贝"},{"name":"图层19","parent":"图层19"}],"skin":[{"slot":[{"name":"图层19","display":[{"name":"图层19","transform":{"x":64.89,"y":6.45,"skX":-103.62,"skY":-103.62}}]},{"name":"图层7","display":[{"name":"图层7"}]},{"name":"图层18_拷贝","display":[{"name":"图层18_拷贝","transform":{"x":34.29,"y":6.1,"skX":-96.68,"skY":-96.68}}]},{"name":"图层17_拷贝","display":[{"name":"图层17_拷贝","transform":{"x":47.67,"y":-9.76,"skX":-102.46,"skY":-102.46}}]}]}],"animation":[{"duration":58,"playTimes":0,"name":"noamal","bone":[{"name":"图层18_拷贝","translateFrame":[{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-68.82,"y":87.89},{"duration":15,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-68.82,"y":87.89},{"duration":15,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-68.82,"y":87.89},{"duration":13}],"scaleFrame":[{"duration":15},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]},{"name":"图层19","translateFrame":[{"duration":5},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-22.06,"y":-165.76},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-22.06,"y":-165.76},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-22.06,"y":-165.76},{"duration":8}],"scaleFrame":[{"duration":15},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]},{"name":"图层17_拷贝","translateFrame":[{"duration":10},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":50.76,"y":-105.8},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":50.76,"y":-105.8},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":50.76,"y":-105.8},{"duration":3}],"scaleFrame":[{"duration":15},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"noamal"}],"canvas":{"width":474,"height":610}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "b7443e20-55ac-44e7-bc32-39e072145612",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"音乐-3-副本(2)_tex.png","height":1024,"name":"音乐-3-副本(2)","SubTexture":[{"width":474,"y":1,"height":610,"name":"图层7","x":1},{"width":128,"y":761,"height":141,"name":"图层17_拷贝","x":1},{"width":72,"y":904,"height":79,"name":"图层18_拷贝","x":1},{"width":149,"y":613,"height":146,"name":"图层19","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "10940d4e-e58d-4f96-b96a-1daf938acb78",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4940dbda-eb0d-476c-8f6e-99b6106fc556",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"音乐-3-副本(2)_tex": {
"ver": "1.0.4",
"uuid": "44f33d5d-325f-4e07-bc7a-bfd4b328d92d",
"rawTextureUuid": "4940dbda-eb0d-476c-8f6e-99b6106fc556",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -18,
"offsetY": 20,
"trimX": 1,
"trimY": 1,
"width": 474,
"height": 982,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"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: {
// get () {
// return this._bar;
// },
// set (value) {
// this._bar = value;
// }
// },
},
// LIFE-CYCLE CALLBACKS:
// onLoad () {},
start () {
},
// update (dt) {},
});
{
"ver": "1.0.8",
"uuid": "b56c4835-4cb7-41b4-8c9c-ac00380d1ba3",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
...@@ -77,20 +77,1978 @@ ...@@ -77,20 +77,1978 @@
{ {
"__id__": 7 "__id__": 7
}, },
{
"__id__": 42
},
{
"__id__": 46
},
{
"__id__": 53
},
{
"__id__": 63
}
],
"_active": true,
"_components": [
{
"__id__": 65
},
{
"__id__": 66
},
{
"__id__": 67
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1280,
"height": 960
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
640,
480,
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": "a5esZu+45LA5mBpvttspPD"
},
{
"__type__": "cc.Node",
"_name": "Main Camera",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 4
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1280,
"height": 960
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
362.85545494732423,
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": "e1WoFrQ79G7r4ZuQE3HlNb"
},
{
"__type__": "cc.Camera",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 3
},
"_enabled": true,
"_cullingMask": 4294967295,
"_clearFlags": 7,
"_backgroundColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_depth": -1,
"_zoomRatio": 1,
"_targetTexture": null,
"_fov": 60,
"_orthoSize": 10,
"_nearClip": 1,
"_farClip": 4096,
"_ortho": true,
"_rect": {
"__type__": "cc.Rect",
"x": 0,
"y": 0,
"width": 1,
"height": 1
},
"_renderStages": 1,
"_alignWithScreen": true,
"_id": "81GN3uXINKVLeW4+iKSlim"
},
{
"__type__": "cc.Node",
"_name": "bg",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 6
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1280,
"height": 960
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"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": "32MJMZ2HRGF4BOf533Avyi"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 5
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "ac732a26-47dd-4236-b616-876a1e8003cf"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "97/S6HDq9MeqgmV1Zwnhbb"
},
{
"__type__": "cc.Node",
"_name": "frame-border",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 8
},
{
"__id__": 10
},
{
"__id__": 12
},
{ {
"__id__": 14 "__id__": 14
} }
], ],
"_active": true, "_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"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": "4ap0eXsutH0p6T23R6gLW2"
},
{
"__type__": "cc.Node",
"_name": "m1",
"_objFlags": 0,
"_parent": {
"__id__": 7
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 9
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 937,
"height": 730
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-404.448,
298.226,
0,
0,
0,
0,
1,
0.5,
0.5,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "44jg9d6A9BxJTO6Gt89LUC"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 8
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "armatureName",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "85c02d20-775c-468c-9d40-5990616da740#a7622ed2-b5ea-4c87-9356-169409b7e2d3",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "85c02d20-775c-468c-9d40-5990616da740"
},
"_N$dragonAtlasAsset": {
"__uuid__": "a7622ed2-b5ea-4c87-9356-169409b7e2d3"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "9bFG+c22BD2a/Z4z+3Qphb"
},
{
"__type__": "cc.Node",
"_name": "m2",
"_objFlags": 0,
"_parent": {
"__id__": 7
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 11
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 474,
"height": 610
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
522.398,
-327.701,
0,
0,
0,
0,
1,
0.5,
0.5,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "7bkPB1i7hG4YQAjDl77dOe"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 10
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "armatureName",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "b7443e20-55ac-44e7-bc32-39e072145612#10940d4e-e58d-4f96-b96a-1daf938acb78",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "b7443e20-55ac-44e7-bc32-39e072145612"
},
"_N$dragonAtlasAsset": {
"__uuid__": "10940d4e-e58d-4f96-b96a-1daf938acb78"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "69jETD7JlCaKfYf6/U52mJ"
},
{
"__type__": "cc.Node",
"_name": "frame",
"_objFlags": 0,
"_parent": {
"__id__": 7
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 13
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 926,
"height": 919
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"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": "f4EJ25L+lFzIoudeI7dSS3"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 12
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "72210e76-a89c-46d1-9648-bb544ee5c11e"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "aadAmqpDxOSJOE0pb+10Ng"
},
{
"__type__": "cc.Node",
"_name": "ground",
"_objFlags": 0,
"_parent": {
"__id__": 7
},
"_children": [
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
},
{
"__id__": 21
},
{
"__id__": 23
},
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 29
},
{
"__id__": 31
},
{
"__id__": 33
},
{
"__id__": 35
},
{
"__id__": 37
},
{
"__id__": 39
}
],
"_active": true,
"_components": [
{
"__id__": 41
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 600,
"height": 796
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"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": "4cweWAxLhJZ6Y+paziXBfG"
},
{
"__type__": "cc.Node",
"_name": "ant",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 16
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 533.65,
"height": 122
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"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": "72hmti+RdDLqkCBs+Rb5Ej"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 15
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "c447e113-b1b5-4f13-9a2e-678dc9fc8792#3bd136d5-5391-4d24-9a04-7c91996d5544",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "c447e113-b1b5-4f13-9a2e-678dc9fc8792"
},
"_N$dragonAtlasAsset": {
"__uuid__": "3bd136d5-5391-4d24-9a04-7c91996d5544"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "bdQt/R1hxOZLIPYVItlH+L"
},
{
"__type__": "cc.Node",
"_name": "house",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 18
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1143,
"height": 951
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
168.946,
151.208,
0,
0,
0,
0,
1,
0.25,
0.25,
0.25
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "2fvyP6xbtEn7x9BYufNC9G"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 17
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "7bb49576-efa4-4634-ae72-9a1691dea9f6#935da5b5-62fd-4317-b654-771501096d80",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "7bb49576-efa4-4634-ae72-9a1691dea9f6"
},
"_N$dragonAtlasAsset": {
"__uuid__": "935da5b5-62fd-4317-b654-771501096d80"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "dfoxaP1BZCaJkl0P1Av6jU"
},
{
"__type__": "cc.Node",
"_name": "apple",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 20
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 799,
"height": 565
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "a4xySIvblKnYP3MSugLg2o"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 19
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "4d85228f-ec02-4cbe-a0d8-cc8628fe805d#146d0d76-3625-438b-a6c8-dbd27ca2af63",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "4d85228f-ec02-4cbe-a0d8-cc8628fe805d"
},
"_N$dragonAtlasAsset": {
"__uuid__": "146d0d76-3625-438b-a6c8-dbd27ca2af63"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "552Xm8CDxMpIOVobC+Q//U"
},
{
"__type__": "cc.Node",
"_name": "bird",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 22
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 214,
"height": 171
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "9aJcXS8bdKj47wtsfNhmXs"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 21
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "c09e0f09-3dcd-48ab-96e9-b3411b332e30#f7c2a4ed-1ea1-47fa-af1a-b0a87503411a",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "c09e0f09-3dcd-48ab-96e9-b3411b332e30"
},
"_N$dragonAtlasAsset": {
"__uuid__": "f7c2a4ed-1ea1-47fa-af1a-b0a87503411a"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "04F4O9iptO77MTN5BpBjLp"
},
{
"__type__": "cc.Node",
"_name": "car",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 24
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 314,
"height": 175
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "58za+HBcxMWJ6BCVXzaDJ9"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 23
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "927c2190-9931-4948-bc8f-f93273d386f1#cb558b4f-c46d-4597-be52-2a01e9919a07",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "927c2190-9931-4948-bc8f-f93273d386f1"
},
"_N$dragonAtlasAsset": {
"__uuid__": "cb558b4f-c46d-4597-be52-2a01e9919a07"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "25dK2Sp95JZLKy6DBkvVC2"
},
{
"__type__": "cc.Node",
"_name": "cat",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 26
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 451,
"height": 489
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "65ayr7TKxHAag/Ti4Xmp+i"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 25
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "0d98c5c3-f6ce-4b53-8b13-3f64793c6c2a#6f320da8-7ad6-4576-9ed9-9f008f467cf7",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "0d98c5c3-f6ce-4b53-8b13-3f64793c6c2a"
},
"_N$dragonAtlasAsset": {
"__uuid__": "6f320da8-7ad6-4576-9ed9-9f008f467cf7"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "24iVKgQhhEqoFPGYtXW6yO"
},
{
"__type__": "cc.Node",
"_name": "cow",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 28
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 490,
"height": 373
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "32TEJDnbhMN7KT3gByoG4t"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 27
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "ff8e808c-0f2c-437d-93a2-e427b8036108#e49a7f11-180e-464a-b737-4100c50c5293",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "ff8e808c-0f2c-437d-93a2-e427b8036108"
},
"_N$dragonAtlasAsset": {
"__uuid__": "e49a7f11-180e-464a-b737-4100c50c5293"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "13p+CDbYxKh6Neq43ZxC7X"
},
{
"__type__": "cc.Node",
"_name": "duck",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 30
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 314,
"height": 297
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "61ff7eZCtHBq7NNSCiAD7D"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 29
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "f697428d-39cf-4b2d-8d49-85c508b96d9b#89adc0d0-7e7a-444f-bd48-548ccd5fe537",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "f697428d-39cf-4b2d-8d49-85c508b96d9b"
},
"_N$dragonAtlasAsset": {
"__uuid__": "89adc0d0-7e7a-444f-bd48-548ccd5fe537"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "84sPYtWQ9IDLcwvzpJqV/z"
},
{
"__type__": "cc.Node",
"_name": "egg",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 32
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 277,
"height": 286
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "85+u6pJ7JE/YyU8B1cvu3e"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 31
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "07fab63b-dbeb-4664-9fc2-fcdc4a306891#240bda05-66e5-47db-ae31-f5f30ca6cfd5",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "07fab63b-dbeb-4664-9fc2-fcdc4a306891"
},
"_N$dragonAtlasAsset": {
"__uuid__": "240bda05-66e5-47db-ae31-f5f30ca6cfd5"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "72OZTXG9RLKpBh2Gv64YXG"
},
{
"__type__": "cc.Node",
"_name": "farmer",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 34
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 834,
"height": 1049
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "d7If138KBF75ojV5qkoCmq"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 33
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "db9ac426-bc0d-430c-97b8-750df4db43c8#e9153428-8986-46f2-9d26-2e6f1c4aeb1e",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "db9ac426-bc0d-430c-97b8-750df4db43c8"
},
"_N$dragonAtlasAsset": {
"__uuid__": "e9153428-8986-46f2-9d26-2e6f1c4aeb1e"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "0bDiHchFNFaaCO/dbsl68O"
},
{
"__type__": "cc.Node",
"_name": "fish",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 36
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 217,
"height": 205
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "b6qtDg3hBEC5ul7rxqjANE"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 35
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "836b38d9-903e-46a7-98a4-a92a73692141#bb32454f-d5d1-41d8-b261-026462149641",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "836b38d9-903e-46a7-98a4-a92a73692141"
},
"_N$dragonAtlasAsset": {
"__uuid__": "bb32454f-d5d1-41d8-b261-026462149641"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "8fFExVrZ5DqaBKYIo7TuCN"
},
{
"__type__": "cc.Node",
"_name": "girl",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 38
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 544,
"height": 835
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
0.25,
0.25,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "1dxGPLnSpNhLQ1+Sa2Vlxf"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 37
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "5944f89e-5b70-4b17-af99-09fa63c15f23#2368f043-d708-4d13-886b-6e7d83f98c30",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "5944f89e-5b70-4b17-af99-09fa63c15f23"
},
"_N$dragonAtlasAsset": {
"__uuid__": "2368f043-d708-4d13-886b-6e7d83f98c30"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "acO6TMfKtIv65PTdTqRBUo"
},
{
"__type__": "cc.Node",
"_name": "hen",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [ "_components": [
{ {
"__id__": 24 "__id__": 40
},
{
"__id__": 25
},
{
"__id__": 26
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -104,8 +2062,8 @@ ...@@ -104,8 +2062,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 1007.37,
"height": 720 "height": 596.06
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -116,15 +2074,15 @@ ...@@ -116,15 +2074,15 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
640, 0,
360, 0,
0, 0,
0, 0,
0, 0,
0, 0,
1, 1,
1, 0.25,
1, 0.25,
1 1
] ]
}, },
...@@ -139,20 +2097,96 @@ ...@@ -139,20 +2097,96 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "a5esZu+45LA5mBpvttspPD" "_id": "5cQofg3whIsqMKpbpzXhuY"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 39
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "9f8f3a2e-e2dd-4d29-92ac-6fb9d1279bca#bf5fa08c-7de5-4bf0-857b-3b32f75a54f8",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "9f8f3a2e-e2dd-4d29-92ac-6fb9d1279bca"
},
"_N$dragonAtlasAsset": {
"__uuid__": "bf5fa08c-7de5-4bf0-857b-3b32f75a54f8"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "0fwSxrpOBAJZWSgAsm50zy"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 14
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "6b28d0ff-52cf-4358-8954-6382cbd08d5f"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6bNsM74g1AwrXEO/dpul55"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "Main Camera", "_name": "catBox",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 2
}, },
"_children": [], "_children": [
{
"__id__": 43
}
],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 4 "__id__": 45
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -167,7 +2201,7 @@ ...@@ -167,7 +2201,7 @@
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 1280,
"height": 720 "height": 960
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -180,7 +2214,7 @@ ...@@ -180,7 +2214,7 @@
"array": [ "array": [
0, 0,
0, 0,
362.85545494732423, 0,
0, 0,
0, 0,
0, 0,
...@@ -201,56 +2235,20 @@ ...@@ -201,56 +2235,20 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "e1WoFrQ79G7r4ZuQE3HlNb" "_id": "15R6Qnt3BGO7etkSPd83yJ"
},
{
"__type__": "cc.Camera",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 3
},
"_enabled": true,
"_cullingMask": 4294967295,
"_clearFlags": 7,
"_backgroundColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_depth": -1,
"_zoomRatio": 1,
"_targetTexture": null,
"_fov": 60,
"_orthoSize": 10,
"_nearClip": 1,
"_farClip": 4096,
"_ortho": true,
"_rect": {
"__type__": "cc.Rect",
"x": 0,
"y": 0,
"width": 1,
"height": 1
},
"_renderStages": 1,
"_alignWithScreen": true,
"_id": "81GN3uXINKVLeW4+iKSlim"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "bg", "_name": "cat",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 42
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 6 "__id__": 44
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -264,8 +2262,8 @@ ...@@ -264,8 +2262,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 362.6105263157899,
"height": 720 "height": 483.5647539622176
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -283,8 +2281,8 @@ ...@@ -283,8 +2281,8 @@
0, 0,
0, 0,
1, 1,
1, 0.5,
1, 0.5,
1 1
] ]
}, },
...@@ -299,14 +2297,14 @@ ...@@ -299,14 +2297,14 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "32MJMZ2HRGF4BOf533Avyi" "_id": "4dJbjeaT9KAaMzvxD4DFse"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "dragonBones.ArmatureDisplay",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 5 "__id__": 43
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -314,24 +2312,59 @@ ...@@ -314,24 +2312,59 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
} }
], ],
"_srcBlendFactor": 770, "_armatureName": "Armature",
"_dstBlendFactor": 771, "_animationName": "",
"_spriteFrame": { "_preCacheMode": 0,
"__uuid__": "8288e3d4-4c75-4b27-8f01-f7014417f4dd" "_cacheMode": 0,
}, "playTimes": -1,
"_type": 0, "premultipliedAlpha": false,
"_sizeMode": 1, "_armatureKey": "8914b311-4cc5-4084-9634-12bcc9d52343#d502f83c-26e4-4742-9c98-f2ec226a3926",
"_fillType": 0, "_accTime": 0,
"_fillCenter": { "_playCount": 0,
"__type__": "cc.Vec2", "_frameCache": null,
"x": 0, "_curFrame": null,
"y": 0 "_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "8914b311-4cc5-4084-9634-12bcc9d52343"
},
"_N$dragonAtlasAsset": {
"__uuid__": "d502f83c-26e4-4742-9c98-f2ec226a3926"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "b1WdRpUxFG3ZV+X7vBSeaz"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 42
}, },
"_fillStart": 0, "_enabled": true,
"_fillRange": 0, "alignMode": 1,
"_isTrimmedMode": true, "_target": null,
"_atlas": null, "_alignFlags": 36,
"_id": "97/S6HDq9MeqgmV1Zwnhbb" "_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "ddx8pxDrtLQr2jgY8xRPYP"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
...@@ -342,13 +2375,13 @@ ...@@ -342,13 +2375,13 @@
}, },
"_children": [ "_children": [
{ {
"__id__": 8 "__id__": 47
}, },
{ {
"__id__": 11 "__id__": 50
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
...@@ -403,16 +2436,16 @@ ...@@ -403,16 +2436,16 @@
"_name": "btn_left", "_name": "btn_left",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 46
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 9 "__id__": 48
}, },
{ {
"__id__": 10 "__id__": 49
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -468,7 +2501,7 @@ ...@@ -468,7 +2501,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 8 "__id__": 47
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -500,7 +2533,7 @@ ...@@ -500,7 +2533,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 8 "__id__": 47
}, },
"_enabled": true, "_enabled": true,
"_normalMaterial": null, "_normalMaterial": null,
...@@ -568,16 +2601,16 @@ ...@@ -568,16 +2601,16 @@
"_name": "btn_right", "_name": "btn_right",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 46
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 12 "__id__": 51
}, },
{ {
"__id__": 13 "__id__": 52
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -633,7 +2666,7 @@ ...@@ -633,7 +2666,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 11 "__id__": 50
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -665,7 +2698,7 @@ ...@@ -665,7 +2698,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 11 "__id__": 50
}, },
"_enabled": true, "_enabled": true,
"_normalMaterial": null, "_normalMaterial": null,
...@@ -737,13 +2770,13 @@ ...@@ -737,13 +2770,13 @@
}, },
"_children": [ "_children": [
{ {
"__id__": 15 "__id__": 54
}, },
{ {
"__id__": 18 "__id__": 57
}, },
{ {
"__id__": 21 "__id__": 60
} }
], ],
"_active": false, "_active": false,
...@@ -801,11 +2834,11 @@ ...@@ -801,11 +2834,11 @@
"_name": "font", "_name": "font",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 14 "__id__": 53
}, },
"_children": [ "_children": [
{ {
"__id__": 16 "__id__": 55
} }
], ],
"_active": true, "_active": true,
...@@ -863,13 +2896,13 @@ ...@@ -863,13 +2896,13 @@
"_name": "BRLNSDB", "_name": "BRLNSDB",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 15 "__id__": 54
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 17 "__id__": 56
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -925,7 +2958,7 @@ ...@@ -925,7 +2958,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 16 "__id__": 55
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [],
...@@ -956,11 +2989,11 @@ ...@@ -956,11 +2989,11 @@
"_name": "img", "_name": "img",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 14 "__id__": 53
}, },
"_children": [ "_children": [
{ {
"__id__": 19 "__id__": 58
} }
], ],
"_active": true, "_active": true,
...@@ -1018,13 +3051,13 @@ ...@@ -1018,13 +3051,13 @@
"_name": "icon", "_name": "icon",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 18 "__id__": 57
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 20 "__id__": 59
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -1080,7 +3113,7 @@ ...@@ -1080,7 +3113,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 19 "__id__": 58
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [],
...@@ -1108,11 +3141,11 @@ ...@@ -1108,11 +3141,11 @@
"_name": "audio", "_name": "audio",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 14 "__id__": 53
}, },
"_children": [ "_children": [
{ {
"__id__": 22 "__id__": 61
} }
], ],
"_active": true, "_active": true,
...@@ -1170,13 +3203,13 @@ ...@@ -1170,13 +3203,13 @@
"_name": "btn", "_name": "btn",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 21 "__id__": 60
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 23 "__id__": 62
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -1232,7 +3265,7 @@ ...@@ -1232,7 +3265,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 22 "__id__": 61
}, },
"_enabled": true, "_enabled": true,
"_clip": { "_clip": {
...@@ -1246,6 +3279,108 @@ ...@@ -1246,6 +3279,108 @@
"preload": false, "preload": false,
"_id": "0adN50f61DlbmppsPkOnjX" "_id": "0adN50f61DlbmppsPkOnjX"
}, },
{
"__type__": "cc.Node",
"_name": "New Node",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 64
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 799,
"height": 565
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-26.735,
15.345,
0,
0,
0,
0,
1,
0.22,
0.22,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "8eg1meaWlBvpvd0Iu9WMSc"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 63
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "4d85228f-ec02-4cbe-a0d8-cc8628fe805d#146d0d76-3625-438b-a6c8-dbd27ca2af63",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "4d85228f-ec02-4cbe-a0d8-cc8628fe805d"
},
"_N$dragonAtlasAsset": {
"__uuid__": "146d0d76-3625-438b-a6c8-dbd27ca2af63"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "35AWhluoZEgKTDKVkorW6I"
},
{ {
"__type__": "cc.Canvas", "__type__": "cc.Canvas",
"_name": "", "_name": "",
...@@ -1257,10 +3392,10 @@ ...@@ -1257,10 +3392,10 @@
"_designResolution": { "_designResolution": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 1280,
"height": 720 "height": 960
}, },
"_fitWidth": false, "_fitWidth": true,
"_fitHeight": false, "_fitHeight": true,
"_id": "59Cd0ovbdF4byw5sbjJDx7" "_id": "59Cd0ovbdF4byw5sbjJDx7"
}, },
{ {
...@@ -1298,6 +3433,19 @@ ...@@ -1298,6 +3433,19 @@
"__id__": 2 "__id__": 2
}, },
"_enabled": true, "_enabled": true,
"ant": null,
"apple": null,
"bird": null,
"car": null,
"cat": null,
"cow": null,
"duck": null,
"egg": null,
"farmer": null,
"fish": null,
"girl": null,
"hen": null,
"house": null,
"_id": "e687yyoRBIzZAOVRL8Sseh" "_id": "e687yyoRBIzZAOVRL8Sseh"
} }
] ]
\ No newline at end of file
import { onHomeworkFinish } from "../script/util"; import { onHomeworkFinish, RandomInt, playAudioByUrl } from "../script/util";
import { defaultData } from "../script/defaultData"; import { defaultData } from "../script/defaultData";
import { assign, createMachine, interpret, actions, forwardTo } from "../script/xstate";
const { pure , send, raise } = actions;
class AssetCacher {
constructor(data, progress, complete) {
this.data = data;
this.obj = JSON.parse(JSON.stringify(data))
this.complete = complete;
this.progress = progress;
}
_extractResource(data) {
if (!Array.isArray(data)) {
data = Object.values(data)
}
const urls = [];
for (var item of data) {
if (typeof item === 'string' && item.startsWith('http')) {
urls.push(item);
continue
}
const us = this._extractResource(item);
for (const u of us) {
urls.push(u)
}
}
return urls
}
_replaceResource(objs, urls, assets) {
const fn = (obj) => {
Object.keys(obj).forEach(key => {
const v = obj[key];
if (typeof v == 'string' && v.startsWith('http')) {
const i = urls.indexOf(v);
if (i > -1) {
obj[key] = assets[i]
}
return
}
if (v){
this._replaceResource(v)
}
})
}
fn(objs);
return objs
}
start() {
const urls = this._extractResource(this.data);
cc.assetManager.loadAny(urls, null, this.progress, (err, data) => {
const objs = [];
for (const asset of data) {
if (asset.constructor.name === 'ImageBitmap') {
const t = new cc.Texture2D()
t.initWithData(asset);
objs.push(t);
} else if (asset.constructor.name === 'AudioBuffer') {
const clip = new cc.AudioClip()
clip._nativeAsset = asset;
objs.push(clip);
}
}
const r = this._replaceResource(JSON.parse(JSON.stringify(this.data)),urls, objs)
this.complete && this.complete();
});
}
}
cc.Class({ cc.Class({
extends: cc.Component, extends: cc.Component,
properties: { properties: {
ant: {
default: null,
type: cc.Node,
},
apple: {
default: null,
type: cc.Node,
},
bird: {
default: null,
type: cc.Node,
},
car: {
default: null,
type: cc.Node,
},
cat: {
default: null,
type: cc.Node,
},
cow: {
default: null,
type: cc.Node,
},
duck: {
default: null,
type: cc.Node,
},
egg: {
default: null,
type: cc.Node,
},
farmer: {
default: null,
type: cc.Node,
},
fish: {
default: null,
type: cc.Node,
},
girl: {
default: null,
type: cc.Node,
},
hen: {
default: null,
type: cc.Node,
},
house: {
default: null,
type: cc.Node,
},
}, },
playAni(node, name, times = 1) {
const cat = cc.find(`Canvas/frame-border/ground/${node}`);
var dragonDisplay = cat.getComponent(dragonBones.ArmatureDisplay);
const state = dragonDisplay.playAnimation(name, times);
return state;
},
// 生命周期 onLoad // 生命周期 onLoad
onLoad() { onLoad() {
this.initSceneData(); this.initSceneData();
this.initSize(); this.initSize();
window.ccc = this;
}, },
_imageResList: null, _imageResList: null,
...@@ -50,8 +183,222 @@ cc.Class({ ...@@ -50,8 +183,222 @@ cc.Class({
this._mapScaleMin = Math.min(sx, sy) * this._cocosScale; this._mapScaleMin = Math.min(sx, sy) * this._cocosScale;
this._mapScaleMax = Math.max(sx, sy) * this._cocosScale; this._mapScaleMax = Math.max(sx, sy) * this._cocosScale;
}, },
createStateMachine(){
const check = [
{ target: '#game.end', cond: (ctx, evt) => {
console.log('[answer NEXT] check if end', ctx.questionIndex >= ctx.questionsCount - 1);
return ctx.questionIndex >= ctx.questionsCount -1
} },
{ target: 'hint' } // reenter 'hint' state
]
const QuestionState = {
id: 'question',
initial: 'hint',
states: {
hint: {
invoke: {
src: (ctx, event) => {
const rt = RandomInt(3000, 5000);
console.log(`[hint] play question ${ctx.questionIndex}: ${ctx.questionPlayTimes } audio ${rt}`);
return new Promise((resolve,reject) => {
playAudioByUrl(this.data.playing_questions[ctx.questionIndex].hint_audio, () => {
console.log('hint finish');
resolve()
})
})
},
onDone: 'answer',
onError: 'answer'
}
},
answer: {
after: {
5000: [
{
target: '#QuestionsArray.next',
actions: raise('CHECK'),
cond: (ctx, evt) => {
console.log('[timeout check] check if end', ctx.questionPlayTimes , ctx.maxQuestionTryTimes);
return ctx.questionPlayTimes >= ctx.maxQuestionTryTimes;
}
},
{ target: 'retry', actions: raise('CHECK') } // reenter 'hint' state
]
},
invoke: {
src: (ctx) => {
ctx.questionPlayTimes += 1;
const rt = RandomInt(4500, 5500)
console.log('[answer] thinking and playing', rt, rt<5000 ? 'should 1111': '');
return new Promise((resolve,reject) => {
setTimeout(() => {
if(rt < 5000) {
console.log('[answer] finish, go done', rt % 2);
}
if (rt % 2 == 1) {
resolve()
} else {
reject()
}
}, rt)
})
},
onDone: {
target: '#QuestionsArray.next',
actions: raise('CHECK')
},
onError: {
target: 'retry',
actions: raise('CHECK')
}
}
},
retry: {
on: {
CHECK: [
{ target: 'hint' },
{
target: '#QuestionsArray.next',
actions: raise('CHECK'),
cond: (ctx, evt) => {
const c = ctx.questionPlayTimes >= ctx.maxQuestionTryTimes;
// ctx.questionPlayTimes = ctx.questionPlayTimes + 1;
console.log('#QuestionsArray.next', c)
return c
}
}
]
},
},
}
}
const QuestionsArrayStatus = {
id: 'QuestionsArray',
initial: 'play',
states: {
play: {
...QuestionState
},
next: {
on: {
CHECK: [
{
target: '#game.end',
cond: (ctx, evt) => {
ctx.questionIndex += 1;
ctx.questionPlayTimes = 0
console.log('#game.end', ctx.questionIndex >= ctx.questionsCount )
return ctx.questionIndex >= ctx.questionsCount
}
},
{target: 'play'}
]
}
}
}
}
const state = {
id: 'game',
initial: 'begin',
context: {
questionIndex: 0,
questionPlayTimes: 0,
maxQuestionTryTimes: 2,
questionsCount: this.data.playing_questions.length,
},
states: {
begin: {
invoke: {
src: (ctx) => {
console.log('game begin');
return new Promise((resolve,reject) => {
playAudioByUrl(this.data.begin_audio, () => {
console.log('game begin audio finish');
resolve()
})
});
},
onDone: 'playing',
onError: 'playing'
}
},
playing: {
entry: () => {
console.log('entry play stage');
cc.assetManager.loadRemote(this.data.playing_audio, (err, audioClip) => {
cc.audioEngine.playMusic(audioClip, true, 0.8);
});
},
exit: () => {
console.log('exit play stage');
cc.audioEngine.stopMusic();
},
on: {
NEXT: 'end'
},
// ...QuestionsStates
...QuestionsArrayStatus
},
end: {
entry: (ctx, event) => {
console.log('game end', ctx, event);
cc.assetManager.loadRemote(this.data.playing_audio, (err, audioClip) => {
cc.audioEngine.playMusic(audioClip, true, 0.8);
});
// return new Promise((resolve,reject) => {
// setTimeout(() => {
// console.log('hint finish');
// resolve()
// }, 2000)
// })
}
},
}
};
const after = {};
for(const t of this.data.begin_time_point) {
const k = t.time * 1000;
after[k]= {
actions: () => {
console.log(k)
this.playAni(t.node, t.name)
}
}
}
state.states.begin.after = after;
// state.states.begin.after = {
// 1000: { actions: () => {console.log(1000)} },
// 2000: { actions: () => {console.log(2000)} },
// }
const gameMachine = createMachine(state);
window.gameMachine = gameMachine;
const gameMachineService = interpret(gameMachine).onTransition((state) => {
// console.log(1, state.value, state.context);
});
gameMachineService.start();
window.gameMachineService = gameMachineService;
},
// 生命周期 start // 生命周期 start
start() { start() {
let getData = this.getData.bind(this); let getData = this.getData.bind(this);
...@@ -64,7 +411,10 @@ cc.Class({ ...@@ -64,7 +411,10 @@ cc.Class({
this.data = data || this.getDefaultData(); this.data = data || this.getDefaultData();
this.data = JSON.parse(JSON.stringify(this.data)) this.data = JSON.parse(JSON.stringify(this.data))
this.preloadItem() this.preloadItem()
}) });
}, },
getData(func) { getData(func) {
...@@ -97,13 +447,20 @@ cc.Class({ ...@@ -97,13 +447,20 @@ cc.Class({
addPreloadImage() { addPreloadImage() {
this._imageResList.push({ url: this.data.pic_url }); // this._imageResList.push({ url: this.data.pic_url});
this._imageResList.push({ url: this.data.pic_url_2 }); // this._imageResList.push({ url: this.data.pic_url_2 });
}, },
addPreloadAudio() { addPreloadAudio() {
this._audioResList.push({ url: this.data.audio_url }); this._audioResList.push({ url: this.data.begin_audio });
this._audioResList.push({ url: this.data.playing_audio });
this._audioResList.push({ url: this.data.end_audio });
for (const q of this.data.playing_questions) {
this._audioResList.push({ url: q.hint_audio });
}
}, },
addPreloadAnima() { addPreloadAnima() {
...@@ -113,8 +470,20 @@ cc.Class({ ...@@ -113,8 +470,20 @@ cc.Class({
preload() { preload() {
const preloadArr = this._imageResList.concat(this._audioResList).concat(this._animaResList); const preloadArr = this._imageResList.concat(this._audioResList).concat(this._animaResList);
cc.assetManager.loadAny(preloadArr, null, null, (err, data) => { console.log(preloadArr);
cc.assetManager.loadAny(preloadArr, null, (f, t, item) => {
// console.log(f, t, item)
}, (err, data) => {
console.log(err, data);
for (const asset of data) {
if (asset.constructor.name === 'ImageBitmap') {
const t = new cc.Texture2D()
t.initWithData(asset);
} else if (asset.constructor.name === 'AudioBuffer') {
const clip = new cc.AudioClip()
clip._nativeAsset = asset;
}
}
this.loadEnd(); this.loadEnd();
if (window && window["air"]) { if (window && window["air"]) {
window["air"].hideAirClassLoading(); window["air"].hideAirClassLoading();
...@@ -130,6 +499,7 @@ cc.Class({ ...@@ -130,6 +499,7 @@ cc.Class({
this.initAudio(); this.initAudio();
this.initView(); this.initView();
// this.initListener(); // this.initListener();
this.createStateMachine();
}, },
_cantouch: null, _cantouch: null,
...@@ -162,6 +532,7 @@ cc.Class({ ...@@ -162,6 +532,7 @@ cc.Class({
initBg() { initBg() {
const bgNode = cc.find('Canvas/bg'); const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax; bgNode.scale = this._mapScaleMax;
console.log('this._mapScaleMax', this._mapScaleMax);
}, },
pic1: null, pic1: null,
...@@ -174,7 +545,7 @@ cc.Class({ ...@@ -174,7 +545,7 @@ cc.Class({
const picNode1 = sprNode; const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width; picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x; picNode1.baseX = picNode1.x;
canvas.addChild(picNode1); // canvas.addChild(picNode1);
this.pic1 = picNode1; this.pic1 = picNode1;
const labelNode = new cc.Node(); const labelNode = new cc.Node();
...@@ -184,7 +555,7 @@ cc.Class({ ...@@ -184,7 +555,7 @@ cc.Class({
label.fontSize = 60; label.fontSize = 60;
label.lineHeight = 60; label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font; label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode); // picNode1.addChild(labelNode);
}); });
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => { this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
......
export const defaultData = {
"begin_audio": "https://staging-teach.cdn.ireadabc.com/1286422024027254.mp3",
"begin_time_point":[
{"time": 5.368, "node": "house", "name": "normal"},
{"time": 8.368, "node": "apple", "name": "normal"},
{"time": 11.368, "node": "bird", "name": "normal"},
{"time": 15.368, "node": "car", "name": "normal"},
],
"playing_audio": "https://staging-teach.cdn.ireadabc.com/N78ONR89QOEVUJWADB62AD72C48CCFC3.mp3",
"playing_questions": [
{
"hint_audio": "https://staging-teach.cdn.ireadabc.com/one.mp3",
},
{
"hint_audio": "https://staging-teach.cdn.ireadabc.com/two.mp3",
},
{
"hint_audio": "https://staging-teach.cdn.ireadabc.com/three.mp3",
},
{
"hint_audio": "https://staging-teach.cdn.ireadabc.com/four.mp3",
},
],
"end_audio": "https://staging-teach.cdn.ireadabc.com/N78ONR89QOEVUJWADB62AD72C48CCFC3.mp3",
// "pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
// "pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
// "text": "This is a test label.",
// "audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
/*! *****************************************************************************
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */
function t(t,n){var e="function"==typeof Symbol&&t[Symbol.iterator];if(!e)return t;var r,o,i=e.call(t),a=[];try{for(;(void 0===n||n-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(e=i.return)&&e.call(i)}finally{if(o)throw o.error}}return a}var n;!function(t){t[t.NotStarted=0]="NotStarted",t[t.Running=1]="Running",t[t.Stopped=2]="Stopped"}(n||(n={}));var e={type:"xstate.init"};function r(t){return void 0===t?[]:[].concat(t)}function o(t){return{type:"xstate.assign",assignment:t}}function i(t,n){return"string"==typeof(t="string"==typeof t&&n&&n[t]?n[t]:t)?{type:t}:"function"==typeof t?{type:t.name,exec:t}:t}function a(t){return function(n){return t===n}}function u(t){return"string"==typeof t?{type:t}:t}function c(t,n){return{value:t,context:n,actions:[],changed:!1,matches:a(t)}}function f(t,n,e){var r=n,o=!1;return[t.filter((function(t){if("xstate.assign"===t.type){o=!0;var n=Object.assign({},r);return"function"==typeof t.assignment?n=t.assignment(r,e):Object.keys(t.assignment).forEach((function(o){n[o]="function"==typeof t.assignment[o]?t.assignment[o](r,e):t.assignment[o]})),r=n,!1}return!0})),r,o]}function s(n,o){void 0===o&&(o={});var s=t(f(r(n.states[n.initial].entry).map((function(t){return i(t,o.actions)})),n.context,e),2),l=s[0],v=s[1],y={config:n,_options:o,initialState:{value:n.initial,actions:l,context:v,matches:a(n.initial)},transition:function(e,o){var s,l,v="string"==typeof e?{value:e,context:n.context}:e,p=v.value,g=v.context,d=u(o),x=n.states[p];if(x.on){var m=r(x.on[d.type]);try{for(var h=function(t){var n="function"==typeof Symbol&&Symbol.iterator,e=n&&t[n],r=0;if(e)return e.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}(m),b=h.next();!b.done;b=h.next()){var S=b.value;if(void 0===S)return c(p,g);var w="string"==typeof S?{target:S}:S,j=w.target,E=w.actions,R=void 0===E?[]:E,N=w.cond,O=void 0===N?function(){return!0}:N,_=void 0===j,k=null!=j?j:p,T=n.states[k];if(O(g,d)){var q=t(f((_?r(R):[].concat(x.exit,R,T.entry).filter((function(t){return t}))).map((function(t){return i(t,y._options.actions)})),g,d),3),z=q[0],A=q[1],B=q[2],C=null!=j?j:p;return{value:C,context:A,actions:z,changed:j!==p||z.length>0||B,matches:a(C)}}}}catch(t){s={error:t}}finally{try{b&&!b.done&&(l=h.return)&&l.call(h)}finally{if(s)throw s.error}}}return c(p,g)}};return y}var l=function(t,n){return t.actions.forEach((function(e){var r=e.exec;return r&&r(t.context,n)}))};function v(t){var r=t.initialState,o=n.NotStarted,i=new Set,c={_machine:t,send:function(e){o===n.Running&&(r=t.transition(r,e),l(r,u(e)),i.forEach((function(t){return t(r)})))},subscribe:function(t){return i.add(t),t(r),{unsubscribe:function(){return i.delete(t)}}},start:function(i){if(i){var u="object"==typeof i?i:{context:t.config.context,value:i};r={value:u.value,actions:[],context:u.context,matches:a(u.value)}}return o=n.Running,l(r,e),c},stop:function(){return o=n.Stopped,i.clear(),c},get state(){return r},get status(){return o}};return c}export{n as InterpreterStatus,o as assign,s as createMachine,v as interpret};
{
"ver": "1.0.8",
"uuid": "6acefbc5-00ef-4eee-abea-1059f3e4f263",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).XState={})}(this,(function(t){"use strict";
/*! *****************************************************************************
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */var e=function(){return(e=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}).apply(this,arguments)};function n(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(t);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]])}return n}function r(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function i(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=o.next()).done;)a.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return a}function o(t,e,n){if(n||2===arguments.length)for(var r,i=0,o=e.length;i<o;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}var a={};function s(t){return Object.keys(t)}function c(t,e,n){void 0===n&&(n=".");var r=f(t,n),i=f(e,n);return A(i)?!!A(r)&&i===r:A(r)?r in i:s(r).every((function(t){return t in i&&c(r[t],i[t])}))}function u(t){try{return A(t)||"number"==typeof t?"".concat(t):t.type}catch(t){throw new Error("Events must be strings or objects with a string event.type property.")}}function h(t,e){try{return T(t)?t:t.toString().split(e)}catch(e){throw new Error("'".concat(t,"' is not a valid state path."))}}function f(t,e){return"object"==typeof(n=t)&&"value"in n&&"context"in n&&"event"in n&&"_event"in n?t.value:T(t)?l(t):"string"!=typeof t?t:l(h(t,e));var n}function l(t){if(1===t.length)return t[0];for(var e={},n=e,r=0;r<t.length-1;r++)r===t.length-2?n[t[r]]=t[r+1]:(n[t[r]]={},n=n[t[r]]);return e}function d(t,e){for(var n={},r=s(t),i=0;i<r.length;i++){var o=r[i];n[o]=e(t[o],o,t,i)}return n}function p(t,e,n){var i,o,a={};try{for(var c=r(s(t)),u=c.next();!u.done;u=c.next()){var h=u.value,f=t[h];n(f)&&(a[h]=e(f,h,t))}}catch(t){i={error:t}}finally{try{u&&!u.done&&(o=c.return)&&o.call(c)}finally{if(i)throw i.error}}return a}var v=function(t){return function(e){var n,i,o=e;try{for(var a=r(t),s=a.next();!s.done;s=a.next()){o=o[s.value]}}catch(t){n={error:t}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}return o}};function y(t){return t?A(t)?[[t]]:g(s(t).map((function(e){var n=t[e];return"string"==typeof n||n&&Object.keys(n).length?y(t[e]).map((function(t){return[e].concat(t)})):[[e]]}))):[[]]}function g(t){var e;return(e=[]).concat.apply(e,o([],i(t),!1))}function m(t){return T(t)?t:[t]}function S(t){return void 0===t?[]:m(t)}function x(t,e,n){var i,o;if(N(t))return t(e,n.data);var a={};try{for(var s=r(Object.keys(t)),c=s.next();!c.done;c=s.next()){var u=c.value,h=t[u];N(h)?a[u]=h(e,n.data):a[u]=h}}catch(t){i={error:t}}finally{try{c&&!c.done&&(o=s.return)&&o.call(s)}finally{if(i)throw i.error}}return a}function w(t){return t instanceof Promise||!(null===t||!N(t)&&"object"!=typeof t||!N(t.then))}function b(t,e){var n,o,a=i([[],[]],2),s=a[0],c=a[1];try{for(var u=r(t),h=u.next();!h.done;h=u.next()){var f=h.value;e(f)?s.push(f):c.push(f)}}catch(t){n={error:t}}finally{try{h&&!h.done&&(o=u.return)&&o.call(u)}finally{if(n)throw n.error}}return[s,c]}function _(t,e){return d(t.states,(function(t,n){if(t){var r=(A(e)?void 0:e[n])||(t?t.current:void 0);if(r)return{current:r,states:_(t,r)}}}))}function E(t,e,n,i){return t?n.reduce((function(t,n){var o,a,c=n.assignment,u={state:i,action:n,_event:e},h={};if(N(c))h=c(t,e.data,u);else try{for(var f=r(s(c)),l=f.next();!l.done;l=f.next()){var d=l.value,p=c[d];h[d]=N(p)?p(t,e.data,u):p}}catch(t){o={error:t}}finally{try{l&&!l.done&&(a=f.return)&&a.call(f)}finally{if(o)throw o.error}}return Object.assign({},t,h)}),t):t}function T(t){return Array.isArray(t)}function N(t){return"function"==typeof t}function A(t){return"string"==typeof t}function O(t,e){if(t)return A(t)?{type:"xstate.guard",name:t,predicate:e?e[t]:void 0}:N(t)?{type:"xstate.guard",name:t.name,predicate:t}:t}var P=function(){return"function"==typeof Symbol&&Symbol.observable||"@@observable"}();function k(t){try{return"__xstatenode"in t}catch(t){return!1}}var I,j,C=function(){var t=0;return function(){return(++t).toString(16)}}();function V(t,n){return A(t)||"number"==typeof t?e({type:t},n):t}function L(t,n){if(!A(t)&&"$$type"in t&&"scxml"===t.$$type)return t;var r=V(t);return e({name:r.type,data:r,$$type:"scxml",type:"external"},n)}function D(t,n){return m(n).map((function(n){return void 0===n||"string"==typeof n||k(n)?{target:n,event:t}:e(e({},n),{event:t})}))}function R(t,e,n,r,i){var o=t.options.guards,a={state:i,cond:e,_event:r};if("xstate.guard"===e.type)return((null==o?void 0:o[e.name])||e.predicate)(n,r.data,a);var s=o[e.type];if(!s)throw new Error("Guard '".concat(e.type,"' is not implemented on machine '").concat(t.id,"'."));return s(n,r.data,a)}function M(t){return"string"==typeof t?{type:t}:t}function z(t,e,n){if("object"==typeof t)return t;var r=function(){};return{next:t,error:e||r,complete:n||r}}(I=t.ActionTypes||(t.ActionTypes={})).Start="xstate.start",I.Stop="xstate.stop",I.Raise="xstate.raise",I.Send="xstate.send",I.Cancel="xstate.cancel",I.NullEvent="",I.Assign="xstate.assign",I.After="xstate.after",I.DoneState="done.state",I.DoneInvoke="done.invoke",I.Log="xstate.log",I.Init="xstate.init",I.Invoke="xstate.invoke",I.ErrorExecution="error.execution",I.ErrorCommunication="error.communication",I.ErrorPlatform="error.platform",I.ErrorCustom="xstate.error",I.Update="xstate.update",I.Pure="xstate.pure",I.Choose="xstate.choose",(j=t.SpecialTargets||(t.SpecialTargets={})).Parent="#_parent",j.Internal="#_internal";var F=function(t){return"atomic"===t.type||"final"===t.type};function U(t){return s(t.states).map((function(e){return t.states[e]}))}function B(t){var e=[t];return F(t)?e:e.concat(g(U(t).map(B)))}function J(t,e){var n,i,o,a,s,c,u,h,f=q(new Set(t)),l=new Set(e);try{for(var d=r(l),p=d.next();!p.done;p=d.next())for(var v=(E=p.value).parent;v&&!l.has(v);)l.add(v),v=v.parent}catch(t){n={error:t}}finally{try{p&&!p.done&&(i=d.return)&&i.call(d)}finally{if(n)throw n.error}}var y=q(l);try{for(var g=r(l),m=g.next();!m.done;m=g.next()){if("compound"!==(E=m.value).type||y.get(E)&&y.get(E).length){if("parallel"===E.type)try{for(var S=(s=void 0,r(U(E))),x=S.next();!x.done;x=S.next()){var w=x.value;"history"!==w.type&&(l.has(w)||(l.add(w),f.get(w)?f.get(w).forEach((function(t){return l.add(t)})):w.initialStateNodes.forEach((function(t){return l.add(t)}))))}}catch(t){s={error:t}}finally{try{x&&!x.done&&(c=S.return)&&c.call(S)}finally{if(s)throw s.error}}}else f.get(E)?f.get(E).forEach((function(t){return l.add(t)})):E.initialStateNodes.forEach((function(t){return l.add(t)}))}}catch(t){o={error:t}}finally{try{m&&!m.done&&(a=g.return)&&a.call(g)}finally{if(o)throw o.error}}try{for(var b=r(l),_=b.next();!_.done;_=b.next()){var E;for(v=(E=_.value).parent;v&&!l.has(v);)l.add(v),v=v.parent}}catch(t){u={error:t}}finally{try{_&&!_.done&&(h=b.return)&&h.call(b)}finally{if(u)throw u.error}}return l}function q(t){var e,n,i=new Map;try{for(var o=r(t),a=o.next();!a.done;a=o.next()){var s=a.value;i.has(s)||i.set(s,[]),s.parent&&(i.has(s.parent)||i.set(s.parent,[]),i.get(s.parent).push(s))}}catch(t){e={error:t}}finally{try{a&&!a.done&&(n=o.return)&&n.call(o)}finally{if(e)throw e.error}}return i}function $(t,e){return function t(e,n){var r=n.get(e);if(!r)return{};if("compound"===e.type){var i=r[0];if(!i)return{};if(F(i))return i.key}var o={};return r.forEach((function(e){o[e.key]=t(e,n)})),o}(t,q(J([t],e)))}function X(t,e){return Array.isArray(t)?t.some((function(t){return t===e})):t instanceof Set&&t.has(e)}function H(t,e){return"compound"===e.type?U(e).some((function(e){return"final"===e.type&&X(t,e)})):"parallel"===e.type&&U(e).every((function(e){return H(t,e)}))}function G(t){return new Set(g(t.map((function(t){return t.tags}))))}var K=t.ActionTypes.Start,Q=t.ActionTypes.Stop,W=t.ActionTypes.Raise,Y=t.ActionTypes.Send,Z=t.ActionTypes.Cancel,tt=t.ActionTypes.NullEvent,et=t.ActionTypes.Assign,nt=(t.ActionTypes.After,t.ActionTypes.DoneState,t.ActionTypes.Log),rt=t.ActionTypes.Init,it=t.ActionTypes.Invoke,ot=(t.ActionTypes.ErrorExecution,t.ActionTypes.ErrorPlatform),at=t.ActionTypes.ErrorCustom,st=t.ActionTypes.Update,ct=t.ActionTypes.Choose,ut=t.ActionTypes.Pure,ht=L({type:rt});function ft(t,e){return e&&e[t]||void 0}function lt(t,n){var r;if(A(t)||"number"==typeof t)r=N(i=ft(t,n))?{type:t,exec:i}:i||{type:t,exec:void 0};else if(N(t))r={type:t.name||t.toString(),exec:t};else{var i;if(N(i=ft(t.type,n)))r=e(e({},t),{exec:i});else if(i){var o=i.type||t.type;r=e(e(e({},i),t),{type:o})}else r=t}return r}var dt=function(t,e){return t?(T(t)?t:[t]).map((function(t){return lt(t,e)})):[]};function pt(t){var n=lt(t);return e(e({id:A(t)?t:n.id},n),{type:n.type})}function vt(e){return A(e)?{type:W,event:e}:yt(e,{to:t.SpecialTargets.Internal})}function yt(t,e){return{to:e?e.to:void 0,type:Y,event:N(t)?t:V(t),delay:e?e.delay:void 0,id:e&&void 0!==e.id?e.id:N(t)?t.name:u(t)}}function gt(n,r){return yt(n,e(e({},r),{to:t.SpecialTargets.Parent}))}function mt(){return gt(st)}var St=function(t,e){return{context:t,event:e}};var xt=function(t){return{type:Z,sendId:t}};function wt(e){var n=pt(e);return{type:t.ActionTypes.Start,activity:n,exec:void 0}}function bt(e){var n=N(e)?e:pt(e);return{type:t.ActionTypes.Stop,activity:n,exec:void 0}}var _t=function(t){return{type:et,assignment:t}};function Et(e,n){var r=n?"#".concat(n):"";return"".concat(t.ActionTypes.After,"(").concat(e,")").concat(r)}function Tt(e,n){var r="".concat(t.ActionTypes.DoneState,".").concat(e),i={type:r,data:n,toString:function(){return r}};return i}function Nt(e,n){var r="".concat(t.ActionTypes.DoneInvoke,".").concat(e),i={type:r,data:n,toString:function(){return r}};return i}function At(e,n){var r="".concat(t.ActionTypes.ErrorPlatform,".").concat(e),i={type:r,data:n,toString:function(){return r}};return i}function Ot(t,n){return yt((function(t,e){return e}),e(e({},n),{to:t}))}function Pt(n,r,a,s,c,u){void 0===u&&(u=!1);var h=i(u?[[],c]:b(c,(function(t){return t.type===et})),2),f=h[0],l=h[1],d=f.length?E(a,s,f,r):a,p=u?[a]:void 0;return[g(l.map((function(a){var c;switch(a.type){case W:return{type:W,_event:L(a.event)};case Y:return function(t,n,r,i){var o,a={_event:r},s=L(N(t.event)?t.event(n,r.data,a):t.event);if(A(t.delay)){var c=i&&i[t.delay];o=N(c)?c(n,r.data,a):c}else o=N(t.delay)?t.delay(n,r.data,a):t.delay;var u=N(t.to)?t.to(n,r.data,a):t.to;return e(e({},t),{to:u,_event:s,event:s.data,delay:o})}(a,d,s,n.options.delays);case nt:return function(t,n,r){return e(e({},t),{value:A(t.expr)?t.expr:t.expr(n,r.data,{_event:r})})}(a,d,s);case ct:if(!(v=null===(c=a.conds.find((function(t){var e=O(t.cond,n.options.guards);return!e||R(n,e,d,s,r)})))||void 0===c?void 0:c.actions))return[];var h=i(Pt(n,r,d,s,dt(S(v),n.options.actions),u),2),f=h[0],l=h[1];return d=l,null==p||p.push(d),f;case ut:var v;if(!(v=a.get(d,s.data)))return[];var y=i(Pt(n,r,d,s,dt(S(v),n.options.actions),u),2),g=y[0],m=y[1];return d=m,null==p||p.push(d),g;case Q:return function(e,n,r){var i=N(e.activity)?e.activity(n,r.data):e.activity,o="string"==typeof i?{id:i}:i;return{type:t.ActionTypes.Stop,activity:o}}(a,d,s);case et:d=E(d,s,[a],r),null==p||p.push(d);break;default:var x=lt(a,n.options.actions),w=x.exec;if(w&&p){var b=p.length-1;x=e(e({},x),{exec:function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];w.apply(void 0,o([p[b]],i(e),!1))}})}return x}})).filter((function(t){return!!t}))),d]}var kt=function(){function t(t){var e,n,r=this;this.actions=[],this.activities=a,this.meta={},this.events=[],this.value=t.value,this.context=t.context,this._event=t._event,this._sessionid=t._sessionid,this.event=this._event.data,this.historyValue=t.historyValue,this.history=t.history,this.actions=t.actions||[],this.activities=t.activities||a,this.meta=(void 0===(n=t.configuration)&&(n=[]),n.reduce((function(t,e){return void 0!==e.meta&&(t[e.id]=e.meta),t}),{})),this.events=t.events||[],this.matches=this.matches.bind(this),this.toStrings=this.toStrings.bind(this),this.configuration=t.configuration,this.transitions=t.transitions,this.children=t.children,this.done=!!t.done,this.tags=null!==(e=Array.isArray(t.tags)?new Set(t.tags):t.tags)&&void 0!==e?e:new Set,this.machine=t.machine,Object.defineProperty(this,"nextEvents",{get:function(){return function(t){return o([],i(new Set(g(o([],i(t.map((function(t){return t.ownEvents}))),!1)))),!1)}(r.configuration)}})}return t.from=function(e,n){return e instanceof t?e.context!==n?new t({value:e.value,context:n,_event:e._event,_sessionid:null,historyValue:e.historyValue,history:e.history,actions:[],activities:e.activities,meta:{},events:[],configuration:[],transitions:[],children:{}}):e:new t({value:e,context:n,_event:ht,_sessionid:null,historyValue:void 0,history:void 0,actions:[],activities:void 0,meta:void 0,events:[],configuration:[],transitions:[],children:{}})},t.create=function(e){return new t(e)},t.inert=function(e,n){if(e instanceof t){if(!e.actions.length)return e;var r=ht;return new t({value:e.value,context:n,_event:r,_sessionid:null,historyValue:e.historyValue,history:e.history,activities:e.activities,configuration:e.configuration,transitions:[],children:{}})}return t.from(e,n)},t.prototype.toStrings=function(t,e){var n=this;if(void 0===t&&(t=this.value),void 0===e&&(e="."),A(t))return[t];var r=s(t);return r.concat.apply(r,o([],i(r.map((function(r){return n.toStrings(t[r],e).map((function(t){return r+e+t}))}))),!1))},t.prototype.toJSON=function(){var t=this,r=(t.configuration,t.transitions,t.tags),i=(t.machine,n(t,["configuration","transitions","tags","machine"]));return e(e({},i),{tags:Array.from(r)})},t.prototype.matches=function(t){return c(t,this.value)},t.prototype.hasTag=function(t){return this.tags.has(t)},t.prototype.can=function(t){var e;return this.machine,!!(null===(e=this.machine)||void 0===e?void 0:e.transition(this,t).changed)},t}(),It=[],jt=function(t,e){It.push(t);var n=e(t);return It.pop(),n};function Ct(t){return{id:t,send:function(){},subscribe:function(){return{unsubscribe:function(){}}},getSnapshot:function(){},toJSON:function(){return{id:t}}}}function Vt(t,e,n){var r=Ct(e);if(r.deferred=!0,k(t)){var i=r.state=jt(void 0,(function(){return(n?t.withContext(n):t).initialState}));r.getSnapshot=function(){return i}}return r}function Lt(t){if("string"==typeof t){var e={type:t,toString:function(){return t}};return e}return t}function Dt(t){return e(e({type:it},t),{toJSON:function(){t.onDone,t.onError;var r=n(t,["onDone","onError"]);return e(e({},r),{type:it,src:Lt(t.src)})}})}var Rt={},Mt=function(t){return"#"===t[0]},zt=function(){function a(t,n,c){var u,h=this;void 0===c&&(c="context"in t?t.context:void 0),this.config=t,this._context=c,this.order=-1,this.__xstatenode=!0,this.__cache={events:void 0,relativeValue:new Map,initialStateValue:void 0,initialState:void 0,on:void 0,transitions:void 0,candidates:{},delayedTransitions:void 0},this.idMap={},this.tags=[],this.options=Object.assign({actions:{},guards:{},services:{},activities:{},delays:{}},n),this.parent=this.options._parent,this.key=this.config.key||this.options._key||this.config.id||"(machine)",this.machine=this.parent?this.parent.machine:this,this.path=this.parent?this.parent.path.concat(this.key):[],this.delimiter=this.config.delimiter||(this.parent?this.parent.delimiter:"."),this.id=this.config.id||o([this.machine.key],i(this.path),!1).join(this.delimiter),this.version=this.parent?this.parent.version:this.config.version,this.type=this.config.type||(this.config.parallel?"parallel":this.config.states&&s(this.config.states).length?"compound":this.config.history?"history":"atomic"),this.schema=this.parent?this.machine.schema:null!==(u=this.config.schema)&&void 0!==u?u:{},this.description=this.config.description,this.initial=this.config.initial,this.states=this.config.states?d(this.config.states,(function(t,n){var r,i=new a(t,{_parent:h,_key:n});return Object.assign(h.idMap,e(((r={})[i.id]=i,r),i.idMap)),i})):Rt;var f=0;!function t(e){var n,i;e.order=f++;try{for(var o=r(U(e)),a=o.next();!a.done;a=o.next()){t(a.value)}}catch(t){n={error:t}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}}(this),this.history=!0===this.config.history?"shallow":this.config.history||!1,this._transient=!!this.config.always||!!this.config.on&&(Array.isArray(this.config.on)?this.config.on.some((function(t){return""===t.event})):""in this.config.on),this.strict=!!this.config.strict,this.onEntry=S(this.config.entry||this.config.onEntry).map((function(t){return lt(t)})),this.onExit=S(this.config.exit||this.config.onExit).map((function(t){return lt(t)})),this.meta=this.config.meta,this.doneData="final"===this.type?this.config.data:void 0,this.invoke=S(this.config.invoke).map((function(t,n){var r,i;if(k(t))return h.machine.options.services=e(((r={})[t.id]=t,r),h.machine.options.services),Dt({src:t.id,id:t.id});if(A(t.src))return Dt(e(e({},t),{id:t.id||t.src,src:t.src}));if(k(t.src)||N(t.src)){var o="".concat(h.id,":invocation[").concat(n,"]");return h.machine.options.services=e(((i={})[o]=t.src,i),h.machine.options.services),Dt(e(e({id:o},t),{src:o}))}var a=t.src;return Dt(e(e({id:a.type},t),{src:a}))})),this.activities=S(this.config.activities).concat(this.invoke).map((function(t){return pt(t)})),this.transition=this.transition.bind(this),this.tags=S(this.config.tags)}return a.prototype._init=function(){this.__cache.transitions||B(this).forEach((function(t){return t.on}))},a.prototype.withConfig=function(t,n){var r=this.options,i=r.actions,o=r.activities,s=r.guards,c=r.services,u=r.delays;return new a(this.config,{actions:e(e({},i),t.actions),activities:e(e({},o),t.activities),guards:e(e({},s),t.guards),services:e(e({},c),t.services),delays:e(e({},u),t.delays)},null!=n?n:this.context)},a.prototype.withContext=function(t){return new a(this.config,this.options,t)},Object.defineProperty(a.prototype,"context",{get:function(){return N(this._context)?this._context():this._context},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"definition",{get:function(){return{id:this.id,key:this.key,version:this.version,context:this.context,type:this.type,initial:this.initial,history:this.history,states:d(this.states,(function(t){return t.definition})),on:this.on,transitions:this.transitions,entry:this.onEntry,exit:this.onExit,activities:this.activities||[],meta:this.meta,order:this.order||-1,data:this.doneData,invoke:this.invoke,description:this.description,tags:this.tags}},enumerable:!1,configurable:!0}),a.prototype.toJSON=function(){return this.definition},Object.defineProperty(a.prototype,"on",{get:function(){if(this.__cache.on)return this.__cache.on;var t=this.transitions;return this.__cache.on=t.reduce((function(t,e){return t[e.eventType]=t[e.eventType]||[],t[e.eventType].push(e),t}),{})},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"after",{get:function(){return this.__cache.delayedTransitions||(this.__cache.delayedTransitions=this.getDelayedTransitions(),this.__cache.delayedTransitions)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"transitions",{get:function(){return this.__cache.transitions||(this.__cache.transitions=this.formatTransitions(),this.__cache.transitions)},enumerable:!1,configurable:!0}),a.prototype.getCandidates=function(t){if(this.__cache.candidates[t])return this.__cache.candidates[t];var e=""===t,n=this.transitions.filter((function(n){var r=n.eventType===t;return e?r:r||"*"===n.eventType}));return this.__cache.candidates[t]=n,n},a.prototype.getDelayedTransitions=function(){var t=this,n=this.config.after;if(!n)return[];var r=function(e,n){var r=Et(N(e)?"".concat(t.id,":delay[").concat(n,"]"):e,t.id);return t.onEntry.push(yt(r,{delay:e})),t.onExit.push(xt(r)),r};return(T(n)?n.map((function(t,n){var i=r(t.delay,n);return e(e({},t),{event:i})})):g(s(n).map((function(t,i){var o=n[t],a=A(o)?{target:o}:o,s=isNaN(+t)?t:+t,c=r(s,i);return S(a).map((function(t){return e(e({},t),{event:c,delay:s})}))})))).map((function(n){var r=n.delay;return e(e({},t.formatTransition(n)),{delay:r})}))},a.prototype.getStateNodes=function(t){var e,n=this;if(!t)return[];var r=t instanceof kt?t.value:f(t,this.delimiter);if(A(r)){var i=this.getStateNode(r).initial;return void 0!==i?this.getStateNodes(((e={})[r]=i,e)):[this,this.states[r]]}var o=s(r),a=o.map((function(t){return n.getStateNode(t)}));return a.push(this),a.concat(o.reduce((function(t,e){var i=n.getStateNode(e).getStateNodes(r[e]);return t.concat(i)}),[]))},a.prototype.handles=function(t){var e=u(t);return this.events.includes(e)},a.prototype.resolveState=function(t){var n=Array.from(J([],this.getStateNodes(t.value)));return new kt(e(e({},t),{value:this.resolve(t.value),configuration:n,done:H(n,this),tags:G(n)}))},a.prototype.transitionLeafNode=function(t,e,n){var r=this.getStateNode(t).next(e,n);return r&&r.transitions.length?r:this.next(e,n)},a.prototype.transitionCompoundNode=function(t,e,n){var r=s(t),i=this.getStateNode(r[0])._transition(t[r[0]],e,n);return i&&i.transitions.length?i:this.next(e,n)},a.prototype.transitionParallelNode=function(t,e,n){var i,o,a={};try{for(var c=r(s(t)),u=c.next();!u.done;u=c.next()){var h=u.value,f=t[h];if(f){var l=this.getStateNode(h)._transition(f,e,n);l&&(a[h]=l)}}}catch(t){i={error:t}}finally{try{u&&!u.done&&(o=c.return)&&o.call(c)}finally{if(i)throw i.error}}var d=s(a).map((function(t){return a[t]})),p=g(d.map((function(t){return t.transitions})));if(!d.some((function(t){return t.transitions.length>0})))return this.next(e,n);var v=g(d.map((function(t){return t.entrySet}))),y=g(s(a).map((function(t){return a[t].configuration})));return{transitions:p,entrySet:v,exitSet:g(d.map((function(t){return t.exitSet}))),configuration:y,source:e,actions:g(s(a).map((function(t){return a[t].actions})))}},a.prototype._transition=function(t,e,n){return A(t)?this.transitionLeafNode(t,e,n):1===s(t).length?this.transitionCompoundNode(t,e,n):this.transitionParallelNode(t,e,n)},a.prototype.next=function(t,e){var n,a,s,u=this,h=e.name,l=[],d=[];try{for(var p=r(this.getCandidates(h)),y=p.next();!y.done;y=p.next()){var m=y.value,S=m.cond,x=m.in,w=t.context,b=!x||(A(x)&&Mt(x)?t.matches(f(this.getStateNodeById(x).path,this.delimiter)):c(f(x,this.delimiter),v(this.path.slice(0,-2))(t.value))),_=!1;try{_=!S||R(this.machine,S,w,e,t)}catch(t){throw new Error("Unable to evaluate guard '".concat(S.name||S.type,"' in transition for event '").concat(h,"' in state node '").concat(this.id,"':\n").concat(t.message))}if(_&&b){void 0!==m.target&&(d=m.target),l.push.apply(l,o([],i(m.actions),!1)),s=m;break}}}catch(t){n={error:t}}finally{try{y&&!y.done&&(a=p.return)&&a.call(p)}finally{if(n)throw n.error}}if(s){if(!d.length)return{transitions:[s],entrySet:[],exitSet:[],configuration:t.value?[this]:[],source:t,actions:l};var E=g(d.map((function(e){return u.getRelativeStateNodes(e,t.historyValue)}))),T=!!s.internal;return{transitions:[s],entrySet:T?[]:g(E.map((function(t){return u.nodesFromChild(t)}))),exitSet:T?[]:[this],configuration:E,source:t,actions:l}}},a.prototype.nodesFromChild=function(t){if(t.escapes(this))return[];for(var e=[],n=t;n&&n!==this;)e.push(n),n=n.parent;return e.push(this),e},a.prototype.escapes=function(t){if(this===t)return!1;for(var e=this.parent;e;){if(e===t)return!1;e=e.parent}return!0},a.prototype.getActions=function(t,e,n,a){var s,c,u,h,f=J([],a?this.getStateNodes(a.value):[this]),l=t.configuration.length?J(f,t.configuration):f;try{for(var d=r(l),p=d.next();!p.done;p=d.next()){X(f,m=p.value)||t.entrySet.push(m)}}catch(t){s={error:t}}finally{try{p&&!p.done&&(c=d.return)&&c.call(d)}finally{if(s)throw s.error}}try{for(var v=r(f),y=v.next();!y.done;y=v.next()){var m;X(l,m=y.value)&&!X(t.exitSet,m.parent)||t.exitSet.push(m)}}catch(t){u={error:t}}finally{try{y&&!y.done&&(h=v.return)&&h.call(v)}finally{if(u)throw u.error}}t.source||(t.exitSet=[],t.entrySet.push(this));var S=g(t.entrySet.map((function(r){var i=[];if("final"!==r.type)return i;var o=r.parent;if(!o.parent)return i;i.push(Tt(r.id,r.doneData),Tt(o.id,r.doneData?x(r.doneData,e,n):void 0));var a=o.parent;return"parallel"===a.type&&U(a).every((function(e){return H(t.configuration,e)}))&&i.push(Tt(a.id)),i})));t.exitSet.sort((function(t,e){return e.order-t.order})),t.entrySet.sort((function(t,e){return t.order-e.order}));var w=new Set(t.entrySet),b=new Set(t.exitSet),_=i([g(Array.from(w).map((function(t){return o(o([],i(t.activities.map((function(t){return wt(t)}))),!1),i(t.onEntry),!1)}))).concat(S.map(vt)),g(Array.from(b).map((function(t){return o(o([],i(t.onExit),!1),i(t.activities.map((function(t){return bt(t)}))),!1)})))],2),E=_[0],T=_[1];return dt(T.concat(t.actions).concat(E),this.machine.options.actions)},a.prototype.transition=function(t,e,n){void 0===t&&(t=this.initialState);var r,a,s=L(e);if(t instanceof kt)r=void 0===n?t:this.resolveState(kt.from(t,n));else{var c=A(t)?this.resolve(l(this.getResolvedPath(t))):this.resolve(t),u=null!=n?n:this.machine.context;r=this.resolveState(kt.from(c,u))}if(this.strict&&!this.events.includes(s.name)&&(a=s.name,!/^(done|error)\./.test(a)))throw new Error("Machine '".concat(this.id,"' does not accept event '").concat(s.name,"'"));var h=this._transition(r.value,r,s)||{transitions:[],configuration:[],entrySet:[],exitSet:[],source:r,actions:[]},f=J([],this.getStateNodes(r.value)),d=h.configuration.length?J(f,h.configuration):f;return h.configuration=o([],i(d),!1),this.resolveTransition(h,r,s)},a.prototype.resolveRaisedTransition=function(t,e,n){var r,a=t.actions;return(t=this.transition(t,e))._event=n,t.event=n.data,(r=t.actions).unshift.apply(r,o([],i(a),!1)),t},a.prototype.resolveTransition=function(n,o,a,c){var u,h,f=this;void 0===a&&(a=ht),void 0===c&&(c=this.machine.context);var l=n.configuration,d=!o||n.transitions.length>0,p=d?$(this.machine,l):void 0,v=o?o.historyValue?o.historyValue:n.source?this.machine.historyValue(o.value):void 0:void 0,y=o?o.context:c,g=this.getActions(n,y,a,o),m=o?e({},o.activities):{};try{for(var S=r(g),w=S.next();!w.done;w=S.next()){var E=w.value;E.type===K?m[E.activity.id||E.activity.type]=E:E.type===Q&&(m[E.activity.id||E.activity.type]=!1)}}catch(t){u={error:t}}finally{try{w&&!w.done&&(h=S.return)&&h.call(S)}finally{if(u)throw u.error}}var T,N,O=i(Pt(this,o,y,a,g,this.machine.config.preserveActionOrder),2),P=O[0],k=O[1],I=i(b(P,(function(e){return e.type===W||e.type===Y&&e.to===t.SpecialTargets.Internal})),2),j=I[0],C=I[1],V=P.filter((function(t){var e;return t.type===K&&(null===(e=t.activity)||void 0===e?void 0:e.type)===it})).reduce((function(t,e){return t[e.activity.id]=function(t,e,n,r){var i,o=M(t.src),a=null===(i=null==e?void 0:e.options.services)||void 0===i?void 0:i[o.type],s=t.data?x(t.data,n,r):void 0,c=a?Vt(a,t.id,s):Ct(t.id);return c.meta=t,c}(e.activity,f.machine,k,a),t}),o?e({},o.children):{}),L=p?n.configuration:o?o.configuration:[],D=H(L,this),R=new kt({value:p||o.value,context:k,_event:a,_sessionid:o?o._sessionid:null,historyValue:p?v?(T=v,N=p,{current:N,states:_(T,N)}):void 0:o?o.historyValue:void 0,history:!p||n.source?o:void 0,actions:p?C:[],activities:p?m:o?o.activities:{},events:[],configuration:L,transitions:n.transitions,children:V,done:D,tags:null==o?void 0:o.tags,machine:this}),z=y!==k;R.changed=a.name===st||z;var F=R.history;F&&delete F.history;var U=!D&&(this._transient||l.some((function(t){return t._transient})));if(!(d||U&&""!==a.name))return R;var B=R;if(!D)for(U&&(B=this.resolveRaisedTransition(B,{type:tt},a));j.length;){var J=j.shift();B=this.resolveRaisedTransition(B,J._event,a)}var q=B.changed||(F?!!B.actions.length||z||typeof F.value!=typeof B.value||!function t(e,n){if(e===n)return!0;if(void 0===e||void 0===n)return!1;if(A(e)||A(n))return e===n;var r=s(e),i=s(n);return r.length===i.length&&r.every((function(r){return t(e[r],n[r])}))}(B.value,F.value):void 0);return B.changed=q,B.history=F,B.tags=G(B.configuration),B},a.prototype.getStateNode=function(t){if(Mt(t))return this.machine.getStateNodeById(t);if(!this.states)throw new Error("Unable to retrieve child state '".concat(t,"' from '").concat(this.id,"'; no child states exist."));var e=this.states[t];if(!e)throw new Error("Child state '".concat(t,"' does not exist on '").concat(this.id,"'"));return e},a.prototype.getStateNodeById=function(t){var e=Mt(t)?t.slice("#".length):t;if(e===this.id)return this;var n=this.machine.idMap[e];if(!n)throw new Error("Child state node '#".concat(e,"' does not exist on machine '").concat(this.id,"'"));return n},a.prototype.getStateNodeByPath=function(t){if("string"==typeof t&&Mt(t))try{return this.getStateNodeById(t.slice(1))}catch(t){}for(var e=h(t,this.delimiter).slice(),n=this;e.length;){var r=e.shift();if(!r.length)break;n=n.getStateNode(r)}return n},a.prototype.resolve=function(t){var e,n=this;if(!t)return this.initialStateValue||Rt;switch(this.type){case"parallel":return d(this.initialStateValue,(function(e,r){return e?n.getStateNode(r).resolve(t[r]||e):Rt}));case"compound":if(A(t)){var r=this.getStateNode(t);return"parallel"===r.type||"compound"===r.type?((e={})[t]=r.initialStateValue,e):t}return s(t).length?d(t,(function(t,e){return t?n.getStateNode(e).resolve(t):Rt})):this.initialStateValue||{};default:return t||Rt}},a.prototype.getResolvedPath=function(t){if(Mt(t)){var e=this.machine.idMap[t.slice("#".length)];if(!e)throw new Error("Unable to find state node '".concat(t,"'"));return e.path}return h(t,this.delimiter)},Object.defineProperty(a.prototype,"initialStateValue",{get:function(){var t,e;if(this.__cache.initialStateValue)return this.__cache.initialStateValue;if("parallel"===this.type)e=p(this.states,(function(t){return t.initialStateValue||Rt}),(function(t){return!("history"===t.type)}));else if(void 0!==this.initial){if(!this.states[this.initial])throw new Error("Initial state '".concat(this.initial,"' not found on '").concat(this.key,"'"));e=F(this.states[this.initial])?this.initial:((t={})[this.initial]=this.states[this.initial].initialStateValue,t)}else e={};return this.__cache.initialStateValue=e,this.__cache.initialStateValue},enumerable:!1,configurable:!0}),a.prototype.getInitialState=function(t,e){var n=this.getStateNodes(t);return this.resolveTransition({configuration:n,entrySet:n,exitSet:[],transitions:[],source:void 0,actions:[]},void 0,void 0,e)},Object.defineProperty(a.prototype,"initialState",{get:function(){this._init();var t=this.initialStateValue;if(!t)throw new Error("Cannot retrieve initial state from simple state '".concat(this.id,"'."));return this.getInitialState(t)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"target",{get:function(){var t;if("history"===this.type){var e=this.config;t=A(e.target)&&Mt(e.target)?l(this.machine.getStateNodeById(e.target).path.slice(this.path.length-1)):e.target}return t},enumerable:!1,configurable:!0}),a.prototype.getRelativeStateNodes=function(t,e,n){return void 0===n&&(n=!0),n?"history"===t.type?t.resolveHistory(e):t.initialStateNodes:[t]},Object.defineProperty(a.prototype,"initialStateNodes",{get:function(){var t=this;return F(this)?[this]:"compound"!==this.type||this.initial?g(y(this.initialStateValue).map((function(e){return t.getFromRelativePath(e)}))):[this]},enumerable:!1,configurable:!0}),a.prototype.getFromRelativePath=function(t){if(!t.length)return[this];var e=i(t),n=e[0],r=e.slice(1);if(!this.states)throw new Error("Cannot retrieve subPath '".concat(n,"' from node with no states"));var o=this.getStateNode(n);if("history"===o.type)return o.resolveHistory();if(!this.states[n])throw new Error("Child state '".concat(n,"' does not exist on '").concat(this.id,"'"));return this.states[n].getFromRelativePath(r)},a.prototype.historyValue=function(t){if(s(this.states).length)return{current:t||this.initialStateValue,states:p(this.states,(function(e,n){if(!t)return e.historyValue();var r=A(t)?void 0:t[n];return e.historyValue(r||e.initialStateValue)}),(function(t){return!t.history}))}},a.prototype.resolveHistory=function(t){var e=this;if("history"!==this.type)return[this];var n=this.parent;if(!t){var i=this.target;return i?g(y(i).map((function(t){return n.getFromRelativePath(t)}))):n.initialStateNodes}var o,a,s=(o=n.path,a="states",function(t){var e,n,i=t;try{for(var s=r(o),c=s.next();!c.done;c=s.next()){var u=c.value;i=i[a][u]}}catch(t){e={error:t}}finally{try{c&&!c.done&&(n=s.return)&&n.call(s)}finally{if(e)throw e.error}}return i})(t).current;return A(s)?[n.getStateNode(s)]:g(y(s).map((function(t){return"deep"===e.history?n.getFromRelativePath(t):[n.states[t[0]]]})))},Object.defineProperty(a.prototype,"stateIds",{get:function(){var t=this,e=g(s(this.states).map((function(e){return t.states[e].stateIds})));return[this.id].concat(e)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"events",{get:function(){var t,e,n,i;if(this.__cache.events)return this.__cache.events;var o=this.states,a=new Set(this.ownEvents);if(o)try{for(var c=r(s(o)),u=c.next();!u.done;u=c.next()){var h=o[u.value];if(h.states)try{for(var f=(n=void 0,r(h.events)),l=f.next();!l.done;l=f.next()){var d=l.value;a.add("".concat(d))}}catch(t){n={error:t}}finally{try{l&&!l.done&&(i=f.return)&&i.call(f)}finally{if(n)throw n.error}}}}catch(e){t={error:e}}finally{try{u&&!u.done&&(e=c.return)&&e.call(c)}finally{if(t)throw t.error}}return this.__cache.events=Array.from(a)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"ownEvents",{get:function(){var t=new Set(this.transitions.filter((function(t){return!(!t.target&&!t.actions.length&&t.internal)})).map((function(t){return t.eventType})));return Array.from(t)},enumerable:!1,configurable:!0}),a.prototype.resolveTarget=function(t){var e=this;if(void 0!==t)return t.map((function(t){if(!A(t))return t;var n=t[0]===e.delimiter;if(n&&!e.parent)return e.getStateNodeByPath(t.slice(1));var r=n?e.key+t:t;if(!e.parent)return e.getStateNodeByPath(r);try{return e.parent.getStateNodeByPath(r)}catch(t){throw new Error("Invalid transition definition for state node '".concat(e.id,"':\n").concat(t.message))}}))},a.prototype.formatTransition=function(t){var n=this,r=function(t){if(void 0!==t&&""!==t)return S(t)}(t.target),i="internal"in t?t.internal:!r||r.some((function(t){return A(t)&&t[0]===n.delimiter})),o=this.machine.options.guards,a=this.resolveTarget(r),s=e(e({},t),{actions:dt(S(t.actions)),cond:O(t.cond,o),target:a,source:this,internal:i,eventType:t.event,toJSON:function(){return e(e({},s),{target:s.target?s.target.map((function(t){return"#".concat(t.id)})):void 0,source:"#".concat(n.id)})}});return s},a.prototype.formatTransitions=function(){var t,e,a,c=this;if(this.config.on)if(Array.isArray(this.config.on))a=this.config.on;else{var u=this.config.on,h=u["*"],f=void 0===h?[]:h,l=n(u,["*"]);a=g(s(l).map((function(t){return D(t,l[t])})).concat(D("*",f)))}else a=[];var d=this.config.always?D("",this.config.always):[],p=this.config.onDone?D(String(Tt(this.id)),this.config.onDone):[],v=g(this.invoke.map((function(t){var e=[];return t.onDone&&e.push.apply(e,o([],i(D(String(Nt(t.id)),t.onDone)),!1)),t.onError&&e.push.apply(e,o([],i(D(String(At(t.id)),t.onError)),!1)),e}))),y=this.after,m=g(o(o(o(o([],i(p),!1),i(v),!1),i(a),!1),i(d),!1).map((function(t){return S(t).map((function(t){return c.formatTransition(t)}))})));try{for(var x=r(y),w=x.next();!w.done;w=x.next()){var b=w.value;m.push(b)}}catch(e){t={error:e}}finally{try{w&&!w.done&&(e=x.return)&&e.call(x)}finally{if(t)throw t.error}}return m},a}();var Ft={deferEvents:!1},Ut=function(){function t(t){this.processingEvent=!1,this.queue=[],this.initialized=!1,this.options=e(e({},Ft),t)}return t.prototype.initialize=function(t){if(this.initialized=!0,t){if(!this.options.deferEvents)return void this.schedule(t);this.process(t)}this.flushEvents()},t.prototype.schedule=function(t){if(this.initialized&&!this.processingEvent){if(0!==this.queue.length)throw new Error("Event queue should be empty when it is not processing events");this.process(t),this.flushEvents()}else this.queue.push(t)},t.prototype.clear=function(){this.queue=[]},t.prototype.flushEvents=function(){for(var t=this.queue.shift();t;)this.process(t),t=this.queue.shift()},t.prototype.process=function(t){this.processingEvent=!0;try{t()}catch(t){throw this.clear(),t}finally{this.processingEvent=!1}},t}(),Bt=new Map,Jt=0,qt=function(){return"x:".concat(Jt++)},$t=function(t,e){return Bt.set(t,e),t},Xt=function(t){return Bt.get(t)},Ht=function(t){Bt.delete(t)};function Gt(){return"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:void 0}function Kt(t){if(Gt()){var e=function(){var t=Gt();if(t&&"__xstate__"in t)return t.__xstate__}();e&&e.register(t)}}function Qt(t,n){void 0===n&&(n={});var r,i=t.initialState,o=new Set,a=[],s=!1,c=(r={id:n.id,send:function(e){a.push(e),function(){if(!s){for(s=!0;a.length>0;){var e=a.shift();i=t.transition(i,e,u),o.forEach((function(t){return t.next(i)}))}s=!1}}()},getSnapshot:function(){return i},subscribe:function(t,e,n){var r=z(t,e,n);return o.add(r),r.next(i),{unsubscribe:function(){o.delete(r)}}}},e({subscribe:function(){return{unsubscribe:function(){}}},id:"anonymous",getSnapshot:function(){}},r)),u={parent:n.parent,self:c,id:n.id||"anonymous",observers:o};return i=t.start?t.start(u):i,c}var Wt,Yt={sync:!1,autoForward:!1};(Wt=t.InterpreterStatus||(t.InterpreterStatus={}))[Wt.NotStarted=0]="NotStarted",Wt[Wt.Running=1]="Running",Wt[Wt.Stopped=2]="Stopped";var Zt=function(){function n(r,i){var o=this;void 0===i&&(i=n.defaultOptions),this.machine=r,this.scheduler=new Ut,this.delayedEventsMap={},this.listeners=new Set,this.contextListeners=new Set,this.stopListeners=new Set,this.doneListeners=new Set,this.eventListeners=new Set,this.sendListeners=new Set,this.initialized=!1,this.status=t.InterpreterStatus.NotStarted,this.children=new Map,this.forwardTo=new Set,this.init=this.start,this.send=function(e,n){if(T(e))return o.batch(e),o.state;var r=L(V(e,n));if(o.status===t.InterpreterStatus.Stopped)return o.state;if(o.status!==t.InterpreterStatus.Running&&!o.options.deferEvents)throw new Error('Event "'.concat(r.name,'" was sent to uninitialized service "').concat(o.machine.id,'". Make sure .start() is called for this service, or set { deferEvents: true } in the service options.\nEvent: ').concat(JSON.stringify(r.data)));return o.scheduler.schedule((function(){o.forward(r);var t=o.nextState(r);o.update(t,r)})),o._state},this.sendTo=function(n,r){var i,a=o.parent&&(r===t.SpecialTargets.Parent||o.parent.id===r),s=a?o.parent:A(r)?o.children.get(r)||Xt(r):(i=r)&&"function"==typeof i.send?r:void 0;if(s)"machine"in s?s.send(e(e({},n),{name:n.name===at?"".concat(At(o.id)):n.name,origin:o.sessionId})):s.send(n.data);else if(!a)throw new Error("Unable to send event to child '".concat(r,"' from service '").concat(o.id,"'."))};var a=e(e({},n.defaultOptions),i),s=a.clock,c=a.logger,u=a.parent,h=a.id,f=void 0!==h?h:r.id;this.id=f,this.logger=c,this.clock=s,this.parent=u,this.options=a,this.scheduler=new Ut({deferEvents:this.options.deferEvents}),this.sessionId=qt()}return Object.defineProperty(n.prototype,"initialState",{get:function(){var t=this;return this._initialState?this._initialState:jt(this,(function(){return t._initialState=t.machine.initialState,t._initialState}))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"state",{get:function(){return this._state},enumerable:!1,configurable:!0}),n.prototype.execute=function(t,e){var n,i;try{for(var o=r(t.actions),a=o.next();!a.done;a=o.next()){var s=a.value;this.exec(s,t,e)}}catch(t){n={error:t}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}},n.prototype.update=function(t,e){var n,i,o,a,s,c,u,h,f=this;if(t._sessionid=this.sessionId,this._state=t,this.options.execute&&this.execute(this.state),this.children.forEach((function(t){f.state.children[t.id]=t})),this.devTools&&this.devTools.send(e.data,t),t.event)try{for(var l=r(this.eventListeners),d=l.next();!d.done;d=l.next()){(0,d.value)(t.event)}}catch(t){n={error:t}}finally{try{d&&!d.done&&(i=l.return)&&i.call(l)}finally{if(n)throw n.error}}try{for(var p=r(this.listeners),v=p.next();!v.done;v=p.next()){(0,v.value)(t,t.event)}}catch(t){o={error:t}}finally{try{v&&!v.done&&(a=p.return)&&a.call(p)}finally{if(o)throw o.error}}try{for(var y=r(this.contextListeners),g=y.next();!g.done;g=y.next()){(0,g.value)(this.state.context,this.state.history?this.state.history.context:void 0)}}catch(t){s={error:t}}finally{try{g&&!g.done&&(c=y.return)&&c.call(y)}finally{if(s)throw s.error}}var m=H(t.configuration||[],this.machine);if(this.state.configuration&&m){var S=t.configuration.find((function(t){return"final"===t.type&&t.parent===f.machine})),w=S&&S.doneData?x(S.doneData,t.context,e):void 0;try{for(var b=r(this.doneListeners),_=b.next();!_.done;_=b.next()){(0,_.value)(Nt(this.id,w))}}catch(t){u={error:t}}finally{try{_&&!_.done&&(h=b.return)&&h.call(b)}finally{if(u)throw u.error}}this.stop()}},n.prototype.onTransition=function(e){return this.listeners.add(e),this.status===t.InterpreterStatus.Running&&e(this.state,this.state.event),this},n.prototype.subscribe=function(e,n,r){var i,o=this;if(!e)return{unsubscribe:function(){}};var a=r;return"function"==typeof e?i=e:(i=e.next.bind(e),a=e.complete.bind(e)),this.listeners.add(i),this.status===t.InterpreterStatus.Running&&i(this.state),a&&this.onDone(a),{unsubscribe:function(){i&&o.listeners.delete(i),a&&o.doneListeners.delete(a)}}},n.prototype.onEvent=function(t){return this.eventListeners.add(t),this},n.prototype.onSend=function(t){return this.sendListeners.add(t),this},n.prototype.onChange=function(t){return this.contextListeners.add(t),this},n.prototype.onStop=function(t){return this.stopListeners.add(t),this},n.prototype.onDone=function(t){return this.doneListeners.add(t),this},n.prototype.off=function(t){return this.listeners.delete(t),this.eventListeners.delete(t),this.sendListeners.delete(t),this.stopListeners.delete(t),this.doneListeners.delete(t),this.contextListeners.delete(t),this},n.prototype.start=function(e){var n=this;if(this.status===t.InterpreterStatus.Running)return this;$t(this.sessionId,this),this.initialized=!0,this.status=t.InterpreterStatus.Running;var r=void 0===e?this.initialState:jt(this,(function(){return!A(t=e)&&"value"in t&&"history"in t?n.machine.resolveState(e):n.machine.resolveState(kt.from(e,n.machine.context));var t}));return this.options.devTools&&this.attachDev(),this.scheduler.initialize((function(){n.update(r,ht)})),this},n.prototype.stop=function(){var e,n,i,o,a,c,u,h,f,l,d=this;try{for(var p=r(this.listeners),v=p.next();!v.done;v=p.next()){var y=v.value;this.listeners.delete(y)}}catch(t){e={error:t}}finally{try{v&&!v.done&&(n=p.return)&&n.call(p)}finally{if(e)throw e.error}}try{for(var g=r(this.stopListeners),m=g.next();!m.done;m=g.next()){(y=m.value)(),this.stopListeners.delete(y)}}catch(t){i={error:t}}finally{try{m&&!m.done&&(o=g.return)&&o.call(g)}finally{if(i)throw i.error}}try{for(var S=r(this.contextListeners),x=S.next();!x.done;x=S.next()){y=x.value;this.contextListeners.delete(y)}}catch(t){a={error:t}}finally{try{x&&!x.done&&(c=S.return)&&c.call(S)}finally{if(a)throw a.error}}try{for(var w=r(this.doneListeners),b=w.next();!b.done;b=w.next()){y=b.value;this.doneListeners.delete(y)}}catch(t){u={error:t}}finally{try{b&&!b.done&&(h=w.return)&&h.call(w)}finally{if(u)throw u.error}}if(!this.initialized)return this;this.state.configuration.forEach((function(t){var e,n;try{for(var i=r(t.definition.exit),o=i.next();!o.done;o=i.next()){var a=o.value;d.exec(a,d.state)}}catch(t){e={error:t}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}})),this.children.forEach((function(t){N(t.stop)&&t.stop()}));try{for(var _=r(s(this.delayedEventsMap)),E=_.next();!E.done;E=_.next()){var T=E.value;this.clock.clearTimeout(this.delayedEventsMap[T])}}catch(t){f={error:t}}finally{try{E&&!E.done&&(l=_.return)&&l.call(_)}finally{if(f)throw f.error}}return this.scheduler.clear(),this.initialized=!1,this.status=t.InterpreterStatus.Stopped,Ht(this.sessionId),this},n.prototype.batch=function(n){var a=this;if(this.status===t.InterpreterStatus.NotStarted&&this.options.deferEvents);else if(this.status!==t.InterpreterStatus.Running)throw new Error("".concat(n.length,' event(s) were sent to uninitialized service "').concat(this.machine.id,'". Make sure .start() is called for this service, or set { deferEvents: true } in the service options.'));this.scheduler.schedule((function(){var t,s,c=a.state,u=!1,h=[],f=function(t){var n=L(t);a.forward(n),c=jt(a,(function(){return a.machine.transition(c,n)})),h.push.apply(h,o([],i(c.actions.map((function(t){return r=c,i=(n=t).exec,e(e({},n),{exec:void 0!==i?function(){return i(r.context,r.event,{action:n,state:r,_event:r._event})}:void 0});var n,r,i}))),!1)),u=u||!!c.changed};try{for(var l=r(n),d=l.next();!d.done;d=l.next()){f(d.value)}}catch(e){t={error:e}}finally{try{d&&!d.done&&(s=l.return)&&s.call(l)}finally{if(t)throw t.error}}c.changed=u,c.actions=h,a.update(c,L(n[n.length-1]))}))},n.prototype.sender=function(t){return this.send.bind(this,t)},n.prototype.nextState=function(t){var e=this,n=L(t);if(0===n.name.indexOf(ot)&&!this.state.nextEvents.some((function(t){return 0===t.indexOf(ot)})))throw n.data.data;return jt(this,(function(){return e.machine.transition(e.state,n)}))},n.prototype.forward=function(t){var e,n;try{for(var i=r(this.forwardTo),o=i.next();!o.done;o=i.next()){var a=o.value,s=this.children.get(a);if(!s)throw new Error("Unable to forward event '".concat(t,"' from interpreter '").concat(this.id,"' to nonexistant child '").concat(a,"'."));s.send(t)}}catch(t){e={error:t}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}},n.prototype.defer=function(t){var e=this;this.delayedEventsMap[t.id]=this.clock.setTimeout((function(){t.to?e.sendTo(t._event,t.to):e.send(t._event)}),t.delay)},n.prototype.cancel=function(t){this.clock.clearTimeout(this.delayedEventsMap[t]),delete this.delayedEventsMap[t]},n.prototype.exec=function(e,n,r){void 0===r&&(r=this.machine.options.actions);var i=n.context,o=n._event,a=e.exec||ft(e.type,r),s=N(a)?a:a?a.exec:e.exec;if(s)try{return s(i,o.data,{action:e,state:this.state,_event:o})}catch(t){throw this.parent&&this.parent.send({type:"xstate.error",data:t}),t}switch(e.type){case Y:var c=e;if("number"==typeof c.delay)return void this.defer(c);c.to?this.sendTo(c._event,c.to):this.send(c._event);break;case Z:this.cancel(e.sendId);break;case K:var u=e.activity;if(!this.state.activities[u.id||u.type])break;if(u.type===t.ActionTypes.Invoke){var h=M(u.src),f=this.machine.options.services?this.machine.options.services[h.type]:void 0,l=u.id,d=u.data,p="autoForward"in u?u.autoForward:!!u.forward;if(!f)return;var v=d?x(d,i,o):void 0;if("string"==typeof f)return;var y=N(f)?f(i,o.data,{data:v,src:h,meta:u.meta}):f;if(!y)return;var g=void 0;k(y)&&(y=v?y.withContext(v):y,g={autoForward:p}),this.spawn(y,l,g)}else this.spawnActivity(u);break;case Q:this.stopChild(e.activity.id);break;case nt:var m=e.label,S=e.value;m?this.logger(m,S):this.logger(S)}},n.prototype.removeChild=function(t){var e;this.children.delete(t),this.forwardTo.delete(t),null===(e=this.state)||void 0===e||delete e.children[t]},n.prototype.stopChild=function(t){var e=this.children.get(t);e&&(this.removeChild(t),N(e.stop)&&e.stop())},n.prototype.spawn=function(t,n,r){if(w(t))return this.spawnPromise(Promise.resolve(t),n);if(N(t))return this.spawnCallback(t,n);if(function(t){try{return"function"==typeof t.send}catch(t){return!1}}(o=t)&&"id"in o)return this.spawnActor(t,n);if(function(t){try{return"subscribe"in t&&N(t.subscribe)}catch(t){return!1}}(t))return this.spawnObservable(t,n);if(k(t))return this.spawnMachine(t,e(e({},r),{id:n}));if(null!==(i=t)&&"object"==typeof i&&"transition"in i&&"function"==typeof i.transition)return this.spawnBehavior(t,n);throw new Error('Unable to spawn entity "'.concat(n,'" of type "').concat(typeof t,'".'));var i,o},n.prototype.spawnMachine=function(t,r){var i=this;void 0===r&&(r={});var o=new n(t,e(e({},this.options),{parent:this,id:r.id||t.id})),a=e(e({},Yt),r);a.sync&&o.onTransition((function(t){i.send(st,{state:t,id:o.id})}));var s=o;return this.children.set(o.id,s),a.autoForward&&this.forwardTo.add(o.id),o.onDone((function(t){i.removeChild(o.id),i.send(L(t,{origin:o.id}))})).start(),s},n.prototype.spawnBehavior=function(t,e){var n=Qt(t,{id:e,parent:this});return this.children.set(e,n),n},n.prototype.spawnPromise=function(t,e){var n,r=this,i=!1;t.then((function(t){i||(n=t,r.removeChild(e),r.send(L(Nt(e,t),{origin:e})))}),(function(t){if(!i){r.removeChild(e);var n=At(e,t);try{r.send(L(n,{origin:e}))}catch(t){r.devTools&&r.devTools.send(n,r.state),r.machine.strict&&r.stop()}}}));var o={id:e,send:function(){},subscribe:function(e,n,r){var i=z(e,n,r),o=!1;return t.then((function(t){o||(i.next(t),o||i.complete())}),(function(t){o||i.error(t)})),{unsubscribe:function(){return o=!0}}},stop:function(){i=!0},toJSON:function(){return{id:e}},getSnapshot:function(){return n}};return this.children.set(e,o),o},n.prototype.spawnCallback=function(t,e){var n,r,i=this,o=!1,a=new Set,s=new Set;try{r=t((function(t){n=t,s.forEach((function(e){return e(t)})),o||i.send(L(t,{origin:e}))}),(function(t){a.add(t)}))}catch(t){this.send(At(e,t))}if(w(r))return this.spawnPromise(r,e);var c={id:e,send:function(t){return a.forEach((function(e){return e(t)}))},subscribe:function(t){return s.add(t),{unsubscribe:function(){s.delete(t)}}},stop:function(){o=!0,N(r)&&r()},toJSON:function(){return{id:e}},getSnapshot:function(){return n}};return this.children.set(e,c),c},n.prototype.spawnObservable=function(t,e){var n,r=this,i=t.subscribe((function(t){n=t,r.send(L(t,{origin:e}))}),(function(t){r.removeChild(e),r.send(L(At(e,t),{origin:e}))}),(function(){r.removeChild(e),r.send(L(Nt(e),{origin:e}))})),o={id:e,send:function(){},subscribe:function(e,n,r){return t.subscribe(e,n,r)},stop:function(){return i.unsubscribe()},getSnapshot:function(){return n},toJSON:function(){return{id:e}}};return this.children.set(e,o),o},n.prototype.spawnActor=function(t,e){return this.children.set(e,t),t},n.prototype.spawnActivity=function(t){var e=this.machine.options&&this.machine.options.activities?this.machine.options.activities[t.type]:void 0;if(e){var n=e(this.state.context,t);this.spawnEffect(t.id,n)}},n.prototype.spawnEffect=function(t,e){this.children.set(t,{id:t,send:function(){},subscribe:function(){return{unsubscribe:function(){}}},stop:e||void 0,getSnapshot:function(){},toJSON:function(){return{id:t}}})},n.prototype.attachDev=function(){var t=Gt();if(this.options.devTools&&t){if(t.__REDUX_DEVTOOLS_EXTENSION__){var n="object"==typeof this.options.devTools?this.options.devTools:void 0;this.devTools=t.__REDUX_DEVTOOLS_EXTENSION__.connect(e(e({name:this.id,autoPause:!0,stateSanitizer:function(t){return{value:t.value,context:t.context,actions:t.actions}}},n),{features:e({jump:!1,skip:!1},n?n.features:void 0)}),this.machine),this.devTools.init(this.state)}Kt(this)}},n.prototype.toJSON=function(){return{id:this.id}},n.prototype[P]=function(){return this},n.prototype.getSnapshot=function(){return this.status===t.InterpreterStatus.NotStarted?this.initialState:this._state},n.defaultOptions=function(t){return{execute:!0,deferEvents:!0,clock:{setTimeout:function(t,e){return setTimeout(t,e)},clearTimeout:function(t){return clearTimeout(t)}},logger:t.console.log.bind(console),devTools:!1}}("undefined"!=typeof self?self:global),n.interpret=te,n}();function te(t,e){return new Zt(t,e)}var ee={raise:vt,send:yt,sendParent:gt,sendUpdate:mt,log:function(t,e){return void 0===t&&(t=St),{type:nt,label:e,expr:t}},cancel:xt,start:wt,stop:bt,assign:_t,after:Et,done:Tt,respond:function(t,n){return yt(t,e(e({},n),{to:function(t,e,n){return n._event.origin}}))},forwardTo:Ot,escalate:function(n,r){return gt((function(t,e,r){return{type:at,data:N(n)?n(t,e,r):n}}),e(e({},r),{to:t.SpecialTargets.Parent}))},choose:function(e){return{type:t.ActionTypes.Choose,conds:e}},pure:function(e){return{type:t.ActionTypes.Pure,get:e}}};t.Interpreter=Zt,t.Machine=function(t,e,n){return void 0===n&&(n=t.context),new zt(t,e,n)},t.State=kt,t.StateNode=zt,t.actions=ee,t.assign=_t,t.createMachine=function(t,e){return new zt(t,e)},t.createSchema=function(t){return t},t.doneInvoke=Nt,t.forwardTo=Ot,t.interpret=te,t.mapState=function(t,e){var n,i,o;try{for(var a=r(s(t)),u=a.next();!u.done;u=a.next()){var h=u.value;c(h,e)&&(!o||e.length>o.length)&&(o=h)}}catch(t){n={error:t}}finally{try{u&&!u.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}return t[o]},t.matchState=function(t,e,n){var o,a,s=kt.from(t,t instanceof kt?t.context:void 0);try{for(var c=r(e),u=c.next();!u.done;u=c.next()){var h=i(u.value,2),f=h[0],l=h[1];if(s.matches(f))return l(s)}}catch(t){o={error:t}}finally{try{u&&!u.done&&(a=c.return)&&a.call(c)}finally{if(o)throw o.error}}return n(s)},t.matchesState=c,t.send=yt,t.sendParent=gt,t.sendUpdate=mt,t.spawn=function(t,n){var r=function(t){return A(t)?e(e({},Yt),{name:t}):e(e(e({},Yt),{name:C()}),t)}(n);return function(e){return e?e.spawn(t,r.name,r):Vt(t,r.name)}(It[It.length-1])},Object.defineProperty(t,"__esModule",{value:!0})}));
{
"ver": "1.0.8",
"uuid": "ccc6e6f1-2591-48db-818d-618feeb72e55",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "10974f6e-0816-4460-b0f0-1714a0f4646e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2560,
"height": 1920,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "ac732a26-47dd-4236-b616-876a1e8003cf",
"rawTextureUuid": "10974f6e-0816-4460-b0f0-1714a0f4646e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 960,
"rawWidth": 1280,
"rawHeight": 960,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7ea7f9ac-1027-4f05-a423-3d0822e6c6cf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 960,
"platformSettings": {},
"subMetas": {
"frame": {
"ver": "1.0.4",
"uuid": "72210e76-a89c-46d1-9648-bb544ee5c11e",
"rawTextureUuid": "7ea7f9ac-1027-4f05-a423-3d0822e6c6cf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 177,
"trimY": 20,
"width": 926,
"height": 919,
"rawWidth": 1280,
"rawHeight": 960,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "19b44615-cd52-49d8-8cce-5dfa01208881",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 600,
"height": 796,
"platformSettings": {},
"subMetas": {
"ground": {
"ver": "1.0.4",
"uuid": "6b28d0ff-52cf-4358-8954-6382cbd08d5f",
"rawTextureUuid": "19b44615-cd52-49d8-8cce-5dfa01208881",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 600,
"height": 796,
"rawWidth": 600,
"rawHeight": 796,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ed404fc3-8c4d-4df7-ac92-62f4e2274711",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 937,
"height": 730,
"platformSettings": {},
"subMetas": {
"m1": {
"ver": "1.0.4",
"uuid": "19a9af3b-80c8-417f-9d0e-45fe832b314c",
"rawTextureUuid": "ed404fc3-8c4d-4df7-ac92-62f4e2274711",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 469,
"height": 365,
"rawWidth": 469,
"rawHeight": 365,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "de3ca226-34cc-4ebf-984b-4dc0ddc22e95",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 474,
"height": 610,
"platformSettings": {},
"subMetas": {
"m2": {
"ver": "1.0.4",
"uuid": "647d09a0-876b-472a-b186-592ab4111eef",
"rawTextureUuid": "de3ca226-34cc-4ebf-984b-4dc0ddc22e95",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 237,
"height": 305,
"rawWidth": 237,
"rawHeight": 305,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
...@@ -2,5 +2,39 @@ ...@@ -2,5 +2,39 @@
"last-module-event-record-time": 1600677246969, "last-module-event-record-time": 1600677246969,
"migrate-history": [ "migrate-history": [
"cloud-function" "cloud-function"
] ],
"group-list": [
"default"
],
"collision-matrix": [
[
true
]
],
"excluded-modules": [
"3D Physics/Builtin"
],
"preview-port": 7456,
"design-resolution-width": 1280,
"design-resolution-height": 960,
"fit-width": true,
"fit-height": true,
"use-project-simulator-setting": false,
"simulator-orientation": false,
"use-customize-simulator": true,
"simulator-resolution": {
"width": 960,
"height": 640
},
"clear-simulator-cache": true,
"facebook": {
"enable": false,
"appID": "",
"live": {
"enable": false
},
"audience": {
"enable": false
}
}
} }
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