Commit b81a603d authored by liujiangnan's avatar liujiangnan

feat: 添加另一个趣配音的模板

parent ce304201
No preview for this file type
This diff is collapsed.
......@@ -29,7 +29,7 @@
"compressing": "^1.5.0",
"ng-zorro-antd": "^8.5.2",
"rxjs": "~6.5.4",
"node-sass": "^4.0.0",
"node-sass": "4.14.0",
"spark-md5": "^3.0.0",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
......
......@@ -4,32 +4,17 @@
.model-content {
width: 100%;
height: 100%;
padding: 20px;
}
.radioPaire {
float: left;
margin: 3px;
border-style: dashed;
border-color: #000;
border-width: 1px;
.line{
display: flex;
margin-bottom: 20px;
}
.border {
border-radius: 20px;
border-style: dashed;
padding: 20px;
margin: 20px;
/*width: 500px; */
/*//border-radius: 20px;*/
/*//border-width: 2px;*/
/*//border-color: #000000;*/
.line .label{
width: 100px;
flex: 0 100px;
line-height: 32px;
}
.border-lite {
border: 2px dashed #ddd;
border-radius: 0.5rem;
padding: 10px;
margin: 10px;
.line .field{
flex: 1 auto;
}
<div class="model-content">
<div style="padding: 10px;">
<div style="width: 300px;" align='center'>
<span>图1: </span>
<app-upload-image-with-preview
[picUrl]="item.pic_url"
(imageUploaded)="onImageUploadSuccess($event, 'pic_url')">
</app-upload-image-with-preview>
<div class="model-content">
<div class="line">
<div class="label">开始音频:</div>
<div class="field">
<app-audio-recorder [audioUrl]="item.begin_audio_url" (audioUploaded)="onBeginUploaded($event)"></app-audio-recorder>
</div>
<div style="width: 300px; margin-top: 5px;" align='center'>
<span>图2: </span>
<app-upload-image-with-preview
[picUrl]="item.pic_url_2"
(imageUploaded)="onImageUploadSuccess($event, 'pic_url_2')">
</app-upload-image-with-preview>
</div>
<div style="width: 300px; margin-top: 15px;">
<span>文本: </span>
<input type="text" nz-input [(ngModel)]="item.text" (blur)="save()">
<div class="line">
<div class="label">结束音频:</div>
<div class="field">
<app-audio-recorder [audioUrl]="item.finish_audio_url" (audioUploaded)="onFinishUploaded($event)"></app-audio-recorder>
</div>
<div style="margin-top: 5px">
<span>音频: </span>
<app-audio-recorder
[audioUrl]="item.audio_url"
(audioUploaded)="onAudioUploadSuccess($event, 'audio_url')"
></app-audio-recorder>
</div>
<br><br><br><br><br><br>
<div class="line">
<div class="label">视频:</div>
<div class="field">
<app-upload-video [videoUrl]="item.video_url" (videoUploaded)="onVideoUploaded($event)"></app-upload-video>
</div>
</div>
</div>
import { Component, EventEmitter, Input, OnDestroy, OnChanges, OnInit, Output, ApplicationRef, ChangeDetectorRef } from '@angular/core';
import { JsonPipe } from '@angular/common';
import {Component, EventEmitter, Input, OnDestroy, OnChanges, OnInit, Output, ApplicationRef, ChangeDetectorRef} from '@angular/core';
import {NzMessageService} from "ng-zorro-antd";
@Component({
......@@ -10,38 +11,40 @@ import { JsonPipe } from '@angular/common';
export class FormComponent implements OnInit, OnChanges, OnDestroy {
// 储存数据用
saveKey = "test_001";
saveKey = 'op-06-2';
// 储存对象
item;
constructor(private appRef: ApplicationRef, private changeDetectorRef: ChangeDetectorRef) {
bgItem = {};
hotZoneItemArr = [];
animaArr = [];
}
picArr;
createShell() {
this.item.wordList.push({
word: '',
audio: '',
backWord: '',
backWordAudio: '',
});
this.save();
}
removeShell(idx) {
this.item.wordList.splice(idx, 1);
this.save();
constructor(private appRef: ApplicationRef,
private changeDetectorRef: ChangeDetectorRef,
private message: NzMessageService) {
}
ngOnInit() {
this.item = {};
this.item = {
video_url: '',
begin_audio_url: '',
finish_audio_url: '',
};
// 获取存储的数据
(<any>window).courseware.getData((data) => {
// 获取存储的数据
(<any> window).courseware.getData((data) => {
// console.log(1, data);
if (data) {
this.item = data;
// console.log(2, data);
}
this.init();
......@@ -50,56 +53,44 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
this.refresh();
}, this.saveKey);
}
ngOnChanges() {
}
ngOnDestroy() {
}
init() {
}
/**
* 储存图片数据
* @param e
*/
onImageUploadSuccess(e, key) {
this.item[key] = e.url;
onVideoUploaded(evt) {
this.item.video_url = evt.url;
console.log(evt);
this.save();
}
/**
* 储存音频数据
* @param e
*/
onAudioUploadSuccess(e, key) {
this.item[key] = e.url;
onBeginUploaded(evt) {
this.item.begin_audio_url = evt.url;
console.log(evt);
this.save();
}
onWordAudioUploadSuccess(e, idx) {
this.item.wordList[idx].audio = e.url;
onFinishUploaded(evt) {
this.item.finish_audio_url = evt.url;
console.log(evt);
this.save();
}
init() {
onBackWordAudioUploadSuccess(e, idx) {
this.item.wordList[idx].backWordAudio = e.url;
this.save();
}
/**
* 储存数据
*/
save() {
(<any>window).courseware.setData(this.item, null, this.saveKey);
console.log('this.item: ', this.item);
console.log('this.item json: ', JSON.stringify(this.item) );
(<any> window).courseware.setData(this.item, null, this.saveKey);
this.refresh();
console.log('this.item = ' + JSON.stringify(this.item));
}
/**
......@@ -111,4 +102,6 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
}, 1);
}
}
This diff is collapsed.
{
"ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"isBundle": true,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {
"ios": true,
"android": true
},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.2.9",
"uuid": "50abd938-ebf2-4f21-9767-248f2ea4bb44",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b",
"uuid": "afcb05ae-7632-408f-b825-abc619271899",
"downloadMode": 0,
"duration": 0.130612,
"duration": 8.64,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "397c8032-6940-4cc0-96aa-d3eae4456ecf",
"downloadMode": 0,
"duration": 7.02,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"uuid": "2c135ba9-5d6e-495e-b89e-512973b6a5b6",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "ed5e2fe4-0847-47b5-a3bd-fe05a65c20a1",
"subMetas": {}
}
\ No newline at end of file
{"name":"mao","imagePath":"mao_tex.png","SubTexture":[{"name":"猫01/影子","x":1,"height":66,"y":343,"width":337},{"name":"猫01/尾巴","x":1,"height":109,"y":188,"width":175},{"name":"猫01/右腿","x":178,"height":117,"y":188,"width":104},{"name":"猫01/左腿","x":1,"height":115,"y":569,"width":64},{"name":"猫01/右手","x":427,"height":122,"y":590,"width":69},{"name":"猫01/左手","x":301,"height":74,"y":590,"width":124},{"name":"猫01伸/左手伸直","x":299,"height":169,"y":1,"width":168},{"name":"猫01伸/右手伸直","x":299,"height":169,"y":172,"width":168},{"name":"猫01/身体","x":340,"height":180,"y":343,"width":122},{"name":"猫01/领带","x":1,"height":156,"y":411,"width":120},{"name":"猫01/右耳","x":155,"height":76,"y":602,"width":90},{"name":"猫01/左耳","x":67,"height":85,"y":602,"width":86},{"name":"猫01/组_1","x":1,"height":185,"y":1,"width":296},{"name":"猫01/右眼","x":1,"height":60,"y":686,"width":59},{"name":"猫01/右眉毛","x":67,"height":5,"y":595,"width":33},{"name":"猫01/左眼","x":247,"height":60,"y":666,"width":59},{"name":"猫01/左眉毛","x":247,"height":12,"y":602,"width":31},{"name":"猫01/眼镜","x":301,"height":63,"y":525,"width":170},{"name":"猫01/胡子","x":123,"height":85,"y":515,"width":176},{"name":"猫01/鼻子","x":67,"height":24,"y":569,"width":28},{"name":"猫01/嘴","x":1,"height":30,"y":299,"width":65},{"name":"猫01/帽子","x":123,"height":102,"y":411,"width":158}],"height":1024,"width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "41b53ea5-38a9-43b4-beae-d723e248e374",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ec1afc6d-83d0-42e1-a46a-6c7033dd7685",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"mao_tex": {
"ver": "1.0.4",
"uuid": "244d81ec-64a4-4ac3-8867-d43b14ee8337",
"rawTextureUuid": "ec1afc6d-83d0-42e1-a46a-6c7033dd7685",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -7.5,
"offsetY": 138.5,
"trimX": 1,
"trimY": 1,
"width": 495,
"height": 745,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
export const defaultData = {
"finish_audio_url": "http://staging-teach.cdn.ireadabc.com/91dfb00ebc0349e0b7c1df43bdf4bfe8.mp3",
"begin_audio_url": "http://staging-teach.cdn.ireadabc.com/91dfb00ebc0349e0b7c1df43bdf4bfe8.mp3",
"video_url":"http://staging-teach.cdn.ireadabc.com/95f102cd10cf0e64efe6dfd489add0f4.mp4"}
\ No newline at end of file
......@@ -109,6 +109,7 @@ export function playAudioByUrl(audio_url, cb=null) {
cb();
});
}
return audioId;
});
}
}
......
{
"ver": "2.3.5",
"uuid": "1c46c815-a5d7-400a-bd04-e6c46bb44074",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 72,
"height": 72,
"platformSettings": {},
"subMetas": {
"bar-tag": {
"ver": "1.0.4",
"uuid": "ed8280d3-23e2-4b39-a585-33c4028ec6b3",
"rawTextureUuid": "1c46c815-a5d7-400a-bd04-e6c46bb44074",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 72,
"height": 72,
"rawWidth": 72,
"rawHeight": 72,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "ff636964-5d04-4f95-849d-dec0c57b98a2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 720,
"width": 2176,
"height": 1600,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "6e2c3b1e-28fc-4217-8052-33bff620ec2b",
"rawTextureUuid": "ff636964-5d04-4f95-849d-dec0c57b98a2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......@@ -22,10 +22,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 720,
"rawWidth": 1280,
"rawHeight": 720,
"width": 2176,
"height": 1600,
"rawWidth": 2176,
"rawHeight": 1600,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "a563b444-91b4-447c-81c0-10eae2d21632",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2176,
"height": 291,
"platformSettings": {},
"subMetas": {
"grass": {
"ver": "1.0.4",
"uuid": "a7edf011-1c8c-4359-b7dd-3919821f4b77",
"rawTextureUuid": "a563b444-91b4-447c-81c0-10eae2d21632",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2176,
"height": 291,
"rawWidth": 2176,
"rawHeight": 291,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7909afa3-a4fb-4e2f-8c3e-159d472f8984",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2086,
"height": 1386,
"platformSettings": {},
"subMetas": {
"house": {
"ver": "1.0.4",
"uuid": "da6432d3-d399-4ecd-abe6-e80b48af8878",
"rawTextureUuid": "7909afa3-a4fb-4e2f-8c3e-159d472f8984",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2086,
"height": 1386,
"rawWidth": 2086,
"rawHeight": 1386,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8fab2c34-fe97-4795-b2c6-c1d7f73bc4ae",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 134,
"height": 110,
"platformSettings": {},
"subMetas": {
"icon_music": {
"ver": "1.0.4",
"uuid": "eff769a4-6f27-4bbb-968d-63bd93f6ac5b",
"rawTextureUuid": "8fab2c34-fe97-4795-b2c6-c1d7f73bc4ae",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 134,
"height": 110,
"rawWidth": 134,
"rawHeight": 110,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "86910c1a-0e81-48fe-a4b1-8b14df5d0674",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 75,
"height": 112,
"platformSettings": {},
"subMetas": {
"icon_music2": {
"ver": "1.0.4",
"uuid": "61755dae-d9b7-4592-8a95-2909b52b3eea",
"rawTextureUuid": "86910c1a-0e81-48fe-a4b1-8b14df5d0674",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 75,
"height": 112,
"rawWidth": 75,
"rawHeight": 112,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "03e9295f-f625-4943-b552-d27798325e46",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1207,
"height": 28,
"platformSettings": {},
"subMetas": {
"p-bar-bg": {
"ver": "1.0.4",
"uuid": "4a48c78a-7ec5-4d40-8f8b-18e07434657b",
"rawTextureUuid": "03e9295f-f625-4943-b552-d27798325e46",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1207,
"height": 28,
"rawWidth": 1207,
"rawHeight": 28,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4ca25e74-accc-48ff-8d7c-84f112b9f58d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1199,
"height": 28,
"platformSettings": {},
"subMetas": {
"p-bar": {
"ver": "1.0.4",
"uuid": "5063dacc-45c5-4446-9b6d-3c82f34cb5c9",
"rawTextureUuid": "4ca25e74-accc-48ff-8d7c-84f112b9f58d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1199,
"height": 28,
"rawWidth": 1199,
"rawHeight": 28,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 15,
"borderRight": 15,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dbececbb-0295-4919-a624-016e25e8c973",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1565,
"height": 175,
"platformSettings": {},
"subMetas": {
"p-bg": {
"ver": "1.0.4",
"uuid": "1b8cd62c-a635-43c6-91fd-e3dafb29ccec",
"rawTextureUuid": "dbececbb-0295-4919-a624-016e25e8c973",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1565,
"height": 175,
"rawWidth": 1565,
"rawHeight": 175,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "77eb2c16-f6ed-4ac6-b06b-9b35cd9ffce9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 155,
"height": 130,
"platformSettings": {},
"subMetas": {
"pause": {
"ver": "1.0.4",
"uuid": "b1a630db-a8ee-478c-9c21-25df1878a7f2",
"rawTextureUuid": "77eb2c16-f6ed-4ac6-b06b-9b35cd9ffce9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 155,
"height": 130,
"rawWidth": 155,
"rawHeight": 130,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d0bd0fe9-2c70-49ce-bfda-088e6acc3d52",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 155,
"height": 130,
"platformSettings": {},
"subMetas": {
"play": {
"ver": "1.0.4",
"uuid": "4688af79-07cb-4c61-9802-8d3d7d54b90b",
"rawTextureUuid": "d0bd0fe9-2c70-49ce-bfda-088e6acc3d52",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 155,
"height": 130,
"rawWidth": 155,
"rawHeight": 130,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b6b900f8-d417-49b6-8422-07a5f127e65f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 335,
"height": 217,
"platformSettings": {},
"subMetas": {
"qupeiyin": {
"ver": "1.0.4",
"uuid": "a7feeca3-b633-46d4-ad11-9d557c69f43f",
"rawTextureUuid": "b6b900f8-d417-49b6-8422-07a5f127e65f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 335,
"height": 217,
"rawWidth": 335,
"rawHeight": 217,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
No preview for this file type
......@@ -72,6 +72,9 @@
});
})();
</script>
<!-- <script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
<script>
vConsole = new window.VConsole();
</script> -->
</body>
</html>
{"ios":{"sceneName":"op-06-2","version":"45d42"},"android":{"sceneName":"op-06-2","version":"45d42"}}
\ No newline at end of file
{"paths":{"0":["textures/p-bar-bg",5],"1":["textures/icon",5],"2":["textures/p-bg",3,1],"3":["textures/bar-tag",5],"4":["audios/finish",1],"5":["textures/play",3,1],"6":["textures/p-bar-bg",3,1],"7":["textures/p-bar",5],"8":["textures/p-bar",3,1],"10":["textures/icon_music2",3,1],"11":["textures/bg",3,1],"12":["textures/pause",5],"13":["textures/house",5],"14":["textures/icon_music2",5],"15":["textures/icon_music",5],"16":["textures/btn_left",5],"17":["textures/grass",5],"18":["textures/grass",3,1],"19":["textures/qupeiyin",3,1],"20":["audios/begin",1],"21":["textures/pause",3,1],"22":["textures/qupeiyin",5],"23":["textures/play",5],"24":["textures/btn_right",5],"25":["textures/house",3,1],"26":["textures/p-bg",5],"27":["dragonBones/cat/mao_tex",5],"28":["dragonBones/cat/mao_ske",2],"29":["textures/bar-tag",3,1],"30":["textures/1orange",5],"31":["textures/icon_music",3,1],"32":["textures/bg",5],"33":["dragonBones/cat/mao_tex",3,1],"36":["dragonBones/cat/mao_tex",4],"37":["textures/1orange",3,1],"38":["Controls",0],"39":["textures/icon",3,1],"42":["fonts/BRLNSDB",6],"43":["textures/btn_left",3,1],"44":["textures/btn_right",3,1]},"types":["cc.Prefab","cc.AudioClip","dragonBones.DragonBonesAsset","cc.SpriteFrame","dragonBones.DragonBonesAtlasAsset","cc.Texture2D","cc.TTFFont"],"uuids":["036Slf9iVJQ7VS0neYMl5G","180HWSUalCHolyD2e2jSnh","1bjNYspjVDxpH949r7Kczs","1cRsgVpddACr0E5sRrtEB0","39fIAyaUBMwJaq0+rkRW7P","46iK95B8tMYZgCjT19VLkL","4aSMeKfsVNQI+LGOB0NGV7","4col50rMxI/418hPESufWN","50Y9rMRcVERpttPILzTLXJ","576nxhm4tJirAkyY7pEkvr","61dV2u2bdFkoqVKQm1Kz7q","6eLDseKPxCF4BSM7/2IOwr","776ywW9u1KxrBrmzXNn/zp","79Ca+jpPtOL4w+FZ1HL4mE","86kQwaDoFI/qSxixTfXQZ0","8fqyw0/pdHlbLGwdf3O8Su","9aeZaaBQZI1LyYPAXRCbAn","a5Y7REkbREfIHAEOri0hYy","a77fARHIxDWbfdORmCH0t3","a7/uyjtjNG1K0RnVV8afQ/","afywWudjJAj7glq8YZJxiZ","b1pjDbqO5HjJwhJd8YeKfy","b6uQD41BdJtoQiB6XxJ+Zf","d0vQ/pLHBJzr/aCI5qzD1S","d5gjWekk5O6ZlkH8S7QX5x","daZDLT05lOzavm6AtIr4h4","db7Oy7ApVJGaYkAW4l6Mlz","ecGvxtg9BC4aRqbHAz3XaF","edXi/kCEdHtaO9/gWmXCCh","edgoDTI+JLOaWFM8QCjsaz","efpfoJpN1L/Kt+F8GfhUCP","ef92mkbydLu5aNY72T9qxb","ffY2lkXQRPlYSd3sDFe5ii","24TYHsZKRKw4hn1DsU7oM3","29FYIk+N1GYaeWH/q1NxQO","2b42KXmrtP7oBJntXicdqK","41tT6lOKlDtL6u1yPiSON0","430eedbehNy7jO12ffeROq","50q9k46/JPIZdnJI8upLtE","6fvDCoPElEroukf1bzhbeK","71VhFCTINJM6/Ky3oX9nBT","b4P/PCArtIdIH38t6mlw8Y","c5UZcOsJVF858dJc3ouN6x","ceGUV96PNMOK4+1LmSCN21","e5otuqpndKMpDXobBX1/tZ","e8Ueib+qJEhL6mXAHdnwbi","e97GVMl6JHh5Ml5qEDdSGa","ecpdLyjvZBwrvm+cedCcQy","f0BIwQ8D5Ml7nTNQbh1YlS"],"scenes":{"db://assets/op-06-2/scene/op-06-2.fire":9},"redirect":[47,0],"deps":["internal"],"packs":{"052256c7c":[0,1,3,7,40,12,13,14,15,16,17,41,22,23,24,26,45,27,30,32],"0753bac60":[2,34,5,6,8,21,46,29,48],"0bc5ebc85":[35,4,9,10,11,18,19,20,25,28,31]},"name":"op-06-2","importBase":"import","nativeBase":"native","debug":false,"isZip":false,"encrypted":false}
\ No newline at end of file
{"type":"cc.Texture2D","data":"0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1"}
\ No newline at end of file
[1,["db7Oy7ApVJGaYkAW4l6Mlz","71VhFCTINJM6/Ky3oX9nBT","d0vQ/pLHBJzr/aCI5qzD1S","036Slf9iVJQ7VS0neYMl5G","4col50rMxI/418hPESufWN","776ywW9u1KxrBrmzXNn/zp","b4P/PCArtIdIH38t6mlw8Y","1cRsgVpddACr0E5sRrtEB0","e8Ueib+qJEhL6mXAHdnwbi"],["_textureSetter"],["cc.SpriteFrame"],0,[[[{"name":"p-bg","rect":[0,0,1565,175],"offset":[0,0],"originalSize":[1565,175],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]],[[{"name":"default_btn_disabled","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}],[0],0,[0],[0],[1]],[[{"name":"play","rect":[0,0,155,130],"offset":[0,0],"originalSize":[155,130],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[2]],[[{"name":"p-bar-bg","rect":[0,0,1207,28],"offset":[0,0],"originalSize":[1207,28],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[3]],[[{"name":"p-bar","rect":[0,0,1199,28],"offset":[0,0],"originalSize":[1199,28],"capInsets":[15,0,15,0]}],[0],0,[0],[0],[4]],[[{"name":"pause","rect":[0,0,155,130],"offset":[0,0],"originalSize":[155,130],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[5]],[[{"name":"default_btn_pressed","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}],[0],0,[0],[0],[6]],[[{"name":"bar-tag","rect":[0,0,72,72],"offset":[0,0],"originalSize":[72,72],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[7]],[[{"name":"default_btn_normal","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}],[0],0,[0],[0],[8]]]]
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
[1,["ecGvxtg9BC4aRqbHAz3XaF"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"mao_tex","rect":[1,1,495,745],"offset":[-7.5,138.5],"originalSize":[512,1024],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
[1,["ecGvxtg9BC4aRqbHAz3XaF"],["_texture"],[["dragonBones.DragonBonesAtlasAsset",["_name","_atlasJson"],1]],[[0,0,1,3]],[[0,"mao_tex","{\"name\":\"mao\",\"imagePath\":\"mao_tex.png\",\"SubTexture\":[{\"name\":\"猫01/影子\",\"x\":1,\"height\":66,\"y\":343,\"width\":337},{\"name\":\"猫01/尾巴\",\"x\":1,\"height\":109,\"y\":188,\"width\":175},{\"name\":\"猫01/右腿\",\"x\":178,\"height\":117,\"y\":188,\"width\":104},{\"name\":\"猫01/左腿\",\"x\":1,\"height\":115,\"y\":569,\"width\":64},{\"name\":\"猫01/右手\",\"x\":427,\"height\":122,\"y\":590,\"width\":69},{\"name\":\"猫01/左手\",\"x\":301,\"height\":74,\"y\":590,\"width\":124},{\"name\":\"猫01伸/左手伸直\",\"x\":299,\"height\":169,\"y\":1,\"width\":168},{\"name\":\"猫01伸/右手伸直\",\"x\":299,\"height\":169,\"y\":172,\"width\":168},{\"name\":\"猫01/身体\",\"x\":340,\"height\":180,\"y\":343,\"width\":122},{\"name\":\"猫01/领带\",\"x\":1,\"height\":156,\"y\":411,\"width\":120},{\"name\":\"猫01/右耳\",\"x\":155,\"height\":76,\"y\":602,\"width\":90},{\"name\":\"猫01/左耳\",\"x\":67,\"height\":85,\"y\":602,\"width\":86},{\"name\":\"猫01/组_1\",\"x\":1,\"height\":185,\"y\":1,\"width\":296},{\"name\":\"猫01/右眼\",\"x\":1,\"height\":60,\"y\":686,\"width\":59},{\"name\":\"猫01/右眉毛\",\"x\":67,\"height\":5,\"y\":595,\"width\":33},{\"name\":\"猫01/左眼\",\"x\":247,\"height\":60,\"y\":666,\"width\":59},{\"name\":\"猫01/左眉毛\",\"x\":247,\"height\":12,\"y\":602,\"width\":31},{\"name\":\"猫01/眼镜\",\"x\":301,\"height\":63,\"y\":525,\"width\":170},{\"name\":\"猫01/胡子\",\"x\":123,\"height\":85,\"y\":515,\"width\":176},{\"name\":\"猫01/鼻子\",\"x\":67,\"height\":24,\"y\":569,\"width\":28},{\"name\":\"猫01/嘴\",\"x\":1,\"height\":30,\"y\":299,\"width\":65},{\"name\":\"猫01/帽子\",\"x\":123,\"height\":102,\"y\":411,\"width\":158}],\"height\":1024,\"width\":512}"]],0,0,[0],[0],[0]]
\ No newline at end of file
[1,["efpfoJpN1L/Kt+F8GfhUCP"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"1orange","rect":[0,1,366,335],"offset":[0,-0.5],"originalSize":[366,336],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
[1,["ecpdLyjvZBwrvm+cedCcQy","e97GVMl6JHh5Ml5qEDdSGa","f0BIwQ8D5Ml7nTNQbh1YlS","29FYIk+N1GYaeWH/q1NxQO","46iK95B8tMYZgCjT19VLkL","edgoDTI+JLOaWFM8QCjsaz","4aSMeKfsVNQI+LGOB0NGV7","b1pjDbqO5HjJwhJd8YeKfy","1bjNYspjVDxpH949r7Kczs","50Y9rMRcVERpttPILzTLXJ"],["node","_spriteFrame","_parent","_N$pressedSprite","_N$hoverSprite","_N$disabledSprite","root","_N$barSprite","data"],[["cc.Node",["_name","_active","_objFlags","_prefab","_components","_contentSize","_trs","_children","_parent","_anchorPoint"],0,4,9,5,7,2,1,5],["cc.Sprite",["_sizeMode","_type","node","_materials","_spriteFrame"],1,1,3,6],["cc.PrefabInfo",["fileId","root"],2,1],["cc.Widget",["_alignFlags","_right","alignMode","_originalWidth","_originalHeight","node"],-2,1],["cc.Prefab",["_name"],2],["cc.Node",["_name","_objFlags","_parent","_children","_components","_prefab","_contentSize","_anchorPoint"],1,1,2,2,4,5,5],["cc.Label",["_string","_fontSize","_lineHeight","_isSystemFontUsed","_N$horizontalAlign","_N$verticalAlign","node","_materials"],-3,1,3],["cc.LabelOutline",["_width","node","_color"],2,1,5],["cc.ProgressBar",["_N$totalLength","_N$progress","node","_N$barSprite"],1,1,1],["cc.Button",["clickEvents","node","_N$normalColor","_N$pressedColor","_N$disabledColor","_N$target","_N$pressedSprite","_N$hoverSprite","_N$disabledSprite"],2,1,5,5,5,1,6,6,6]],[[2,0,1,2],[1,1,0,2,3,4,3],[0,0,2,4,3,5,6,3],[3,2,0,3,4,5,5],[9,0,1,2,3,4,5,6,7,8,2],[0,0,7,4,3,5,6,2],[0,0,8,4,3,5,6,2],[0,0,8,7,4,3,5,2],[6,0,1,2,3,4,5,6,7,7],[7,0,1,2,2],[4,0,2],[0,0,8,7,4,3,5,9,6,2],[0,0,1,8,7,3,6,3],[0,0,8,7,4,3,5,6,2],[5,0,1,2,3,4,5,6,7,3],[2,1,1],[1,0,2,3,4,2],[1,1,0,2,3,3],[1,2,3,4,1],[3,0,1,5,3],[8,0,1,2,3,3]],[[10,"Controls"],[5,"Controls",[-3,-4,-5],[[18,-2,[22],23]],[15,-1],[5,1565,175],[1107.893,249.666,0,0,0,0,1,1,1,1]],[11,"ProgressBar",1,[-9,-10],[[1,1,0,-6,[5],6],[20,1207,0.4,-8,-7]],[0,"a84Sh3zeBDYqZeKVVtBrTv",1],[5,1207,28],[0,0,0.5],[-463.651,17.22,0,0,0,0,1,1,1,1]],[5,"bar-tag",[-13],[[16,0,-11,[1],2],[19,32,-50.40000000000002,-12]],[0,"7986BlSOBNCKw93dZdGp0Z",1],[5,72,72],[497.20000000000005,0,0,0,0,0,1,1,1,1]],[2,"Background",512,[[1,1,0,-14,[7],8],[3,0,45,100,40,-15]],[0,"ba8+hMFYhH1IAVLB0EFPTK",1],[5,155,130],[0,0,0,0,0,0,1,1,1,0]],[2,"Background",512,[[1,1,0,-16,[12],13],[3,0,5,100,40,-17]],[0,"97hQ0wfkdC+J6LKroejoIE",1],[5,155,130],[0,0,0,0,0,0,1,1,1,0]],[2,"Background",512,[[1,1,0,-18,[17],18],[3,0,5,100,40,-19]],[0,"18xi9yB51GzJ0T9uSDSi2D",1],[5,155,130],[0,0,0,0,0,0,1,1,1,0]],[14,"bar",512,2,[3],[-20],[0,"13ND4KqcZLU4YXxpiECjkc",1],[5,482.8,28],[0,0,0.5]],[6,"New Label",3,[[8,"00:00",32,32,false,1,1,-21,[0]],[9,4,-22,[4,4278190080]]],[0,"b1T9HKzyxPo7/N2Oqy6NTo",1],[5,88.08,48.32],[12,-47,0,0,0,0,1,1,1,1]],[6,"TimeLabel",2,[[8,"00:00",32,32,false,1,1,-23,[4]],[9,4,-24,[4,4278190080]]],[0,"ddZXjkkmpCsaVLSOv1QpR2",1],[5,88.08,48.32],[1158.671,-47,0,0,0,0,1,1,1,1]],[12,"ButtonGroup",false,1,[-25,-26],[0,"03ie/nyj5Place5xY6TdhI",1],[-576.52,79.692,0,0,0,0,1,1,1,1]],[7,"Pause",10,[4],[[4,[null],-27,[4,4293322470],[4,4291348680],[4,3363338360],4,9,10,11]],[0,"78i2gM0EtKQLfnYvIUg1Wb",1],[5,155,130]],[7,"Play",10,[5],[[4,[null],-28,[4,4293322470],[4,4291348680],[4,3363338360],5,14,15,16]],[0,"15pjX4X8BCl7abMVcvqOjO",1],[5,155,130]],[13,"ToggleButton",1,[6],[[4,[null],-29,[4,4293322470],[4,4291348680],[4,3363338360],6,19,20,21]],[0,"9b8oASXaZATJzTMmUEOj/b",1],[5,155,130],[-576,80,0,0,0,0,1,1,1,1]],[17,1,0,7,[3]]],0,[0,6,1,0,0,1,0,-1,2,0,-2,10,0,-3,13,0,0,2,0,7,14,0,0,2,0,-1,7,0,-2,9,0,0,3,0,0,3,0,-1,8,0,0,4,0,0,4,0,0,5,0,0,5,0,0,6,0,0,6,0,-1,14,0,0,8,0,0,8,0,0,9,0,0,9,0,-1,11,0,-2,12,0,0,11,0,0,12,0,0,13,0,8,1,3,2,7,4,2,11,5,2,12,6,2,13,29],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14],[-1,-1,1,-1,-1,-1,1,-1,1,3,4,5,-1,1,3,4,5,-1,1,3,4,5,-1,1,1],[0,0,5,0,0,0,6,0,7,1,2,3,0,4,1,2,3,0,4,1,2,3,0,8,9]]
\ No newline at end of file
[1,["180HWSUalCHolyD2e2jSnh"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"icon","rect":[3,2,138,141],"offset":[0,-0.5],"originalSize":[144,144],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
[1,0,0,[["cc.TTFFont",["_name","_native"],1]],[[0,0,1,3]],[[0,"BRLNSDB","BRLNSDB.ttf"],-1],0,0,[],[],[]]
\ No newline at end of file
[1,["9aeZaaBQZI1LyYPAXRCbAn"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"btn_left","rect":[0,0,61,67],"offset":[0,0],"originalSize":[61,67],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
[1,["d5gjWekk5O6ZlkH8S7QX5x"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"btn_right","rect":[0,0,60,66],"offset":[-0.5,0.5],"originalSize":[61,67],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment