Commit 9e5a014c authored by bill-ctr's avatar bill-ctr

提交

parent ce304201
No preview for this file type
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
"ali-oss": "^6.5.1", "ali-oss": "^6.5.1",
"compressing": "^1.5.0", "compressing": "^1.5.0",
"ng-zorro-antd": "^8.5.2", "ng-zorro-antd": "^8.5.2",
"rxjs": "~6.5.4",
"node-sass": "^4.0.0", "node-sass": "^4.0.0",
"rxjs": "~6.5.4",
"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 +55,4 @@ ...@@ -55,4 +55,4 @@
"tslint": "~5.18.0", "tslint": "~5.18.0",
"typescript": "~3.7.5" "typescript": "~3.7.5"
} }
} }
\ No newline at end of file
import {Component, EventEmitter, Input, OnDestroy, OnInit, Output, NgZone, OnChanges} from '@angular/core'; import { Component, EventEmitter, Input, OnDestroy, OnInit, Output, NgZone, OnChanges } from '@angular/core';
import {NzMessageService, NzNotificationService, UploadFile} from 'ng-zorro-antd'; import { NzMessageService, NzNotificationService, UploadFile } from 'ng-zorro-antd';
import {HttpClient, HttpEvent, HttpEventType, HttpRequest} from '@angular/common/http'; import { HttpClient, HttpEvent, HttpEventType, HttpRequest } from '@angular/common/http';
import {environment} from '../../../environments/environment'; import { environment } from '../../../environments/environment';
declare var Recorder; declare var Recorder;
@Component({ @Component({
...@@ -35,6 +34,9 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -35,6 +34,9 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
set audioUrl(url) { set audioUrl(url) {
this._audioUrl = url; this._audioUrl = url;
if (url) { if (url) {
if (url['url']) {
this._audioUrl = url['url'];
}
this.audio.src = this._audioUrl; this.audio.src = this._audioUrl;
this.audio.load(); this.audio.load();
} }
...@@ -54,9 +56,9 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -54,9 +56,9 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
audioBlob: any; audioBlob: any;
constructor( private nzMessageService: NzMessageService ) { constructor(private nzMessageService: NzMessageService) {
this.uploadUrl = (<any> window).courseware.uploadUrl(); this.uploadUrl = (<any>window).courseware.uploadUrl();
this.uploadData = (<any> window).courseware.uploadData(); this.uploadData = (<any>window).courseware.uploadData();
window['air'].getUploadCallback = (url, data) => { window['air'].getUploadCallback = (url, data) => {
this.uploadUrl = url; this.uploadUrl = url;
...@@ -139,6 +141,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -139,6 +141,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
if (this.isPlaying) { if (this.isPlaying) {
this.audio.pause(); this.audio.pause();
} else { } else {
console.log('src : ', this.audio.src)
this.audio.play(); this.audio.play();
} }
} }
...@@ -185,7 +188,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -185,7 +188,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
this.nzMessageService.error('You can only upload Audio file ( mp3 | wav |ogg)'); this.nzMessageService.error('You can only upload Audio file ( mp3 | wav |ogg)');
return; return;
} }
const delta = 25; const delta = 25;
const isOverSize = (file.size / 1024 / 1024) < delta; const isOverSize = (file.size / 1024 / 1024) < delta;
if (!isOverSize) { if (!isOverSize) {
this.nzMessageService.error(`audio file must smaller than ${delta}MB!`); this.nzMessageService.error(`audio file must smaller than ${delta}MB!`);
...@@ -224,7 +227,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -224,7 +227,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
p = 0; p = 0;
} }
// console.log(Math.floor(p * 100)); // console.log(Math.floor(p * 100));
this.progress = Math.floor(p * 100); this.progress = Math.floor(p * 100);
} }
} }
......
<div class="model-content"> <div class="model-content">
<div style="padding: 10px;">
<div style="padding: 10px;" align='center'>
<div style="width: 300px;height:50px;" align='center'>
<span style="font-size:large;">题目素材 </span>
</div>
<div nz-row>
<div nz-col nzSpan="8">
<span style="font-size:larger;">标题 </span>
<div style="width: 300px;" align='center'>
<input type="text" nz-input [(ngModel)]="item.title" (blur)="save()">
</div>
</div>
<div nz-col nzSpan="8">
<span style="font-size:larger;">音频 </span>
<div style="width: 300px;" align='center'>
<app-audio-recorder [audioUrl]="item.titleAudio" (audioUploaded)="onAudioUploadSuccess($event, 'titleAudio')">
</app-audio-recorder>
</div>
</div>
<div nz-col nzSpan="8">
<span style="font-size:larger;">题目时间(秒) </span>
<div style="width: 300px;" align='center'>
<input type="text" nz-input [(ngModel)]="item.timer" (blur)="save()">
</div>
</div>
</div>
<div style="width: 300px;height:100px;line-height: 100px;" align='center'>
<span style="font-size:large;">最多添加10张卡片 <button nz-button nzType="primary" (click)="addListData()">添加</button></span>
</div>
<nz-table #basicTable [nzData]="listOfData">
<thead>
<tr>
<th>序号</th>
<th>音频</th>
<th>图片</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of basicTable.data">
<td>{{data.key}}</td>
<td>
<app-audio-recorder [audioUrl]=data.ImusicName (audioUploaded)="onAudioUploadSuccess($event, data.musicName)">
</app-audio-recorder>
</td>
<td>
<div style="width: 300px;" align='center'>
<app-upload-image-with-preview [picUrl]=data.IpicName
(imageUploaded)="onImageUploadSuccess($event, data.picName)">
</app-upload-image-with-preview>
</div>
</td>
<td>
<button nz-button nzType="danger" (click)="remListData(data.key)">删除</button>
</td>
</tr>
</tbody>
</nz-table>
<!--
<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 [picUrl]="item.pic_url" (imageUploaded)="onImageUploadSuccess($event, 'pic_url')">
[picUrl]="item.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 [picUrl]="item.pic_url_2"
[picUrl]="item.pic_url_2"
(imageUploaded)="onImageUploadSuccess($event, 'pic_url_2')"> (imageUploaded)="onImageUploadSuccess($event, 'pic_url_2')">
</app-upload-image-with-preview> </app-upload-image-with-preview>
</div> </div>
...@@ -25,12 +85,10 @@ ...@@ -25,12 +85,10 @@
<div style="margin-top: 5px"> <div style="margin-top: 5px">
<span>音频: </span> <span>音频: </span>
<app-audio-recorder <app-audio-recorder [audioUrl]="item.audio_url" (audioUploaded)="onAudioUploadSuccess($event, 'audio_url')">
[audioUrl]="item.audio_url" </app-audio-recorder>
(audioUploaded)="onAudioUploadSuccess($event, 'audio_url')" </div> -->
></app-audio-recorder>
</div>
</div> </div>
</div> </div>
\ No newline at end of file
...@@ -8,16 +8,57 @@ import { JsonPipe } from '@angular/common'; ...@@ -8,16 +8,57 @@ import { JsonPipe } from '@angular/common';
styleUrls: ['./form.component.css'] styleUrls: ['./form.component.css']
}) })
export class FormComponent implements OnInit, OnChanges, OnDestroy { export class FormComponent implements OnInit, OnChanges, OnDestroy {
// 储存数据用 // 储存数据用
saveKey = "test_001"; saveKey = "test_001";
// 储存对象 // 储存对象
item; item: any = {};
listOfData = [
];
constructor(private appRef: ApplicationRef, private changeDetectorRef: ChangeDetectorRef) { constructor(private appRef: ApplicationRef, private changeDetectorRef: ChangeDetectorRef) {
} }
addListData() {
if (this.listOfData.length >= 10) return
this.listOfData = []
if (this.item.listNum) {
this.item.listNum += 1;
} else {
this.item.listNum = 1;
}
this.initListData()
this.save()
}
remListData(number) {
this.listOfData = []
number -= 1
delete this.item['music' + number]
delete this.item['pic' + number]
this.item.listNum -= 1
this.initListData()
this.save()
}
initListData() {
for (let i = 0; i < this.item.listNum; i++) {
let obj = {
key: i + 1,
musicName: 'music' + i,
ImusicName: "item.music" + i,
picName: 'pic' + i,
IpicName: 'item.pic' + i,
}
if (this.item[obj.musicName]) {
obj.ImusicName = this.item[obj.musicName]
}
if (this.item[obj.picName]) {
obj.IpicName = this.item[obj.picName]
}
this.listOfData.push(obj)
}
}
createShell() { createShell() {
this.item.wordList.push({ this.item.wordList.push({
word: '', word: '',
...@@ -42,8 +83,9 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy { ...@@ -42,8 +83,9 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
if (data) { if (data) {
this.item = data; this.item = data;
} console.log(this.item)
}
this.init(); this.init();
this.changeDetectorRef.markForCheck(); this.changeDetectorRef.markForCheck();
this.changeDetectorRef.detectChanges(); this.changeDetectorRef.detectChanges();
...@@ -59,7 +101,7 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy { ...@@ -59,7 +101,7 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
} }
init() { init() {
this.initListData()
} }
...@@ -82,6 +124,7 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy { ...@@ -82,6 +124,7 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
this.save(); this.save();
} }
onWordAudioUploadSuccess(e, idx) { onWordAudioUploadSuccess(e, idx) {
this.item.wordList[idx].audio = e.url; this.item.wordList[idx].audio = e.url;
this.save(); this.save();
......
{
"ver": "2.0.1",
"uuid": "a6d18d6c-bacc-48cf-a9fb-ec1eececf773",
"downloadMode": 0,
"duration": 2.298776,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "43d968c4-a3b2-42cf-8a60-805ceec4bd52",
"downloadMode": 0,
"duration": 3.761633,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "e721e805-332d-4053-99be-c795d37f02de",
"downloadMode": 0,
"duration": 0.6818,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "a53670ca-a31f-439b-9b1f-b4b1e94a9425",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL01-flower(1)","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-616,"y":-323,"width":1156,"height":652},"bone":[{"name":"root"},{"name":"矢量智能对象_9","parent":"root","transform":{"x":-148.35,"y":-56.45}},{"name":"矢量智能对象_17","parent":"root","transform":{"x":-48.35,"y":227.35}},{"name":"矢量智能对象_11","parent":"root","transform":{"x":211.25,"y":79}},{"name":"矢量智能对象_1","parent":"root","transform":{"x":77.4,"y":-85.5}},{"name":"矢量智能对象_0","parent":"root","transform":{"x":283.8,"y":-111.3}},{"name":"矢量智能对象_10","parent":"root","transform":{"x":493.45,"y":-243.5}},{"name":"矢量智能对象_5","parent":"root","transform":{"x":-45.15,"y":-167.7}},{"name":"矢量智能对象_3","parent":"root","transform":{"x":101.6,"y":-303.2}},{"name":"矢量智能对象_4","parent":"root","transform":{"x":-241.9,"y":-245.15}},{"name":"矢量智能对象_6","parent":"root","transform":{"x":-428.95,"y":-141.9}},{"name":"矢量智能对象_7","parent":"root","transform":{"x":-583.75,"y":-183.85}},{"name":"矢量智能对象_8","parent":"root","transform":{"x":-493.45,"y":-16.15}},{"name":"矢量智能对象_15","parent":"root","transform":{"x":-557.95,"y":154.8}},{"name":"矢量智能对象_16","parent":"root","transform":{"x":-390.25,"y":232.2}},{"name":"矢量智能对象_14","parent":"root","transform":{"x":-267.7,"y":99.95}},{"name":"矢量智能对象_13","parent":"root","transform":{"x":287.05,"y":230.6}},{"name":"矢量智能对象_12","parent":"root","transform":{"x":474.1,"y":167.7}},{"name":"矢量智能对象","parent":"root","transform":{"x":404.75,"y":-11.3}},{"name":"矢量智能对象_2","parent":"root","transform":{"x":145.15,"y":-187.05}}],"slot":[{"name":"矢量智能对象_17","parent":"矢量智能对象_17"},{"name":"矢量智能对象_16","parent":"矢量智能对象_16"},{"name":"矢量智能对象_15","parent":"矢量智能对象_15"},{"name":"矢量智能对象_14","parent":"矢量智能对象_14"},{"name":"矢量智能对象_13","parent":"矢量智能对象_13"},{"name":"矢量智能对象_12","parent":"矢量智能对象_12"},{"name":"矢量智能对象_11","parent":"矢量智能对象_11"},{"name":"矢量智能对象_10","parent":"矢量智能对象_10"},{"name":"矢量智能对象_9","parent":"矢量智能对象_9"},{"name":"矢量智能对象_8","parent":"矢量智能对象_8"},{"name":"矢量智能对象_7","parent":"矢量智能对象_7"},{"name":"矢量智能对象_6","parent":"矢量智能对象_6"},{"name":"矢量智能对象_5","parent":"矢量智能对象_5"},{"name":"矢量智能对象_4","parent":"矢量智能对象_4"},{"name":"矢量智能对象_3","parent":"矢量智能对象_3"},{"name":"矢量智能对象_2","parent":"矢量智能对象_2"},{"name":"矢量智能对象_1","parent":"矢量智能对象_1"},{"name":"矢量智能对象_0","parent":"矢量智能对象_0"},{"name":"矢量智能对象","parent":"矢量智能对象"}],"skin":[{"slot":[{"name":"矢量智能对象_14","display":[{"name":"WL01-flower(1)/矢量智能对象_14","transform":{"x":4.2,"y":3.55}}]},{"name":"矢量智能对象_12","display":[{"name":"WL01-flower(1)/矢量智能对象_12","transform":{"x":5.9,"y":6.8}}]},{"name":"矢量智能对象_15","display":[{"name":"WL01-flower(1)/矢量智能对象_15","transform":{"x":1.45,"y":2.2}}]},{"name":"矢量智能对象_16","display":[{"name":"WL01-flower(1)/矢量智能对象_16","transform":{"x":0.75,"y":-1.2}}]},{"name":"矢量智能对象_2","display":[{"name":"WL01-flower(1)/矢量智能对象_2","transform":{"x":2.35,"y":1.05}}]},{"name":"矢量智能对象_3","display":[{"name":"WL01-flower(1)/矢量智能对象_3","transform":{"x":0.9,"y":1.2}}]},{"name":"矢量智能对象_5","display":[{"name":"WL01-flower(1)/矢量智能对象_5","transform":{"x":5.65,"y":4.7}}]},{"name":"矢量智能对象","display":[{"name":"WL01-flower(1)/矢量智能对象","transform":{"x":4.25,"y":-0.7}}]},{"name":"矢量智能对象_4","display":[{"name":"WL01-flower(1)/矢量智能对象_4","transform":{"x":1.4,"y":2.15}}]},{"name":"矢量智能对象_7","display":[{"name":"WL01-flower(1)/矢量智能对象_7","transform":{"x":-2.25,"y":-0.15}}]},{"name":"矢量智能对象_8","display":[{"name":"WL01-flower(1)/矢量智能对象_8","transform":{"x":1.45,"y":3.65}}]},{"name":"矢量智能对象_11","display":[{"name":"WL01-flower(1)/矢量智能对象_11","transform":{"x":1.25,"y":4.5}}]},{"name":"矢量智能对象_6","display":[{"name":"WL01-flower(1)/矢量智能对象_6","transform":{"x":0.45,"y":-1.1}}]},{"name":"矢量智能对象_0","display":[{"name":"WL01-flower(1)/矢量智能对象_0","transform":{"x":6.7,"y":5.8}}]},{"name":"矢量智能对象_17","display":[{"name":"WL01-flower(1)/矢量智能对象_17","transform":{"x":7.35,"y":2.65}}]},{"name":"矢量智能对象_1","display":[{"name":"WL01-flower(1)/矢量智能对象_1","transform":{"x":2.6,"y":-1.5}}]},{"name":"矢量智能对象_10","display":[{"name":"WL01-flower(1)/矢量智能对象_10","transform":{"x":2.05,"y":4.5}}]},{"name":"矢量智能对象_13","display":[{"name":"WL01-flower(1)/矢量智能对象_13","transform":{"x":3.95,"y":-0.6}}]},{"name":"矢量智能对象_9","display":[{"name":"WL01-flower(1)/矢量智能对象_9","transform":{"x":8.35,"y":2.95}}]}]}],"animation":[{"duration":72,"playTimes":0,"name":"normal","bone":[{"name":"矢量智能对象_9","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_17","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_11","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_1","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":3,"y":3},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_0","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_10","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_5","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_3","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":3,"y":3},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_4","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":3,"y":3},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_6","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_7","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_8","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_15","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_16","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_14","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_13","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0},{"duration":7,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":53,"tweenEasing":0,"rotate":89.87},{"duration":7,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":53,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":3,"y":3},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_12","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]},{"name":"矢量智能对象_2","translateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0},{"duration":0,"y":-960.55}],"rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":60,"tweenEasing":0,"rotate":89.87},{"duration":0,"rotate":-118.81}],"scaleFrame":[{"duration":12,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":60,"tweenEasing":0},{"duration":0,"x":1.5,"y":1.5}]}],"slot":[{"name":"矢量智能对象_17","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":34,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"矢量智能对象_16","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":44,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":7,"value":{"aM":0}}]},{"name":"矢量智能对象_15","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_14","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":38,"tweenEasing":0},{"duration":22,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"矢量智能对象_13","colorFrame":[{"duration":72,"value":{"aM":0}}]},{"name":"矢量智能对象_12","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":43,"tweenEasing":0},{"duration":17,"value":{"aM":0}}]},{"name":"矢量智能对象_11","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":53,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"矢量智能对象_10","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":60}]},{"name":"矢量智能对象_9","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":60}]},{"name":"矢量智能对象_8","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_7","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_6","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":60}]},{"name":"矢量智能对象_5","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":60}]},{"name":"矢量智能对象_4","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_3","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_1","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象_0","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":66}]},{"name":"矢量智能对象","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":60}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":1280,"height":720}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "3f12a92b-c51d-4940-a524-3b159b87f5b5",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"WL01-flower(1)_tex.png","height":512,"name":"WL01-flower(1)","SubTexture":[{"width":210,"y":1,"height":198,"name":"WL01-flower(1)/矢量智能对象_17","x":1},{"width":79,"y":348,"height":74,"name":"WL01-flower(1)/矢量智能对象_16","x":1},{"width":47,"y":406,"height":44,"name":"WL01-flower(1)/矢量智能对象_15","x":82},{"width":157,"y":150,"height":147,"name":"WL01-flower(1)/矢量智能对象_14","x":213},{"width":58,"y":342,"height":54,"name":"WL01-flower(1)/矢量智能对象_13","x":329},{"width":120,"y":124,"height":113,"name":"WL01-flower(1)/矢量智能对象_12","x":372},{"width":157,"y":1,"height":147,"name":"WL01-flower(1)/矢量智能对象_11","x":213},{"width":89,"y":299,"height":84,"name":"WL01-flower(1)/矢量智能对象_10","x":157},{"width":154,"y":201,"height":145,"name":"WL01-flower(1)/矢量智能对象_9","x":1},{"width":128,"y":1,"height":121,"name":"WL01-flower(1)/矢量智能对象_8","x":372},{"width":60,"y":348,"height":56,"name":"WL01-flower(1)/矢量智能对象_7","x":82},{"width":47,"y":247,"height":44,"name":"WL01-flower(1)/矢量智能对象_6","x":157},{"width":79,"y":299,"height":74,"name":"WL01-flower(1)/矢量智能对象_5","x":248},{"width":47,"y":201,"height":44,"name":"WL01-flower(1)/矢量智能对象_4","x":157},{"width":45,"y":342,"height":42,"name":"WL01-flower(1)/矢量智能对象_3","x":389},{"width":45,"y":424,"height":42,"name":"WL01-flower(1)/矢量智能对象_2","x":1},{"width":58,"y":375,"height":54,"name":"WL01-flower(1)/矢量智能对象_1","x":248},{"width":107,"y":239,"height":101,"name":"WL01-flower(1)/矢量智能对象_0","x":372},{"width":58,"y":385,"height":54,"name":"WL01-flower(1)/矢量智能对象","x":144}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "4e6ec359-0068-4e27-9d61-cbe271697d81",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "0f28baba-3a8a-4c0d-9998-14cb8edd3c58",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"WL01-flower(1)_tex": {
"ver": "1.0.4",
"uuid": "9cf13143-15b0-4515-92b5-c3d872cb4e7f",
"rawTextureUuid": "0f28baba-3a8a-4c0d-9998-14cb8edd3c58",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -5.5,
"offsetY": 22.5,
"trimX": 1,
"trimY": 1,
"width": 499,
"height": 465,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "d65e6368-a17a-4648-809a-dfcd66cf3f78",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"timeout","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-356.58,"y":-138.89,"width":720,"height":216},"bone":[{"name":"root"},{"name":"WL-comeon","parent":"root","transform":{"x":-2.65,"y":-22.55}}],"slot":[{"name":"WL-timeout","parent":"WL-comeon"}],"skin":[{"slot":[{"name":"WL-timeout","display":[{"name":"WL-timeout","transform":{"x":6.07,"y":-8.34}}]}]}],"animation":[{"duration":34,"playTimes":0,"name":"normal","bone":[{"name":"WL-comeon","translateFrame":[{"duration":12,"tweenEasing":0,"y":-477.5},{"duration":6,"tweenEasing":0,"y":24.18},{"duration":6,"tweenEasing":0,"y":-2.9},{"duration":10,"tweenEasing":0,"y":24.18},{"duration":0,"y":567.5}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":1280,"height":720}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "9178de05-362b-49ee-843a-f4247376ec1f",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"imagePath":"timeout_tex.png","height":256,"name":"timeout","SubTexture":[{"width":720,"y":1,"height":216,"name":"WL-timeout","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "336835f0-780d-43c8-ad1b-2c4c18242df1",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "762d310f-f59a-4079-b9d5-99b85ac53f5f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 256,
"platformSettings": {},
"subMetas": {
"timeout_tex": {
"ver": "1.0.4",
"uuid": "992979fb-6448-48ce-9510-4b97fcc09daa",
"rawTextureUuid": "762d310f-f59a-4079-b9d5-99b85ac53f5f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -151,
"offsetY": 19,
"trimX": 1,
"trimY": 1,
"width": 720,
"height": 216,
"rawWidth": 1024,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "f7722ecb-7136-4cf1-a398-4709fe14b63d",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "5aaa3a3f-ca6d-4d8c-96b1-2e3b060dfaa3",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
...@@ -79,18 +79,30 @@ ...@@ -79,18 +79,30 @@
}, },
{ {
"__id__": 14 "__id__": 14
},
{
"__id__": 30
},
{
"__id__": 37
},
{
"__id__": 46
},
{
"__id__": 78
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 24 "__id__": 82
}, },
{ {
"__id__": 25 "__id__": 83
}, },
{ {
"__id__": 26 "__id__": 84
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -317,7 +329,7 @@ ...@@ -317,7 +329,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "8288e3d4-4c75-4b27-8f01-f7014417f4dd" "__uuid__": "561e6246-5428-485b-8961-7fc92dbea4d9"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -348,7 +360,7 @@ ...@@ -348,7 +360,7 @@
"__id__": 11 "__id__": 11
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
...@@ -746,7 +758,7 @@ ...@@ -746,7 +758,7 @@
"__id__": 21 "__id__": 21
} }
], ],
"_active": false, "_active": true,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
...@@ -808,7 +820,7 @@ ...@@ -808,7 +820,7 @@
"__id__": 16 "__id__": 16
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
...@@ -884,7 +896,7 @@ ...@@ -884,7 +896,7 @@
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 0,
"height": 0 "height": 50.4
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -928,7 +940,11 @@ ...@@ -928,7 +940,11 @@
"__id__": 16 "__id__": 16
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_string": "", "_string": "",
...@@ -963,7 +979,7 @@ ...@@ -963,7 +979,7 @@
"__id__": 19 "__id__": 19
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
...@@ -1083,7 +1099,11 @@ ...@@ -1083,7 +1099,11 @@
"__id__": 19 "__id__": 19
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
...@@ -1113,6 +1133,15 @@ ...@@ -1113,6 +1133,15 @@
"_children": [ "_children": [
{ {
"__id__": 22 "__id__": 22
},
{
"__id__": 24
},
{
"__id__": 26
},
{
"__id__": 28
} }
], ],
"_active": true, "_active": true,
...@@ -1247,57 +1276,2786 @@ ...@@ -1247,57 +1276,2786 @@
"_id": "0adN50f61DlbmppsPkOnjX" "_id": "0adN50f61DlbmppsPkOnjX"
}, },
{ {
"__type__": "cc.Canvas", "__type__": "cc.Node",
"_name": "", "_name": "sahua",
"_objFlags": 0, "_objFlags": 0,
"node": { "_parent": {
"__id__": 2 "__id__": 21
}, },
"_enabled": true, "_children": [],
"_designResolution": { "_active": true,
"_components": [
{
"__id__": 25
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 0,
"height": 720 "height": 0
}, },
"_fitWidth": false, "_anchorPoint": {
"_fitHeight": false, "__type__": "cc.Vec2",
"_id": "59Cd0ovbdF4byw5sbjJDx7" "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": "52bVS5OFJG7IlIbFMp26Cr"
}, },
{ {
"__type__": "cc.Widget", "__type__": "cc.AudioSource",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 2 "__id__": 24
}, },
"_enabled": true, "_enabled": true,
"alignMode": 1, "_clip": {
"_target": null, "__uuid__": "a6d18d6c-bacc-48cf-a9fb-ec1eececf773"
"_alignFlags": 45, },
"_left": 0, "_volume": 1,
"_right": 0, "_mute": false,
"_top": 0, "_loop": false,
"_bottom": 0, "_firstlyEnabled": true,
"_verticalCenter": 0, "playOnLoad": false,
"_horizontalCenter": 0, "preload": false,
"_isAbsLeft": true, "_id": "019XUAF2FEXLq2GsKM1IOu"
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "29zXboiXFBKoIV4PQ2liTe"
}, },
{ {
"__type__": "f4edeRi+NdAabqAkVYRwFjK", "__type__": "cc.Node",
"_name": "timeout",
"_objFlags": 0,
"_parent": {
"__id__": 21
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 27
}
],
"_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": "09DxmhfD1EQovLINMiZ6oK"
},
{
"__type__": "cc.AudioSource",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 2 "__id__": 26
}, },
"_enabled": true, "_enabled": true,
"_clip": {
"__uuid__": "43d968c4-a3b2-42cf-8a60-805ceec4bd52"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "46C3Hnjw9BzYvWOt1IcH7D"
},
{
"__type__": "cc.Node",
"_name": "warn",
"_objFlags": 0,
"_parent": {
"__id__": 21
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 29
}
],
"_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": "30YvFvOy9JG7g+8rENA6CY"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 28
},
"_enabled": true,
"_clip": {
"__uuid__": "e721e805-332d-4053-99be-c795d37f02de"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "40IH2ZdgpK9oI5WH73f80S"
},
{
"__type__": "cc.Node",
"_name": "top",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 31
},
{
"__id__": 33
}
],
"_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": 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": "62FBdFM0FHwr9WPZ+bHsX2"
},
{
"__type__": "cc.Node",
"_name": "81",
"_objFlags": 0,
"_parent": {
"__id__": 30
},
"_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": 437,
"height": 140
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-369.481,
284.072,
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": "88SkXFltpLM7cew9ApAWsF"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 31
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "11ba173d-b87a-400f-8dbd-4a634610eff3"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "9eloR5Gn5PYpWUDTOYcq1v"
},
{
"__type__": "cc.Node",
"_name": "New Label",
"_objFlags": 0,
"_parent": {
"__id__": 30
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 34
},
{
"__id__": 35
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200.26,
"height": 52.1
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-377.085,
294.079,
0,
0,
0,
0.045136327731093585,
0.9989808366124704,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 5.174
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "d83ucBXlpDtpZbL6wjMwKU"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 33
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "213435325",
"_N$string": "213435325",
"_fontSize": 35,
"_lineHeight": 35,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "f7722ecb-7136-4cf1-a398-4709fe14b63d"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "c6HA1e9XtOv7PXc3srgtBW"
},
{
"__type__": "cc.LabelOutline",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 33
},
"_enabled": true,
"_color": {
"__type__": "cc.Color",
"r": 148,
"g": 45,
"b": 26,
"a": 255
},
"_width": 4,
"_id": "baJ7Nyn0VGe7fF1JReGVKu"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 30
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 640,
"_right": 0,
"_top": 360,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "76MKoXgw1C+qYsT0EPH4pZ"
},
{
"__type__": "cc.Node",
"_name": "left",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 38
}
],
"_active": true,
"_components": [
{
"__id__": 45
}
],
"_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": [
-597.662,
-32.914,
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": "98jNqGwfRH3q856E2YsAJJ"
},
{
"__type__": "cc.Node",
"_name": "New ProgressBar",
"_objFlags": 0,
"_parent": {
"__id__": 37
},
"_children": [
{
"__id__": 39
},
{
"__id__": 41
}
],
"_active": true,
"_components": [
{
"__id__": 43
},
{
"__id__": 44
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 22,
"height": 340
},
"_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": "d3yu7KD+NCHrlYllFP2FTb"
},
{
"__type__": "cc.Node",
"_name": "bar",
"_objFlags": 0,
"_parent": {
"__id__": 38
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 40
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 14,
"height": 330
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
-166.7,
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": "db6yvfLh9OR5JuRvRULA0o"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 39
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "02f345b9-a591-4d2a-81d8-85e3ff89dc81"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "701bXHPWVN24MUEtVPlhJ1"
},
{
"__type__": "cc.Node",
"_name": "83",
"_objFlags": 0,
"_parent": {
"__id__": 38
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 42
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 44,
"height": 39
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
160,
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": "8fZsbT2d1MG5eyWzoEXUZQ"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 41
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "864a9525-8c38-4704-ad95-94549fae627a"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "a3t0k4KjJALbBcUXUsBbgd"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 38
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "5342ddba-8092-4d73-a9a4-f87893b9110e"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "5cJjVHDRhAOYrTXPjMpfS/"
},
{
"__type__": "cc.ProgressBar",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 38
},
"_enabled": true,
"_N$totalLength": 330,
"_N$barSprite": {
"__id__": 40
},
"_N$mode": 1,
"_N$progress": 1,
"_N$reverse": false,
"_id": "709HrHxLFCbJxBB3NEvKlH"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 37
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 8,
"_left": 42.337999999999965,
"_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": "47gx1ttUBNUJZ63waQSTrg"
},
{
"__type__": "cc.Node",
"_name": "center",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 47
},
{
"__id__": 54
},
{
"__id__": 60
},
{
"__id__": 64
},
{
"__id__": 66
},
{
"__id__": 69
},
{
"__id__": 72
},
{
"__id__": 73
},
{
"__id__": 75
}
],
"_active": true,
"_components": [
{
"__id__": 77
}
],
"_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": "34R4O3O7JO/YbhlCaiDR5Y"
},
{
"__type__": "cc.Node",
"_name": "item",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [
{
"__id__": 48
},
{
"__id__": 50
},
{
"__id__": 52
}
],
"_active": false,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 220,
"height": 220
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-316.016,
-93.479,
0,
0,
0,
0,
1,
0.709,
0.709,
0.709
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "6bJrYSq1dEDLhq5WAQskOo"
},
{
"__type__": "cc.Node",
"_name": "lanse-copy-2",
"_objFlags": 0,
"_parent": {
"__id__": 47
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 49
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 220,
"height": 220
},
"_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": "973XPDEkFAiKp1/XylgqYk"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 48
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "8cea9cfd-e4e4-486b-aaf9-4f4b1cb12b21"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "ebJNWJg3RCpIsIhtyMtcgW"
},
{
"__type__": "cc.Node",
"_name": "hongse",
"_objFlags": 0,
"_parent": {
"__id__": 47
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 51
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 220,
"height": 220
},
"_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": "3dRFhJcE1IpZpWqkGJdCfc"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 50
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "15eeeb66-7b43-4906-b5d9-29c09d3ecc22"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "61s7S/f45LV6SxVZ58hjw8"
},
{
"__type__": "cc.Node",
"_name": "invalid-name",
"_objFlags": 0,
"_parent": {
"__id__": 47
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 53
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 70,
"height": 94
},
"_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": "25viGufBVCxZyYX3fQnmE1"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 52
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "45abd472-ea5b-47ec-97da-16b60b31e6a4"
},
"_type": 0,
"_sizeMode": 2,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "2eFhQu1jtN2Kb35BKGr756"
},
{
"__type__": "cc.Node",
"_name": "84",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [
{
"__id__": 55
}
],
"_active": false,
"_components": [
{
"__id__": 57
},
{
"__id__": 58
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 207,
"height": 71
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
471.706,
-273.89,
0,
0,
0,
0,
1,
1,
1,
0
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "6apCPp1B5OtLyZOyykpTYv"
},
{
"__type__": "cc.Node",
"_name": "submit",
"_objFlags": 0,
"_parent": {
"__id__": 54
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 56
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 120,
"height": 31
},
"_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": "be008o16BCyYKbVqXTxMZ0"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 55
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "70143abb-3d8e-4685-8479-5594cf5d547c"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6dMsVeYthK5qLTkyE91m0n"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 54
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9f1cd234-973c-4f82-b480-abcba8c6a7c6"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "13WwwQRTRIv5F80L1SWdTI"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 54
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [
{
"__id__": 59
}
],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 3,
"transition": 3,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_N$normalSprite": null,
"_N$pressedSprite": null,
"pressedSprite": null,
"_N$hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": null,
"_id": "b9fK2NeUNM+oFMwI4Fg5lq"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 2
},
"component": "",
"_componentId": "f4edeRi+NdAabqAkVYRwFjK",
"handler": "comfirBtnClick",
"customEventData": ""
},
{
"__type__": "cc.Node",
"_name": "itemBG_top",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [
{
"__id__": 61
}
],
"_active": false,
"_components": [
{
"__id__": 63
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 150,
"height": 150
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-157.015,
90.892,
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": "c87/QBlFNHnorUkgQ/TdVG"
},
{
"__type__": "cc.Node",
"_name": "New Label",
"_objFlags": 0,
"_parent": {
"__id__": 60
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 62
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 229,
"b": 192,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 39.67,
"height": 81.9
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
1.146,
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": "2apvoGILxCB4/hkHH+t3re"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 61
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "5",
"_N$string": "5",
"_fontSize": 65,
"_lineHeight": 65,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "f7722ecb-7136-4cf1-a398-4709fe14b63d"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "c5Kqjz7/BGpYufdE3E7p4s"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 60
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "45e26abc-8350-40f9-94d0-3a5bef1a2bca"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "809TLEJH5PAof9JC2KcwDi"
},
{
"__type__": "cc.Node",
"_name": "itemBG_bottom",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 65
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 150,
"height": 150
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-157.015,
-149.323,
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": "35oVp8xd1NpK3G+Kj7lfZq"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 64
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "1cb149ec-42e8-45fe-99d9-ec7428bec845"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "0bR2qrd/hB6pByuscO7U6U"
},
{
"__type__": "cc.Node",
"_name": "top",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 67
},
{
"__id__": 68
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 20,
"height": 250
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
12.985000000000014,
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": "deUM5E9yNDK4FxgPP2DFx5"
},
{
"__type__": "cc.Layout",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 66
},
"_enabled": true,
"_layoutSize": {
"__type__": "cc.Size",
"width": 20,
"height": 250
},
"_resize": 1,
"_N$layoutType": 1,
"_N$cellSize": {
"__type__": "cc.Size",
"width": 40,
"height": 40
},
"_N$startAxis": 0,
"_N$paddingLeft": 20,
"_N$paddingRight": 20,
"_N$paddingTop": 0,
"_N$paddingBottom": 0,
"_N$spacingX": 20,
"_N$spacingY": 0,
"_N$verticalDirection": 1,
"_N$horizontalDirection": 0,
"_N$affectedByScale": false,
"_id": "d2jcXUweRMGqpSlaZlu6ky"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 66
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 2.9850000000000136,
"_right": -22.985000000000014,
"_top": -125,
"_bottom": -125,
"_verticalCenter": 0,
"_horizontalCenter": 12.985,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 190,
"_originalHeight": 250,
"_id": "4bYsd8gfxHi4q++3lqNzqK"
},
{
"__type__": "cc.Node",
"_name": "bottom",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 70
},
{
"__id__": 71
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 20,
"height": 250
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
12.985000000000014,
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": "dbBYpINEhGjLxnx66nm+5E"
},
{
"__type__": "cc.Layout",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 69
},
"_enabled": true,
"_layoutSize": {
"__type__": "cc.Size",
"width": 20,
"height": 250
},
"_resize": 1,
"_N$layoutType": 1,
"_N$cellSize": {
"__type__": "cc.Size",
"width": 40,
"height": 40
},
"_N$startAxis": 0,
"_N$paddingLeft": 20,
"_N$paddingRight": 20,
"_N$paddingTop": 0,
"_N$paddingBottom": 0,
"_N$spacingX": 20,
"_N$spacingY": 0,
"_N$verticalDirection": 1,
"_N$horizontalDirection": 0,
"_N$affectedByScale": false,
"_id": "1b6Z2IrP5EbZvOENLxH3/w"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 69
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 2.9850000000000136,
"_right": -22.985000000000014,
"_top": -125,
"_bottom": -125,
"_verticalCenter": 0,
"_horizontalCenter": 12.985,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 190,
"_originalHeight": 250,
"_id": "98CwWGooFJYKK/809SMatk"
},
{
"__type__": "cc.Node",
"_name": "itemParent",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [],
"_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": [
12.985,
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": "f0epuUZIdNopj1adb3O0Km"
},
{
"__type__": "cc.Node",
"_name": "WL01-flower(1)_ske",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 74
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1156,
"height": 652
},
"_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": "8fGvP9tgdDvo6AfQTW7hVj"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 73
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "normal",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "3f12a92b-c51d-4940-a524-3b159b87f5b5#4e6ec359-0068-4e27-9d61-cbe271697d81",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "3f12a92b-c51d-4940-a524-3b159b87f5b5"
},
"_N$dragonAtlasAsset": {
"__uuid__": "4e6ec359-0068-4e27-9d61-cbe271697d81"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "30xD9NTDBPy5+xIDrUwhL5"
},
{
"__type__": "cc.Node",
"_name": "timeout_ske",
"_objFlags": 0,
"_parent": {
"__id__": 46
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 76
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 720,
"height": 216
},
"_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": "5dKKlfUBFAsqWvYR1YrcIQ"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 75
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "normal",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "9178de05-362b-49ee-843a-f4247376ec1f#336835f0-780d-43c8-ad1b-2c4c18242df1",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "9178de05-362b-49ee-843a-f4247376ec1f"
},
"_N$dragonAtlasAsset": {
"__uuid__": "336835f0-780d-43c8-ad1b-2c4c18242df1"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "fcguZDsVBPuo9A7jbN8sO3"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 46
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 640,
"_right": 640,
"_top": 360,
"_bottom": 360,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "d6jrU3tjRE8IF+mlLrNwIy"
},
{
"__type__": "cc.Node",
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 79
},
{
"__id__": 80
},
{
"__id__": 81
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1280,
"height": 720
},
"_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": "03QlYC5YZM5oZB9bKvVicK"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 78
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "54ulFVbwFA56P7yS1XJV7p"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 78
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_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": 100,
"_originalHeight": 100,
"_id": "0b2oIlt5VPNIyIJ7JgCWKa"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 78
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 0,
"transition": 0,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_N$normalSprite": null,
"_N$pressedSprite": null,
"pressedSprite": null,
"_N$hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": null,
"_id": "27sWBlfX9C+qp8kQn/Jcju"
},
{
"__type__": "cc.Canvas",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"_designResolution": {
"__type__": "cc.Size",
"width": 1280,
"height": 720
},
"_fitWidth": false,
"_fitHeight": false,
"_id": "59Cd0ovbdF4byw5sbjJDx7"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_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": "29zXboiXFBKoIV4PQ2liTe"
},
{
"__type__": "f4edeRi+NdAabqAkVYRwFjK",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"item": {
"__id__": 47
},
"itembgTop": {
"__id__": 60
},
"itembgBottom": {
"__id__": 64
},
"itemParentT": {
"__id__": 66
},
"itemParentB": {
"__id__": 69
},
"sahuaNode": {
"__id__": 73
},
"timeoutNode": {
"__id__": 75
},
"endNode": {
"__id__": 78
},
"posList": [],
"itemPosList": [],
"itemParent": {
"__id__": 72
},
"comfirBtn": {
"__id__": 54
},
"progress": {
"__id__": 44
},
"title": {
"__id__": 34
},
"timeEnd": false,
"timer": 10,
"_id": "e687yyoRBIzZAOVRL8Sseh" "_id": "e687yyoRBIzZAOVRL8Sseh"
} }
] ]
\ No newline at end of file
...@@ -3,15 +3,42 @@ import { defaultData } from "../script/defaultData"; ...@@ -3,15 +3,42 @@ import { defaultData } from "../script/defaultData";
cc.Class({ cc.Class({
extends: cc.Component, extends: cc.Component,
properties: { properties: {
item: cc.Node,
itembgTop: cc.Node,
itembgBottom: cc.Node,
itemParentT: cc.Node,
itemParentB: cc.Node,
sahuaNode: cc.Node,
timeoutNode: cc.Node,
endNode: cc.Node,
posList: [],
itemPosList: [],
itemParent: cc.Node,
comfirBtn: cc.Node,
progress: cc.ProgressBar,
title: cc.Label,
timeEnd: false,
timer: 10,
}, },
// 生命周期 onLoad
// moveItem(){
// }
onLoad() { onLoad() {
// this.item.on(cc.Node.EventType.TOUCH_MOVE, this.mouseFun, this);
this.initSceneData(); this.initSceneData();
this.initSize(); this.initSize();
// for (let i = 0; i < this.itemParent.children.length; i++) {
// this.posList.push(this.itemParent.children[i].getPosition())
// }
}, },
_imageResList: null, _imageResList: null,
...@@ -62,7 +89,11 @@ cc.Class({ ...@@ -62,7 +89,11 @@ cc.Class({
getData((data) => { getData((data) => {
console.log('data:', data); console.log('data:', data);
this.data = data || this.getDefaultData(); this.data = data || this.getDefaultData();
// this.data = { "listNum": 3, "title": "foolse", "titleAudio": "http://staging-teach.cdn.ireadabc.com/69d6e4097490ff9c53f2f57442af39a9.mp3", "music0": "http://staging-teach.cdn.ireadabc.com/952b3b26f8a617bfe9d60a9304e141d4.mp3", "music1": "http://staging-teach.cdn.ireadabc.com/c14ff6730182ed312d629b3d234f1a0c.mp3", "music2": "http://staging-teach.cdn.ireadabc.com/f9ef4481b596618f6e3574b00417d7ab.mp3", "pic0": "http://staging-teach.cdn.ireadabc.com/773bbe32b7917a072e5c977bcdfca021.jpeg", "pic1": "http://staging-teach.cdn.ireadabc.com/241097d62285721e4a70a15289093525.png", "pic2": "http://staging-teach.cdn.ireadabc.com/4f45f37ea1f07e444f3ef94101857067.jpeg" }
// this.data = { "listNum": 3, "title": "foolse", "titleAudio": "http://staging-teach.cdn.ireadabc.com/69d6e4097490ff9c53f2f57442af39a9.mp3", "music0": "http://staging-teach.cdn.ireadabc.com/952b3b26f8a617bfe9d60a9304e141d4.mp3", "music1": "http://staging-teach.cdn.ireadabc.com/b121f1180eb32bca23d728e55d370e58.mp3", "music2": "http://staging-teach.cdn.ireadabc.com/f9ef4481b596618f6e3574b00417d7ab.mp3", "pic0": "http://staging-teach.cdn.ireadabc.com/773bbe32b7917a072e5c977bcdfca021.jpeg", "pic1": "http://staging-teach.cdn.ireadabc.com/241097d62285721e4a70a15289093525.png", "pic2": "http://staging-teach.cdn.ireadabc.com/4f45f37ea1f07e444f3ef94101857067.jpeg", "timer": "20" };
// this.data = {"listNum":7,"title":"shfdklsw","titleAudio":"http://staging-teach.cdn.ireadabc.com/3968bcd14a5edb20dffc6fa3e9d2d6bd.mp3","music0":"http://staging-teach.cdn.ireadabc.com/952b3b26f8a617bfe9d60a9304e141d4.mp3","music1":"http://staging-teach.cdn.ireadabc.com/b121f1180eb32bca23d728e55d370e58.mp3","music2":"http://staging-teach.cdn.ireadabc.com/f9ef4481b596618f6e3574b00417d7ab.mp3","pic0":"http://staging-teach.cdn.ireadabc.com/773bbe32b7917a072e5c977bcdfca021.jpeg","pic1":"http://staging-teach.cdn.ireadabc.com/241097d62285721e4a70a15289093525.png","pic2":"http://staging-teach.cdn.ireadabc.com/4f45f37ea1f07e444f3ef94101857067.jpeg","timer":"20","music3":"http://staging-teach.cdn.ireadabc.com/f9ef4481b596618f6e3574b00417d7ab.mp3","music4":"http://staging-teach.cdn.ireadabc.com/952b3b26f8a617bfe9d60a9304e141d4.mp3","music5":"http://staging-teach.cdn.ireadabc.com/b121f1180eb32bca23d728e55d370e58.mp3","music6":"http://staging-teach.cdn.ireadabc.com/f21e5dfacc838787c9844d59eabdc415.mp3","pic6":"http://staging-teach.cdn.ireadabc.com/73082243c775235d13a5e0bf37981f68.jpeg","pic3":"http://staging-teach.cdn.ireadabc.com/68ca0ac4d0c0c7bc47215c84970f33af.jpeg","pic4":"http://staging-teach.cdn.ireadabc.com/f21c152a06d0239baa511b8adb8fc766.jpeg","pic5":"http://staging-teach.cdn.ireadabc.com/2f88797f4d298a5f36513d09b2d1d534.jpeg"};
this.data = JSON.parse(JSON.stringify(this.data)) this.data = JSON.parse(JSON.stringify(this.data))
// console.log(this.data)
this.preloadItem() this.preloadItem()
}) })
}, },
...@@ -139,26 +170,204 @@ cc.Class({ ...@@ -139,26 +170,204 @@ cc.Class({
}, },
audioBtn: null, audioBtn: null,
sahuaMusic: null,
timeoutMusic: null,
warnMusic: null,
initAudio() { initAudio() {
const audioNode = cc.find('Canvas/res/audio'); const audioNode = cc.find('Canvas/res/audio');
const getAudioByResName = (resName) => { const getAudioByResName = (resName) => {
return audioNode.getChildByName(resName).getComponent(cc.AudioSource); return audioNode.getChildByName(resName).getComponent(cc.AudioSource);
} }
this.audioBtn = getAudioByResName('btn'); this.audioBtn = getAudioByResName('btn');
this.sahuaMusic = getAudioByResName('sahua');
this.timeoutMusic = getAudioByResName('timeout');
this.warnMusic = getAudioByResName('warn');
}, },
initView() { initView() {
this.initTitle()
this.initItem()
this.initClock()
this.initBg();
this.initPic(); // this.initBg();
this.initBtn(); // this.initPic();
this.initIcon(); // this.initBtn();
// this.initIcon();
},
initTitle() {
this.title.string = this.data.title;
this.playAudioByUrl(this.data.titleAudio);
},
initClock() {
let count = this.data.timer;
this.callback = function () {
this.progress.progress = count / this.data.timer
this.progress.node.children[1].y = 160 - (320 - count / this.data.timer * 320)
if (count <= 0) {
this.unschedule(this.callback);
this.timeEnd = true;
this.checkTheList()
this.comfirBtn.active = true;
return
}
count--;
}
this.schedule(this.callback, 1);
}, },
initItem() {
let numList = []
for (let i = 0; i < this.data.listNum; i++) {
numList.push(i)
let nodeT = cc.instantiate(this.itembgTop)
nodeT.parent = this.itemParentT;
nodeT.y = 100;
nodeT.children[0].getComponent(cc.Label).string = i + 1
nodeT.active = true;
let nodeB = cc.instantiate(this.itembgBottom)
nodeB.parent = this.itemParentB;
nodeB.y = -100;
nodeB.active = true;
}
numList.sort(this.randomSort)
this.scheduleOnce(() => {
// for()
for (let i = 0; i < this.data.listNum; i++) {
this.posList.push(this.itemParentT.children[i].getPosition())
this.posList.push(this.itemParentB.children[i].getPosition())
let item = cc.instantiate(this.item)
item.active = true;
item.parent = this.itemParent;
item.numberIndex = numList[i];
this.getSpriteFrimeByUrl(this.data['pic' + numList[i]], (texture) => {
const spriteFrame = new cc.SpriteFrame(texture)
item.children[2].getComponent(cc.Sprite).spriteFrame = spriteFrame
item.children[2].scale = this.getPicScale(texture)
})
item.setPosition(this.itemParentB.children[i].getPosition())
item.on(cc.Node.EventType.TOUCH_START, this.mouseStart, this);
item.on(cc.Node.EventType.TOUCH_MOVE, this.mouseFun, this);
item.on(cc.Node.EventType.TOUCH_END, this.mouseEnd, this);
// item.node.
}
}, 0.01)
},
getPicScale(node) {
let scale1 = node.width / node.height;
if (scale1 == 9 / 8) {
return 180 / node.width
} else if (scale1 > 9 / 8) {
return 180 / node.width
} else if (scale1 < 9 / 8) {
return 160 / node.height
}
},
mouseStart(event) {
this.oldPostion = event.target.getPosition()
let num = event.target.numberIndex
this.playAudioByUrl(this.data['music' + num]);
},
mouseFun(event) {
let delta = event.getDelta();
event.target.x += delta.x;
event.target.y += delta.y;
},
mouseEnd(event) {
let position = event.target.getPosition()
let reSetPostion = true;
let newPostion = (0, 0);
for (let i = 0; i < this.posList.length; i++) {
if (position.x > this.posList[i].x - 75 && position.x < this.posList[i].x + 75 && position.y < this.posList[i].y + 75 && position.y > this.posList[i].y - 75) {
reSetPostion = false;
newPostion = this.posList[i]
}
}
if (reSetPostion) {
event.target.setPosition(this.oldPostion)
} else {
for (let i = 0; i < this.itemParent.children.length; i++) {
if (newPostion.x == this.itemParent.children[i].getPosition().x && newPostion.y == this.itemParent.children[i].getPosition().y) {
this.itemParent.children[i].setPosition(this.oldPostion)
event.target.setPosition(newPostion)
return;
}
}
event.target.setPosition(newPostion)
this.showBtn()
}
},
randomSort(a, b) { return Math.random() > 0.5 ? -1 : 1; },
randomSort2(a, b) { return a.x < b.x ? -1 : 1 },
showBtn() {
let showbtn = true;
for (let i = 0; i < this.itemParent.children.length; i++) {
if (this.posList[0].y != this.itemParent.children[i].getPosition().y) {
showbtn = false;
}
}
if (showbtn) {
this.comfirBtn.active = true;
} else {
this.comfirBtn.active = false;
}
},
comfirBtnClick() {
this.checkTheList()
},
checkTheList() {
cc.audioEngine.stopMusic();
let numlist = []
let NodeList = []
for (let i = 0; i < this.itemParent.children.length; i++) {
NodeList.push(this.itemParent.children[i])
}
let suc = true;
NodeList.sort(this.randomSort2)
for (let i = 0; i < NodeList.length; i++) {
if (NodeList[i].numberIndex != i || NodeList[i].y == this.posList[1].y) {
NodeList[i].children[1].active = true;
cc.audioEngine.play(this.warnMusic.clip, false, 0.8)
this.actionMove(NodeList[i])
suc = false;
}
}
if (suc) {
this.sahuaNode.active = true;
cc.audioEngine.play(this.sahuaMusic.clip, false, 0.8)
this.unschedule(this.callback);
this.endNode.active = true
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
} else {
if (this.timeEnd) {
this.timeoutNode.active = true;
cc.audioEngine.play(this.timeoutMusic.clip, false, 0.8)
this.unschedule(this.callback);
this.endNode.active = true
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
}
}
},
actionMove(node) {
let x = node.x;
cc.tween(node)
.to(0.1, { position: cc.v2(x - 10, node.y) })
.to(0.1, { position: cc.v2(x + 10, node.y) })
.to(0.1, { position: cc.v2(x - 10, node.y) })
.to(0.1, { position: cc.v2(x + 10, node.y) })
.to(0.1, { position: cc.v2(x, node.y) })
.call(() => { node.children[1].active = false; })
.start()
},
initBg() { initBg() {
const bgNode = cc.find('Canvas/bg'); const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax; bgNode.scale = this._mapScaleMax;
...@@ -329,12 +538,19 @@ cc.Class({ ...@@ -329,12 +538,19 @@ cc.Class({
getSpriteFrimeByUrl(url, cb) { getSpriteFrimeByUrl(url, cb) {
cc.loader.load({ url }, (err, img) => { cc.assetManager.loadRemote(url, (err, texture) => {
const spriteFrame = new cc.SpriteFrame(img) // console.log(texture)
if (cb) { if (cb) {
cb(spriteFrame); cb(texture);
} }
}) });
// cc.assetManager.loadRemote({ url }, (err, img) => {
// const spriteFrame = new cc.SpriteFrame(img)
// if (cb) {
// cb(spriteFrame);
// }
// })
}, },
getSprNodeByUrl(url, cb) { getSprNodeByUrl(url, cb) {
...@@ -349,9 +565,12 @@ cc.Class({ ...@@ -349,9 +565,12 @@ cc.Class({
}, },
playAudioByUrl(audio_url, cb = null) { playAudioByUrl(audio_url, cb = null) {
if (audio_url) { if (audio_url) {
cc.audioEngine.stopMusic();
cc.assetManager.loadRemote(audio_url, (err, audioClip) => { cc.assetManager.loadRemote(audio_url, (err, audioClip) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8); // const audioId = cc.audioEngine.play(audioClip, false, 0.8);
cc.audioEngine.playMusic(audioClip, false);
if (cb) { if (cb) {
cc.audioEngine.setFinishCallback(audioId, () => { cc.audioEngine.setFinishCallback(audioId, () => {
cb(); cb();
......
{
"ver": "2.3.5",
"uuid": "12dadbc1-73b0-4825-9193-6bd0be51c162",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 23,
"height": 50,
"platformSettings": {},
"subMetas": {
"1": {
"ver": "1.0.4",
"uuid": "df474ae8-c964-49c9-a0d0-dcbdbabac622",
"rawTextureUuid": "12dadbc1-73b0-4825-9193-6bd0be51c162",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 23,
"height": 50,
"rawWidth": 23,
"rawHeight": 50,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9eb55ac7-dcef-46f1-a41c-324ba2f84a80",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 33,
"height": 49,
"platformSettings": {},
"subMetas": {
"2": {
"ver": "1.0.4",
"uuid": "dff7d230-b5f3-4d00-b5ad-7aec6a1e4add",
"rawTextureUuid": "9eb55ac7-dcef-46f1-a41c-324ba2f84a80",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 33,
"height": 49,
"rawWidth": 33,
"rawHeight": 49,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a74805e7-3fa3-4850-a015-db92bc4f079e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 33,
"height": 50,
"platformSettings": {},
"subMetas": {
"3": {
"ver": "1.0.4",
"uuid": "1ae0ea05-c99a-41e6-b010-1d275005494a",
"rawTextureUuid": "a74805e7-3fa3-4850-a015-db92bc4f079e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 33,
"height": 50,
"rawWidth": 33,
"rawHeight": 50,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "67d92b94-c543-4810-a057-99a16a8e1105",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 39,
"height": 50,
"platformSettings": {},
"subMetas": {
"4": {
"ver": "1.0.4",
"uuid": "3c6aaff7-1aee-4fa2-be57-d2dd861c8361",
"rawTextureUuid": "67d92b94-c543-4810-a057-99a16a8e1105",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 39,
"height": 50,
"rawWidth": 39,
"rawHeight": 50,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "0ca52c1c-ca1c-49a1-a95e-c3ea0bc60807",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 119,
"height": 142,
"platformSettings": {},
"subMetas": {
"42-e-408243106-b-4773-edbfae-8-af-781-a-1-d": {
"ver": "1.0.4",
"uuid": "00af2439-8702-4967-abfa-e1ec07c4d2d9",
"rawTextureUuid": "0ca52c1c-ca1c-49a1-a95e-c3ea0bc60807",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 119,
"height": 142,
"rawWidth": 119,
"rawHeight": 142,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dfb696a6-8957-404e-aab0-a9c0bc7625ef",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 36,
"height": 51,
"platformSettings": {},
"subMetas": {
"5": {
"ver": "1.0.4",
"uuid": "c7de575a-2748-418d-960f-3ec415db0f3f",
"rawTextureUuid": "dfb696a6-8957-404e-aab0-a9c0bc7625ef",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 36,
"height": 51,
"rawWidth": 36,
"rawHeight": 51,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "03a534c4-8dd1-4dd9-b84f-cd44002124ab",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 200,
"height": 200,
"platformSettings": {},
"subMetas": {
"75-copy-2": {
"ver": "1.0.4",
"uuid": "45e26abc-8350-40f9-94d0-3a5bef1a2bca",
"rawTextureUuid": "03a534c4-8dd1-4dd9-b84f-cd44002124ab",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 200,
"height": 200,
"rawWidth": 200,
"rawHeight": 200,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c7d74c27-f189-4a58-82bf-9be239135f31",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 22,
"height": 340,
"platformSettings": {},
"subMetas": {
"77": {
"ver": "1.0.4",
"uuid": "5342ddba-8092-4d73-a9a4-f87893b9110e",
"rawTextureUuid": "c7d74c27-f189-4a58-82bf-9be239135f31",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 22,
"height": 340,
"rawWidth": 22,
"rawHeight": 340,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a588542b-49b4-435a-90f8-48deb91b4b06",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 14,
"height": 330,
"platformSettings": {},
"subMetas": {
"78": {
"ver": "1.0.4",
"uuid": "02f345b9-a591-4d2a-81d8-85e3ff89dc81",
"rawTextureUuid": "a588542b-49b4-435a-90f8-48deb91b4b06",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 14,
"height": 330,
"rawWidth": 14,
"rawHeight": 330,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fbd49a32-1c2c-405f-bdc2-125b128e0fef",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 437,
"height": 140,
"platformSettings": {},
"subMetas": {
"81": {
"ver": "1.0.4",
"uuid": "11ba173d-b87a-400f-8dbd-4a634610eff3",
"rawTextureUuid": "fbd49a32-1c2c-405f-bdc2-125b128e0fef",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 437,
"height": 140,
"rawWidth": 437,
"rawHeight": 140,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7f95646d-28bd-44db-ba19-fba996870379",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 720,
"platformSettings": {},
"subMetas": {
"82": {
"ver": "1.0.4",
"uuid": "beaa4b22-29a5-46a4-8afb-40f8d0a06cf6",
"rawTextureUuid": "7f95646d-28bd-44db-ba19-fba996870379",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 720,
"rawWidth": 1280,
"rawHeight": 720,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "90d668d7-7ff2-4eac-a064-693d81299983",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 44,
"height": 39,
"platformSettings": {},
"subMetas": {
"83": {
"ver": "1.0.4",
"uuid": "864a9525-8c38-4704-ad95-94549fae627a",
"rawTextureUuid": "90d668d7-7ff2-4eac-a064-693d81299983",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 39,
"rawWidth": 44,
"rawHeight": 39,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bd148954-b9c5-40a7-abf4-2f76f200c48e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 207,
"height": 71,
"platformSettings": {},
"subMetas": {
"84": {
"ver": "1.0.4",
"uuid": "9f1cd234-973c-4f82-b480-abcba8c6a7c6",
"rawTextureUuid": "bd148954-b9c5-40a7-abf4-2f76f200c48e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 207,
"height": 71,
"rawWidth": 207,
"rawHeight": 71,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c62d1b15-1f58-4024-8f72-b32a1501dc50",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 720,
"platformSettings": {},
"subMetas": {
"WL05-图片排序-进入课件后先播放标题音频": {
"ver": "1.0.4",
"uuid": "21dde4e9-6aab-4bf7-927d-d371646ec72c",
"rawTextureUuid": "c62d1b15-1f58-4024-8f72-b32a1501dc50",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 720,
"rawWidth": 1280,
"rawHeight": 720,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1dafaf09-6af2-4923-8450-eb564bdbfdb6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"a-20-f-1-d-93-d-94-cc-51-cd-2-ea-8308-a-436-ff-31": {
"ver": "1.0.4",
"uuid": "fabc44ca-e791-4db9-8b71-76a07b2981e8",
"rawTextureUuid": "1dafaf09-6af2-4923-8450-eb564bdbfdb6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 120,
"height": 154,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "78e219eb-90ac-4e29-8c18-a947cdd544e4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 186,
"platformSettings": {},
"subMetas": {
"copy-3": {
"ver": "1.0.4",
"uuid": "1cb149ec-42e8-45fe-99d9-ec7428bec845",
"rawTextureUuid": "78e219eb-90ac-4e29-8c18-a947cdd544e4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 186,
"rawWidth": 186,
"rawHeight": 186,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a47496e9-344f-447e-a008-6bca8acac686",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 146,
"height": 144,
"platformSettings": {},
"subMetas": {
"d-7-e-61-a-6-ea-58332076-d-2-c-9547-e-3-ba-67-ba": {
"ver": "1.0.4",
"uuid": "e8f1b0b8-9175-45fa-b6cb-671cf0b6e2e4",
"rawTextureUuid": "a47496e9-344f-447e-a008-6bca8acac686",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 146,
"height": 144,
"rawWidth": 146,
"rawHeight": 144,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1b2c4629-9fb4-4abf-9aa4-aefa1dfd9169",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 220,
"height": 220,
"platformSettings": {},
"subMetas": {
"hongse": {
"ver": "1.0.4",
"uuid": "15eeeb66-7b43-4906-b5d9-29c09d3ecc22",
"rawTextureUuid": "1b2c4629-9fb4-4abf-9aa4-aefa1dfd9169",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 220,
"height": 220,
"rawWidth": 220,
"rawHeight": 220,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fd9efd12-5c2c-44ee-9091-fe00defa108b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 70,
"height": 94,
"platformSettings": {},
"subMetas": {
"invalid-name": {
"ver": "1.0.4",
"uuid": "45abd472-ea5b-47ec-97da-16b60b31e6a4",
"rawTextureUuid": "fd9efd12-5c2c-44ee-9091-fe00defa108b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 70,
"height": 94,
"rawWidth": 70,
"rawHeight": 94,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "87300140-11c2-4d57-8a76-21c8d3ef18d9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 126,
"height": 99,
"platformSettings": {},
"subMetas": {
"invalid-name_2": {
"ver": "1.0.4",
"uuid": "f07124eb-3166-4f65-8e3b-c38f5c8995c1",
"rawTextureUuid": "87300140-11c2-4d57-8a76-21c8d3ef18d9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 1,
"trimX": 0,
"trimY": 0,
"width": 126,
"height": 97,
"rawWidth": 126,
"rawHeight": 99,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "011cc6c9-a45a-47bf-b707-f2913980171d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 220,
"height": 220,
"platformSettings": {},
"subMetas": {
"lanse-copy-2": {
"ver": "1.0.4",
"uuid": "8cea9cfd-e4e4-486b-aaf9-4f4b1cb12b21",
"rawTextureUuid": "011cc6c9-a45a-47bf-b707-f2913980171d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 220,
"height": 220,
"rawWidth": 220,
"rawHeight": 220,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c51f93c6-74d9-4030-adf9-906e3588bcb1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 292,
"height": 52,
"platformSettings": {},
"subMetas": {
"sequencing-the-pictu": {
"ver": "1.0.4",
"uuid": "bd312cca-12fd-427e-9af6-8f94bb3b268c",
"rawTextureUuid": "c51f93c6-74d9-4030-adf9-906e3588bcb1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 0,
"trimY": 0,
"width": 292,
"height": 51,
"rawWidth": 292,
"rawHeight": 52,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "36a52716-f713-4634-beff-af9581173b62",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 286,
"height": 46,
"platformSettings": {},
"subMetas": {
"sequencing-the-pictu_2": {
"ver": "1.0.4",
"uuid": "90744140-7d2f-4fd4-98c4-8e661f571507",
"rawTextureUuid": "36a52716-f713-4634-beff-af9581173b62",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 286,
"height": 46,
"rawWidth": 286,
"rawHeight": 46,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "636f59e9-0ed0-41ba-bf37-6681d68d3fd8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 31,
"platformSettings": {},
"subMetas": {
"submit": {
"ver": "1.0.4",
"uuid": "70143abb-3d8e-4685-8479-5594cf5d547c",
"rawTextureUuid": "636f59e9-0ed0-41ba-bf37-6681d68d3fd8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 120,
"height": 31,
"rawWidth": 120,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8fdd298d-55f9-4bcd-9db7-893d243ccfba",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 720,
"platformSettings": {},
"subMetas": {
"wl-05": {
"ver": "1.0.4",
"uuid": "561e6246-5428-485b-8961-7fc92dbea4d9",
"rawTextureUuid": "8fdd298d-55f9-4bcd-9db7-893d243ccfba",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 720,
"rawWidth": 1280,
"rawHeight": 720,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "0ae0daa4-a2a0-4b49-b6e5-2982921c1f95",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 916,
"height": 274,
"platformSettings": {},
"subMetas": {
"wl-nicetry": {
"ver": "1.0.4",
"uuid": "02e1081b-abba-4587-931c-507177055f32",
"rawTextureUuid": "0ae0daa4-a2a0-4b49-b6e5-2982921c1f95",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 916,
"height": 274,
"rawWidth": 916,
"rawHeight": 274,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment