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"
......
This diff is collapsed.
...@@ -32,15 +32,112 @@ ...@@ -32,15 +32,112 @@
<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 *ngIf="customTypeGroupArr">
<nz-radio-group [ngModel]="it.gIdx" (ngModelChange)="customRadioChange($event, it)" style="display: flex; align-items: center; justify-content: center; flex-wrap: wrap;">
<div *ngFor="let group of customTypeGroupArr; let gIdx = index" style="display: flex; ">
<label nz-radio nzValue="{{gIdx}}">{{group.name}}</label>
</div>
</nz-radio-group>
</div>
<!-- <div *ngIf="!customTypeGroupArr">
<nz-radio-group [ngModel]="it.itemType" (ngModelChange)="radioChange($event, it)" style="display: flex; align-items: center; justify-content: center">
<div style="margin-top: -20px; margin-bottom: 5px">
<nz-radio-group [ngModel]="it.itemType" (ngModelChange)="radioChange($event, it)">
<label *ngIf="isHasRect" nz-radio nzValue="rect">矩形</label> <label *ngIf="isHasRect" nz-radio nzValue="rect">矩形</label>
<label *ngIf="isHasPic" nz-radio nzValue="pic">图片</label> <label *ngIf="isHasPic" nz-radio nzValue="pic">图片</label>
<label *ngIf="isHasText" nz-radio nzValue="text">文本</label> <label *ngIf="isHasText" nz-radio nzValue="text">文本</label>
</nz-radio-group> </nz-radio-group>
</div> -->
</div>
<div *ngIf="customTypeGroupArr && customTypeGroupArr[it.gIdx]">
<div *ngIf="customTypeGroupArr[it.gIdx].pic">
<app-upload-image-with-preview
[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>
<!-- <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 *ngIf="!customTypeGroupArr">
<div *ngIf="it.itemType == 'pic'"> <div *ngIf="it.itemType == 'pic'">
<app-upload-image-with-preview <app-upload-image-with-preview
[picUrl]="it?.pic_url" [picUrl]="it?.pic_url"
...@@ -52,13 +149,26 @@ ...@@ -52,13 +149,26 @@
<input type="text" nz-input [(ngModel)]="it.text" (blur)="saveText(it)"> <input type="text" nz-input [(ngModel)]="it.text" (blur)="saveText(it)">
</div> </div>
<div style="width: 100%; margin-top: 5px;"> <div *ngIf="isHasAudio"
style="width: 100%; margin-top: 5px; display: flex; align-items: center; justify-items: center;">
<app-audio-recorder <app-audio-recorder
style="margin: auto"
[audioUrl]="it.audio_url" [audioUrl]="it.audio_url"
(audioUploaded)="onItemAudioUploadSuccess($event, it)" (audioUploaded)="onItemAudioUploadSuccess($event, it)"
></app-audio-recorder> ></app-audio-recorder>
</div> </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;
//}
...@@ -2,6 +2,18 @@ ...@@ -2,6 +2,18 @@
<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
......
...@@ -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) {
} }
......
This diff is collapsed.
{
"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
This diff is collapsed.
{
"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
This diff is collapsed.
{
"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
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "9f8f3a2e-e2dd-4d29-92ac-6fb9d1279bca",
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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