Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OP05
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
OP05
Commits
4973c0b8
Commit
4973c0b8
authored
Sep 22, 2021
by
Tt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
节点
parent
0427feb1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1515 additions
and
555 deletions
+1515
-555
app.module.ts
form/src/app/app.module.ts
+16
-14
form.component.css
form/src/app/form/form.component.css
+127
-18
form.component.html
form/src/app/form/form.component.html
+322
-27
form.component.ts
form/src/app/form/form.component.ts
+163
-52
scene.fire
play/assets/scene/scene/scene.fire
+887
-444
No files found.
form/src/app/app.module.ts
View file @
4973c0b8
import
{
BrowserModule
}
from
'
@angular/platform-browser
'
;
import
{
BrowserModule
}
from
'
@angular/platform-browser
'
;
import
{
NgModule
,
ErrorHandler
}
from
'
@angular/core
'
;
import
{
NgModule
,
ErrorHandler
}
from
'
@angular/core
'
;
import
{
MyErrorHandler
}
from
'
./MyError
'
;
import
{
MyErrorHandler
}
from
'
./MyError
'
;
import
{
AppComponent
}
from
'
./app.component
'
;
import
{
AppComponent
}
from
'
./app.component
'
;
import
{
NgZorroAntdModule
,
NZ_I18N
,
zh_CN
}
from
'
ng-zorro-antd
'
;
import
{
NgZorroAntdModule
,
NZ_I18N
,
zh_CN
}
from
'
ng-zorro-antd
'
;
...
@@ -10,17 +10,18 @@ import { HttpClientModule } from '@angular/common/http';
...
@@ -10,17 +10,18 @@ import { HttpClientModule } from '@angular/common/http';
import
{
BrowserAnimationsModule
}
from
'
@angular/platform-browser/animations
'
;
import
{
BrowserAnimationsModule
}
from
'
@angular/platform-browser/animations
'
;
import
{
registerLocaleData
}
from
'
@angular/common
'
;
import
{
registerLocaleData
}
from
'
@angular/common
'
;
import
zh
from
'
@angular/common/locales/zh
'
;
import
zh
from
'
@angular/common/locales/zh
'
;
import
{
FormComponent
}
from
'
./form/form.component
'
;
import
{
OverlayModule
}
from
'
@angular/cdk/overlay
'
;
import
{
PlayComponent
}
from
'
./play/play.component
'
;
import
{
FormComponent
}
from
'
./form/form.component
'
;
import
{
LessonTitleConfigComponent
}
from
'
./common/lesson-title-config/lesson-title-config.component
'
;
import
{
PlayComponent
}
from
'
./play/play.component
'
;
import
{
BackgroundImagePipe
}
from
'
./pipes/background-image.pipe
'
;
import
{
LessonTitleConfigComponent
}
from
'
./common/lesson-title-config/lesson-title-config.component
'
;
import
{
UploadImageWithPreviewComponent
}
from
'
./common/upload-image-with-preview/upload-image-with-preview.component
'
;
import
{
BackgroundImagePipe
}
from
'
./pipes/background-image.pipe
'
;
import
{
PlayerContentWrapperComponent
}
from
'
./common/player-content-wrapper/player-content-wrapper.component
'
;
import
{
UploadImageWithPreviewComponent
}
from
'
./common/upload-image-with-preview/upload-image-with-preview.component
'
;
import
{
CustomHotZoneComponent
}
from
'
./common/custom-hot-zone/custom-hot-zone.component
'
;
import
{
PlayerContentWrapperComponent
}
from
'
./common/player-content-wrapper/player-content-wrapper.component
'
;
import
{
UploadVideoComponent
}
from
'
./common/upload-video/upload-video.component
'
;
import
{
CustomHotZoneComponent
}
from
'
./common/custom-hot-zone/custom-hot-zone.component
'
;
import
{
TimePipe
}
from
'
./pipes/time.pipe
'
;
import
{
UploadVideoComponent
}
from
'
./common/upload-video/upload-video.component
'
;
import
{
ResourcePipe
}
from
'
./pipes/resource.pipe
'
;
import
{
TimePipe
}
from
'
./pipes/time.pipe
'
;
import
{
AudioRecorderComponent
}
from
'
./common/audio-recorder/audio-recorder.component
'
;
import
{
ResourcePipe
}
from
'
./pipes/resource.pipe
'
;
import
{
AudioRecorderComponent
}
from
'
./common/audio-recorder/audio-recorder.component
'
;
import
{
FontAwesomeModule
,
FaIconLibrary
}
from
'
@fortawesome/angular-fontawesome
'
;
import
{
FontAwesomeModule
,
FaIconLibrary
}
from
'
@fortawesome/angular-fontawesome
'
;
import
{
fas
}
from
'
@fortawesome/free-solid-svg-icons
'
;
import
{
fas
}
from
'
@fortawesome/free-solid-svg-icons
'
;
import
{
far
}
from
'
@fortawesome/free-regular-svg-icons
'
;
import
{
far
}
from
'
@fortawesome/free-regular-svg-icons
'
;
...
@@ -51,10 +52,11 @@ registerLocaleData(zh);
...
@@ -51,10 +52,11 @@ registerLocaleData(zh);
FormsModule
,
FormsModule
,
HttpClientModule
,
HttpClientModule
,
BrowserAnimationsModule
,
BrowserAnimationsModule
,
FontAwesomeModule
FontAwesomeModule
,
OverlayModule
],
],
providers
:
[
providers
:
[
{
provide
:
ErrorHandler
,
useClass
:
MyErrorHandler
},
{
provide
:
ErrorHandler
,
useClass
:
MyErrorHandler
},
{
provide
:
NZ_I18N
,
useValue
:
zh_CN
}
{
provide
:
NZ_I18N
,
useValue
:
zh_CN
}
],
],
bootstrap
:
[
AppComponent
]
bootstrap
:
[
AppComponent
]
...
...
form/src/app/form/form.component.css
View file @
4973c0b8
@import
'../style/common_mixin.css'
;
@import
'../style/common_mixin.css'
;
.model-content
{
.model-content
{
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
/* display: flex; */
/* justify-content: flex-start; */
/* align-items: flex-start; */
/* flex-wrap: wrap; */
}
.item-box
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
flex-direction
:
column
;
padding
:
10px
;
padding-bottom
:
2vw
;
padding-top
:
3vw
;
}
}
.radioPaire
{
.pic-sound-box
{
float
:
left
;
width
:
50%
;
margin
:
3px
;
display
:
flex
;
border-style
:
dashed
;
flex-direction
:
column
;
border-color
:
#000
;
}
border-width
:
1px
;
.add-btn-box
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
height
:
20vw
;
padding
:
10px
;
padding-top
:
5vw
;
}
}
.border
{
.border
{
width
:
450px
;
height
:
450px
;
border-radius
:
20px
;
border-radius
:
20px
;
border-style
:
dashed
;
border-style
:
dashed
;
padding
:
20px
;
text-align
:
center
;
margin
:
20px
;
float
:
left
;
/*width: 500px; */
margin-left
:
10px
;
/*//border-radius: 20px;*/
margin-bottom
:
10px
;
/*//border-width: 2px;*/
/*//border-color: #000000;*/
}
}
.group-title
{
width
:
100%
;
}
.border-lite
{
.group-item
{
border
:
2px
dashed
#ddd
;
width
:
100%
;
border-radius
:
0.5rem
;
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
flex-start
;
flex-wrap
:
wrap
;
padding
:
10px
;
padding
:
10px
;
margin
:
10px
;
}
}
.box-dbt-0
{
border
:
1px
solid
gray
;
width
:
100%
;
/* text-align: center; */
border-top-left-radius
:
25px
;
border-top-right-radius
:
25px
;
border-bottom
:
0px
;
}
.box-dbt-1
{
border
:
1px
solid
gray
;
width
:
100%
;
text-align
:
left
;
border-bottom-left-radius
:
25px
;
border-bottom-right-radius
:
25px
;
}
.box-dbt-2
{
margin-left
:
25%
;
width
:
50%
;
height
:
100px
;
text-align
:
center
;
}
.box-lbt-0
{
border
:
1px
solid
gray
;
width
:
100%
;
text-align
:
center
;
border-left
:
0px
;
border-right
:
0px
;
}
.box-lbt-1
{
border
:
1px
0px
0px
0px
solid
gray
;
width
:
100%
;
text-align
:
left
;
}
.box-lbt-2
{
border
:
1px
0px
0px
0px
solid
gray
;
margin-left
:
25%
;
width
:
50%
;
height
:
100px
;
text-align
:
center
;
}
.box-son-0
{
border
:
1px
solid
gray
;
width
:
100%
;
text-align
:
center
;
border-left
:
0px
;
border-right
:
0px
;
border-bottom
:
0px
;
}
.box-son-1
{
border
:
1px
0px
0px
0px
solid
gray
;
width
:
100%
;
text-align
:
left
;
}
.error-message
{
border
:
1px
solid
gray
;
margin-top
:
1%
;
width
:
100%
;
height
:
100px
;
background-color
:
#fff
;
border-radius
:
15px
;
text-align
:
center
;
box-shadow
:
0px
0px
5px
2px
#888888
;
overflow
:
hidden
;
}
/* .cdk-overlay-container {
width: 600px;
height: 300px;
position: absolute;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 10px;
margin-left: 100px;
margin-top: 100px;
text-align: center;
padding: 10px;
} */
\ No newline at end of file
form/src/app/form/form.component.html
View file @
4973c0b8
<div
class=
"model-content"
>
<!--
一组游戏
一个图片动画
一个文字动画
一个文字声音
一个图片背景
不限制组的数量
-->
<div
style=
"padding: 10px;"
>
<div
style=
"width: 300px;"
align=
'center'
>
<span>
图1:
</span>
<div>
<app-upload-image-with-preview
<div>
[
picUrl
]="
item
.
pic_url
"
<!-- http://localhost:4200/?type=form
(
imageUploaded
)="
onImageUploadSuccess
($
event
,
'
pic_url
')"
>
一组游戏
一个图片动画
一个文字动画
一个文字声音
一个图片背景
不限制组的数量 -->
</div>
<div
*
ngFor=
"let item of picArr; let i = index"
>
<div>
<div
class=
"border"
>
<div
style=
"width: 100%; align-items:center;"
>
<!-- <span style="font-weight: 500; font-size: 27px; color: red; ">选项</span> -->
<div
class=
"item-box"
style=
"width: 50%;height:200px; margin-left: 25%; margin-top: 10%;"
>
<div>
<app-upload-dragon-bone
style=
"width: 100%"
(
save
)="
onDragonBoneSave
($
event
,
item
)"
>
</app-upload-dragon-bone>
</div>
<span>
文字
</span>
<input
style=
"width: 80%; margin-bottom: 0.5vw"
type=
"text"
nz-input
placeholder=
""
[(
ngModel
)]="
item
.
title
"
(
blur
)="
saveItem
()"
>
<span>
图片
</span>
<app-upload-image-with-preview
style=
"width: 100%"
[
picUrl
]="
item
.
bgImg
"
(
imageUploaded
)="
onImageUploadSuccessByItem
($
event
,
item
)"
>
</app-upload-image-with-preview>
</app-upload-image-with-preview>
</div>
</div>
<div
class=
"item-box"
style=
"width: 50%; margin-left: 25%;"
>
<button
style=
"margin-bottom: 10px;"
nz-button
nzType=
"danger"
(
click
)="
deleteItem
(
i
)"
>
<span>
删除
</span>
</button>
</div>
</div>
<div
style=
"width: 300px; margin-top: 5px;"
align=
'center'
>
</div>
<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>
<div
style=
"width: 300px; margin-top: 15px;"
>
<!--
<span>
文本:
</span>
<div class="box-dbt-0">
<input
type=
"text"
nz-input
[(
ngModel
)]="
item
.
text
"
(
blur
)="
save
()"
>
<div style="width:100%;vertical-align:middle; padding-top: 10px; padding-bottom: 10px; text-align: left;">
<span style="font-weight: 700; font-size: 30px; vertical-align:middle;">标题:</span>
<input (blur)="saveItem()" [(ngModel)]="biaoti.title" type="text"
style="width: 750px;height:35px;margin-left: 30px; vertical-align:middle;font-size: 30px; border: 1px solid #ccc; border-radius: 10px;" />
<div style="display: flex; justify-items: center; padding-top: 10px">
<app-audio-recorder [audioUrl]="biaoti.audio_url"
(audioUploaded)="onAudioUploadSuccessByItem($event, biaoti)">
</app-audio-recorder>
</div>
</div>
</div>
</div>
<div
style=
"margin-top: 5px"
>
<div class="box-dbt-1">
<span>
音频:
</span>
<div *ngFor="let zhulei of biaoti.child; let b = index">
<app-audio-recorder
<div class="box-lbt-0">
[
audioUrl
]="
item
.
audio_url
"
<div style="width:100%;vertical-align:middle; padding-top: 10px; padding-bottom: 10px; text-align: left;">
(
audioUploaded
)="
onAudioUploadSuccess
($
event
,
'
audio_url
')"
<span style="font-weight: 700; font-size: 30px; vertical-align:middle;">主类:</span>
></app-audio-recorder>
<input (blur)="saveItem()" [(ngModel)]="zhulei.title" type="text"
style="width: 750px;height:35px;margin-left: 30px; vertical-align:middle;font-size: 30px; border: 1px solid #ccc; border-radius: 10px;" />
<div style="display: flex; justify-items: center; padding-top: 10px">
<app-audio-recorder [audioUrl]="zhulei.audio_url"
(audioUploaded)="onAudioUploadSuccessByItem($event, zhulei)">
</app-audio-recorder>
</div>
</div>
</div>
</div>
<div class="box-lbt-1">
<div *ngFor="let fenlei of zhulei.child; let c = index">
<div class="box-lbt-0">
<div style="width:100%;vertical-align:middle; padding-top: 10px; padding-bottom: 10px; text-align: left;">
<span style="font-weight: 700; font-size: 30px; vertical-align:middle;">分类{{c+1}}:</span>
<input (blur)="saveItem()" [(ngModel)]="fenlei.title" type="text"
style="width: 750px;height:35px;margin-left: 30px; vertical-align:middle;font-size: 30px; border: 1px solid #ccc; border-radius: 10px;" />
<div style="display: flex; justify-items: center; padding-top: 10px">
<app-audio-recorder [audioUrl]="fenlei.audio_url"
(audioUploaded)="onAudioUploadSuccessByItem($event, fenlei)">
</app-audio-recorder>
</div>
</div>
</div>
<div class="box-lbt-1">
<div *ngFor="let sonlei of fenlei.child; let d = index">
<div class="box-son-0">
<div>
<div
style="width:100%;vertical-align:middle; padding-top: 10px; padding-bottom: 10px; text-align: left;">
<span
style="font-weight: 700; font-size: 30px; vertical-align:middle;">分类{{c+1}}-子类{{d+1}}:</span>
<button style="margin-left: 30px;" nz-button nzType="danger" (click)="deleteSon(a, b, c,d)">
<span>删除</span>
</button>
<input (blur)="saveItem()" [(ngModel)]="sonlei.title" type="text"
style="width: 750px;height:35px;margin-left: 30px; vertical-align:middle;font-size: 30px; border: 1px solid #ccc; border-radius: 10px;" />
<div style="display: flex; justify-items: center; padding-top: 10px">
<app-audio-recorder [audioUrl]="sonlei.audio_url"
(audioUploaded)="onAudioUploadSuccessByItem($event, sonlei)">
</app-audio-recorder>
</div>
</div>
</div>
</div>
<div class="box-son-1">
<div class="group-item">
<div *ngFor="let it of sonlei.child; let e = index">
<div class="border">
<div style="width: 100%; align-items:center;">
<span style="font-weight: 500; font-size: 27px; color: red; ">选项{{e+1}}</span>
<div class="item-box" style="width: 50%;height:200px; margin-left: 25%; margin-top: 10%;">
<span>文字</span>
<input style="width: 80%; margin-bottom: 0.5vw" type="text" nz-input placeholder=""
[(ngModel)]="it.title" (blur)="saveItem()">
<span>图片</span>
<app-upload-image-with-preview style="width: 100%" [picUrl]="it.pic_url"
(imageUploaded)="onImageUploadSuccessByItem($event, it)">
</app-upload-image-with-preview>
</div>
<div class="item-box" style="width: 50%; margin-left: 25%;">
<button style="margin-bottom: 10px;" nz-button nzType="danger"
(click)="deleteItem(a,b,c,d,e)">
<span>删除</span>
</button>
</div>
</div>
</div>
</div>
<div class="border">
<h3 style="margin-top: 40%; width: 100%; line-height: 40px; text-align: center; color: red;">
每个子类卡片2~4个
</h3>
<button *ngIf="picArr[a].child[b].child[c].child[d].child.length >= 4" disabled nz-button
nzType="primary" (click)="addItem(a,b,c,d)">
<span>增加卡片</span>
</button>
<button *ngIf="picArr[a].child[b].child[c].child[d].child.length < 4" nz-button nzType="primary"
(click)="addItem(a,b,c,d)">
<span>增加卡片</span>
</button>
</div>
</div>
</div>
</div>
<div class="box-lbt-2">
<button
*ngIf="picArr[a].child[b].child[c].child.length >= 4 || picArr[a].child[b].child[0].child.length + picArr[a].child[b].child[1].child.length >=6"
style="width: 100%; height: 100%; border-radius: 25px; " disabled nz-button nzType="solid"
(click)="addSon(a, b, c)">
<i nz-icon nzType="plus-circle"></i>
<span style="font-size: 20px;">增加子类</span>
</button>
<button
*ngIf="picArr[a].child[b].child[c].child.length < 4 && picArr[a].child[b].child[0].child.length + picArr[a].child[b].child[1].child.length <6"
style="width: 100%; height: 100%; border-radius: 25px; " nz-button nzType="solid"
(click)="addSon(a, b, c)">
<i nz-icon nzType="plus-circle"></i>
<span style="font-size: 20px;">增加子类</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
<!-- <div class="box-testlet-0">
<div class="group-title">
<div style="width: 100%; height: 70px; text-align: center; padding-top: 10px;">
<span style="font-weight: 700; font-size: 30px; vertical-align:middle;">星-{{m+1}}</span>
<button *ngIf="picArr.length > 1" style="margin-left: 30px; height: 40px; vertical-align:middle;" nz-button nzType="danger"
(click)="deleteTestlet(m)">
<span style="font-size: 20px;">删除星</span>
</button>
<button *ngIf="picArr.length <= 1" style="margin-left: 30px; height: 40px; vertical-align:middle;" disabled nz-button nzType="danger"
(click)="deleteTestlet(m)">
<span style="font-size: 20px;">删除星</span>
</button>
</div>
</div>
</div>
<div class="box-testlet-1">
<div *ngFor="let page of testlet; let n = index">
<div class="box-group-0">
<div class="group-title">
<div style="width: 100%; height: 70px; text-align: center; padding-top: 10px;">
<span style="font-weight: 500; font-size: 27px; vertical-align:middle;">星-{{m+1}} 页-{{n+1}}</span>
<button *ngIf="picArr[m].length <= 1" style="margin-left: 30px; height: 40px; vertical-align:middle;"
disabled nz-button nzType="danger" (click)="deletePage(m,n)">
<span style="font-size: 20px;">删除页</span>
</button>
<button *ngIf="picArr[m].length > 1" style="margin-left: 30px; height: 40px; vertical-align:middle;"
nz-button nzType="danger" (click)="deletePage(m,n)">
<span style="font-size: 20px;">删除页</span>
</button>
</div>
</div>
</div>
<div class="box-group-1">
<div class="group-item">
<div *ngFor="let it of page; let i = index">
<div class="border">
<h3 style="width: 100%; line-height: 40px; text-align: center;">星-{{m+1}} 页-{{n+1}} 卡片-{{i+1}}</h3>
<hr />
<div style="display: flex; align-items:center; width: 100%;">
<div class="item-box" style="width: 45%;height:300px; margin-left: 5%;">
<nz-radio-group [(ngModel)]="it.left.radioValue">
<label nz-radio nzValue="A" (click)="radioClick(it, 'A')">文字
</label>
<label nz-radio nzValue="B" (click)="radioClick(it, 'B')">图片
</label>
<label nz-radio nzValue="C" (click)="radioClick(it, 'E')">音频
</label>
</nz-radio-group>
<input *ngIf="it.left.radioValue == 'A'" style="width: 80%; margin-bottom: 0.5vw" type="text"
nz-input placeholder="" [(ngModel)]="it.left.title" (blur)="saveItem()">
<app-upload-image-with-preview *ngIf="it.left.radioValue == 'B'" style="width: 100%"
[picUrl]="it.left.pic_url" (imageUploaded)="onImageUploadSuccessByItem($event, it.left)">
</app-upload-image-with-preview>
<div style="display: flex; justify-items: center; padding-top: 10px">
<app-audio-recorder [audioUrl]="it.left.audio_url"
(audioUploaded)="onAudioUploadSuccessByItem($event, it.left)">
</app-audio-recorder>
</div>
</div>
<div class="item-box" style="width: 45%;height:300px; margin-right: 5%">
<nz-radio-group [(ngModel)]="it.right.radioValue">
<label nz-radio nzValue="A" (click)="radioClick(it, 'C')">文字
</label>
<label nz-radio nzValue="B" (click)="radioClick(it, 'D')">图片
</label>
<label nz-radio nzValue="C" (click)="radioClick(it, 'F')">音频
</label>
</nz-radio-group>
<input *ngIf="it.right.radioValue == 'A'" style="width: 80%; margin-bottom: 0.5vw" type="text"
nz-input placeholder="" [(ngModel)]="it.right.title" (blur)="saveItem()">
<app-upload-image-with-preview *ngIf="it.right.radioValue == 'B'" style="width: 100%"
[picUrl]="it.right.pic_url" (imageUploaded)="onImageUploadSuccessByItem($event, it.right)">
</app-upload-image-with-preview>
<div style="display: flex; justify-items: center; padding-top: 10px">
<app-audio-recorder [audioUrl]="it.right.audio_url"
(audioUploaded)="onAudioUploadSuccessByItem($event, it.right)">
</app-audio-recorder>
</div>
</div>
</div>
<button style="margin-bottom: 10px;" nz-button nzType="danger" (click)="deleteItem(i,m,n)">
<span>删除</span>
</button>
</div>
</div>
<div class="border">
<h3 style="margin-top: 15%; width: 100%; line-height: 40px; text-align: center; color: red;">
每页卡片2~5个
</h3>
<h3 style="width: 100%; line-height: 40px; text-align: center; color: red;">
卡片2个是上传图片尺寸为280*298
</h3>
<h3 style="width: 100%; line-height: 40px; text-align: center; color: red;">
卡片3个是上传图片尺寸为250*268
</h3>
<h3 style="width: 100%; line-height: 40px; text-align: center; color: red;">
卡片4个是上传图片尺寸为250*268
</h3>
<h3 style="width: 100%; line-height: 40px; text-align: center; color: red;">
卡片5个是上传图片尺寸为200*214
</h3>
<button *ngIf="picArr[m][n].length < 5" style="margin-top: 10%;" nz-button nzType="primary"
(click)="addItem(m,n)">
<span>增加卡片</span>
</button>
<button *ngIf="picArr[m][n].length >= 5" style="margin-top: 10%;" nz-button nzType="primary" disabled
(click)="addItem(m,n)">
<span>增加卡片</span>
</button>
</div>
</div>
</div>
</div>
<div class="box-group-2" style="padding: 0.5vw;">
<button style="width: 100%; height: 100%; border-radius: 25px; " nz-button nzType="dashed" (click)="addPage(m)">
<i nz-icon nzType="plus-circle"></i>
<span style="font-size: 20px;">增加页</span>
</button>
</div>
</div>
</div>
<div class="box-testlet-2" style="padding: 0.5vw;">
<button style="width: 100%; height: 100%; border-radius: 25px; " nz-button nzType="dashed" (click)="addTestlet()">
<i nz-icon nzType="plus-circle"></i>
<span style="font-size: 20px;">增加星</span>
</button>
</div>
<div style="position: fixed;margin-left: 70%; width:25%; top: 1em;right: 1em;">
<div class="error-message">
<div *ngFor="let err of errs; let m = index" style="font-size: 17px; color: red;"> {{err}}</div>
</div>
</div> -->
\ No newline at end of file
form/src/app/form/form.component.ts
View file @
4973c0b8
import
{
Component
,
EventEmitter
,
Input
,
OnDestroy
,
OnChanges
,
OnInit
,
Output
,
ApplicationRef
,
ChangeDetectorRef
}
from
'
@angular/core
'
;
import
{
Component
,
EventEmitter
,
Input
,
OnDestroy
,
OnChanges
,
OnInit
,
Output
,
ApplicationRef
}
from
'
@angular/core
'
;
import
{
JsonPipe
}
from
'
@angular/common
'
;
@
Component
({
@
Component
({
selector
:
'
app-form
'
,
selector
:
'
app-form
'
,
...
@@ -9,106 +7,219 @@ import { JsonPipe } from '@angular/common';
...
@@ -9,106 +7,219 @@ import { JsonPipe } from '@angular/common';
})
})
export
class
FormComponent
implements
OnInit
,
OnChanges
,
OnDestroy
{
export
class
FormComponent
implements
OnInit
,
OnChanges
,
OnDestroy
{
// 储存数据用
picArr
=
[];
saveKey
=
"
test_001
"
;
_item
:
any
;
// 储存对象
KEY
=
'
hw_006
'
;
item
;
errs
=
[]
;
constructor
(
private
appRef
:
ApplicationRef
,
private
changeDetectorRef
:
ChangeDetectorRef
)
{
// @Input()
set
item
(
item
)
{
this
.
_item
=
item
;
// this.init();
}
}
get
item
()
{
createShell
()
{
return
this
.
_item
;
this
.
item
.
wordList
.
push
({
word
:
''
,
audio
:
''
,
backWord
:
''
,
backWordAudio
:
''
,
});
this
.
save
();
}
}
removeShell
(
idx
)
{
@
Output
()
this
.
item
.
wordList
.
splice
(
idx
,
1
);
update
=
new
EventEmitter
();
this
.
save
();
constructor
(
private
appRef
:
ApplicationRef
)
{
}
}
ngOnInit
()
{
ngOnInit
()
{
this
.
item
=
{};
this
.
item
=
{};
this
.
item
.
contentObj
=
{};
// 获取存储的数据
const
getData
=
(
<
any
>
window
).
courseware
.
getData
;
(
<
any
>
window
).
courseware
.
getData
((
data
)
=>
{
getData
((
data
)
=>
{
if
(
data
)
{
if
(
data
)
{
this
.
item
=
data
;
this
.
item
=
data
;
}
else
{
this
.
item
=
{};
}
}
if
(
!
this
.
item
.
contentObj
)
{
this
.
item
.
contentObj
=
{};
}
console
.
log
(
'
~data:
'
,
data
);
this
.
init
();
this
.
init
();
this
.
changeDetectorRef
.
markForCheck
();
this
.
changeDetectorRef
.
detectChanges
();
this
.
refresh
();
this
.
refresh
();
},
this
.
saveKey
);
},
this
.
KEY
);
}
// this.initData();
}
ngOnChanges
()
{
ngOnChanges
()
{
}
}
ngOnDestroy
()
{
ngOnDestroy
()
{
}
}
classItem
()
{
function
AniAssets
()
{
this
.
ske
=
""
;
this
.
tex
=
""
;
this
.
png
=
""
;
this
.
setData
=
function
(
obj
)
{
this
.
ske
=
obj
.
ske
;
this
.
tex
=
obj
.
tex
;
this
.
png
=
obj
.
png
;
}
}
function
Item
()
{
this
.
title
=
""
;
this
.
bgImg
=
""
;
this
.
wordAudio
=
""
;
this
.
imgAni
=
new
AniAssets
();
this
.
wordAni
=
new
AniAssets
();
}
return
new
Item
();
}
init
()
{
init
()
{
//在卡片组之上需要增加 两个组 0根->picArr 1题组->testlet 2页面->page 3卡片对->itemData
if
(
this
.
item
.
contentObj
.
picArr
)
{
this
.
picArr
=
this
.
item
.
contentObj
.
picArr
;
this
.
check
();
}
else
{
this
.
picArr
=
this
.
getDefaultPicArr
();
this
.
item
.
contentObj
.
picArr
=
this
.
picArr
;
}
console
.
log
(
'
item:
'
,
this
.
item
);
}
cardItemData
()
{
return
{
// cardId: "",
// title: "",
// pic_url: "",
// audio_url: "",
};
}
}
getDefaultPicArr
()
{
let
arr
=
[
this
.
classItem
(),
this
.
classItem
(),
this
.
classItem
(),
this
.
classItem
()]
return
arr
;
}
initData
()
{
/**
* 储存图片数据
* @param e
*/
onImageUploadSuccess
(
e
,
key
)
{
this
.
item
[
key
]
=
e
.
url
;
}
onDragonBoneSave
(
e
,
item
)
{
console
.
log
(
e
);
this
.
save
();
this
.
save
();
}
}
/**
onImageUploadSuccessByItem
(
e
,
item
)
{
* 储存音频数据
item
.
pic_url
=
e
.
url
;
* @param e
*/
onAudioUploadSuccess
(
e
,
key
)
{
this
.
item
[
key
]
=
e
.
url
;
this
.
save
();
this
.
save
();
}
}
on
WordAudioUploadSuccess
(
e
,
idx
)
{
on
AudioUploadSuccessByItem
(
e
,
item
)
{
this
.
item
.
wordList
[
idx
].
audio
=
e
.
url
;
item
.
audio_url
=
e
.
url
;
this
.
save
();
this
.
save
();
}
}
onBackWordAudioUploadSuccess
(
e
,
idx
)
{
//添加一对
this
.
item
.
wordList
[
idx
].
backWordAudio
=
e
.
url
;
addItem
()
{
//最多4个
let
item
=
this
.
cardItemData
();
this
.
picArr
.
push
(
item
)
this
.
saveItem
();
}
deleteItem
(
i
)
{
this
.
picArr
.
splice
(
i
,
1
);
this
.
save
();
this
.
save
();
}
}
/**
* 储存数据
*/
save
()
{
(
<
any
>
window
).
courseware
.
setData
(
this
.
item
,
null
,
this
.
saveKey
);
this
.
refresh
();
//选择圆圈
radioClick
(
it
,
radioValue
)
{
it
.
radioValue
=
radioValue
;
this
.
saveItem
();
}
saveItem
()
{
console
.
log
(
'
in saveItem
'
);
// this.update.emit(this.item);
this
.
save
();
}
check
()
{
if
(
!
this
.
picArr
)
return
;
this
.
errs
.
length
=
0
;
// let picArr = this.picArr;
// function tia(info) {
// let str = "";
// if (info.radioValue == "A") {
// if (!info.title) str += ",图片";
// } else if (info.radioValue == "B") {
// if (!info.pic_url) str += ",图片";
// } else if (info.radioValue == "C") {
// if (!info.audio_url) str += ",音频";
// } else {
// str += "卡片"
// }
// if (str) str += "未上传"
// return str;
// }
// for (let m = 0; m < picArr.length; m++) {
// for (let n = 0; n < picArr[m].length; n++) {
// if (picArr[m][n].length < 2) {
// this.errs.push(`星-${m + 1} 页-${n + 1} 卡片少于2个`);
// }
// for (let i = 0; i < picArr[m][n].length; i++) {
// let item = picArr[m][n][i];
// let left = item.left;
// let right = item.right;
// let code0 = tia(left);
// let code1 = tia(right);
// if (code0) this.errs.push(`星-${m + 1} 页-${n + 1} 第${i + 1}个卡片 左侧${code0}`);
// if (code1) this.errs.push(`星-${m + 1} 页-${n + 1} 第${i + 1}个卡片 右侧${code1}`);
// }
// }
// }
console
.
log
(
"
this.errs
"
);
console
.
log
(
this
.
errs
);
console
.
log
(
"
-------------------------
"
);
}
save
()
{
//触发一次检测
this
.
check
();
(
<
any
>
window
).
courseware
.
setData
(
this
.
item
,
null
,
this
.
KEY
);
console
.
log
(
'
this.item =
'
+
JSON
.
stringify
(
this
.
item
));
console
.
log
(
'
this.item =
'
+
JSON
.
stringify
(
this
.
item
));
this
.
refresh
();
}
}
/**
* 刷新 渲染页面
*/
refresh
()
{
refresh
()
{
setTimeout
(()
=>
{
setTimeout
(()
=>
{
this
.
appRef
.
tick
();
this
.
appRef
.
tick
();
},
1
);
},
1
);
}
}
}
}
play/assets/scene/scene/scene.fire
View file @
4973c0b8
...
@@ -104,89 +104,89 @@
...
@@ -104,89 +104,89 @@
{
{
"__id__": 25
"__id__": 25
},
},
{
"__id__": 28
},
{
{
"__id__": 30
"__id__": 30
},
},
{
{
"__id__": 3
6
"__id__": 3
5
},
},
{
{
"__id__": 4
2
"__id__": 4
4
},
},
{
{
"__id__":
49
"__id__":
50
},
},
{
{
"__id__": 5
6
"__id__": 5
7
},
},
{
{
"__id__":
83
"__id__":
64
},
},
{
{
"__id__":
104
"__id__":
91
},
},
{
{
"__id__": 1
06
"__id__": 1
12
},
},
{
{
"__id__": 1
07
"__id__": 1
14
},
},
{
{
"__id__": 115
"__id__": 115
},
},
{
{
"__id__": 1
16
"__id__": 1
23
},
},
{
{
"__id__": 1
36
"__id__": 1
24
},
},
{
{
"__id__": 1
38
"__id__": 1
44
},
},
{
{
"__id__": 14
2
"__id__": 14
6
},
},
{
{
"__id__": 1
45
"__id__": 1
50
},
},
{
{
"__id__": 1
46
"__id__": 1
53
},
},
{
{
"__id__": 1
47
"__id__": 1
54
},
},
{
{
"__id__": 1
49
"__id__": 1
55
},
},
{
{
"__id__": 15
5
"__id__": 15
7
},
},
{
{
"__id__": 16
8
"__id__": 16
3
},
},
{
{
"__id__": 1
94
"__id__": 1
76
},
},
{
{
"__id__":
196
"__id__":
202
},
},
{
{
"__id__": 198
"__id__": 204
},
{
"__id__": 206
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 20
0
"__id__": 20
8
},
},
{
{
"__id__": 20
1
"__id__": 20
9
},
},
{
{
"__id__": 2
02
"__id__": 2
10
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1011,7 +1011,7 @@
...
@@ -1011,7 +1011,7 @@
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "
btn_replay
",
"_name": "
ant_ske
",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 2
"__id__": 2
...
@@ -1034,8 +1034,8 @@
...
@@ -1034,8 +1034,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width":
244
,
"width":
1472
,
"height":
23
2
"height":
55
2
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1046,8 +1046,8 @@
...
@@ -1046,8 +1046,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
-552.397
,
0
,
-644.463
,
0
,
0,
0,
0,
0,
0,
0,
...
@@ -1069,10 +1069,10 @@
...
@@ -1069,10 +1069,10 @@
"_is3DNode": false,
"_is3DNode": false,
"_groupIndex": 0,
"_groupIndex": 0,
"groupIndex": 0,
"groupIndex": 0,
"_id": "4
95QX07mtM5bGdwHmcE7cR
"
"_id": "4
3VDTmgRlJK6LL5qumBSbi
"
},
},
{
{
"__type__": "
cc.Sprite
",
"__type__": "
dragonBones.ArmatureDisplay
",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
...
@@ -1084,28 +1084,36 @@
...
@@ -1084,28 +1084,36 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
}
],
],
"_srcBlendFactor": 770,
"_armatureName": "Armature",
"_dstBlendFactor": 771,
"_animationName": "newAnimation",
"_spriteFrame": {
"_preCacheMode": 0,
"__uuid__": "dd09a3f5-2df8-4334-89a7-36396823aae0"
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "430f14b7-59ac-4f6d-a79d-838296c9713c#b49c0c6a-b9af-4989-946a-24d24ea4759f",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "430f14b7-59ac-4f6d-a79d-838296c9713c"
},
},
"_type": 0,
"_N$dragonAtlasAsset": {
"_sizeMode": 1,
"__uuid__": "b49c0c6a-b9af-4989-946a-24d24ea4759f"
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
},
"_fillStart": 0,
"_N$_defaultArmatureIndex": 0,
"_fillRange": 0,
"_N$_animationIndex": 1,
"_isTrimmedMode": true,
"_N$_defaultCacheMode": 0,
"_atlas": null,
"_N$timeScale": 1,
"_id": "c6lCUW2lxPGpPFuo+y7PYz"
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "b7yG6c9U1PnIxxxcQxE0Xo"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "
btn_record
",
"_name": "
ax_ske
",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 2
"__id__": 2
...
@@ -1128,8 +1136,8 @@
...
@@ -1128,8 +1136,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width":
244
,
"width":
1188
,
"height":
232
"height":
705
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1140,8 +1148,8 @@
...
@@ -1140,8 +1148,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
535.658
,
0
,
-644.463
,
0
,
0,
0,
0,
0,
0,
0,
...
@@ -1163,10 +1171,10 @@
...
@@ -1163,10 +1171,10 @@
"_is3DNode": false,
"_is3DNode": false,
"_groupIndex": 0,
"_groupIndex": 0,
"groupIndex": 0,
"groupIndex": 0,
"_id": "
ccjgAxI1BG7rMV7gd/XEVE
"
"_id": "
2f60LPvOdMFoeCx6f5Ghor
"
},
},
{
{
"__type__": "
cc.Sprite
",
"__type__": "
dragonBones.ArmatureDisplay
",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
...
@@ -1178,28 +1186,36 @@
...
@@ -1178,28 +1186,36 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
}
],
],
"_srcBlendFactor": 770,
"_armatureName": "Armature",
"_dstBlendFactor": 771,
"_animationName": "newAnimation",
"_spriteFrame": {
"_preCacheMode": 0,
"__uuid__": "ce2dae10-9b79-4de9-8163-75702e087b62"
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "3dea3437-c958-4db1-8892-577532882929#43b1cdd8-e759-482d-9435-3ca8696e8d11",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "3dea3437-c958-4db1-8892-577532882929"
},
},
"_type": 0,
"_N$dragonAtlasAsset": {
"_sizeMode": 1,
"__uuid__": "43b1cdd8-e759-482d-9435-3ca8696e8d11"
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
},
"_fillStart": 0,
"_N$_defaultArmatureIndex": 0,
"_fillRange": 0,
"_N$_animationIndex": 1,
"_isTrimmedMode": true,
"_N$_defaultCacheMode": 0,
"_atlas": null,
"_N$timeScale": 1,
"_id": "21hANBFtRFVLFqU9SFAO87"
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "74CIOP4ClGQalXYMxpuJxF"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "
icon_recording
",
"_name": "
btn_replay
",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 2
"__id__": 2
...
@@ -1222,8 +1238,8 @@
...
@@ -1222,8 +1238,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width":
187
,
"width":
244
,
"height":
61
"height":
232
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1234,8 +1250,8 @@
...
@@ -1234,8 +1250,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
534.076
,
-552.397
,
-6
21.088
,
-6
44.463
,
0,
0,
0,
0,
0,
0,
...
@@ -1257,7 +1273,7 @@
...
@@ -1257,7 +1273,7 @@
"_is3DNode": false,
"_is3DNode": false,
"_groupIndex": 0,
"_groupIndex": 0,
"groupIndex": 0,
"groupIndex": 0,
"_id": "
83WLP36bhM7JJE3rZH6Vmz
"
"_id": "
495QX07mtM5bGdwHmcE7cR
"
},
},
{
{
"__type__": "cc.Sprite",
"__type__": "cc.Sprite",
...
@@ -1275,7 +1291,7 @@
...
@@ -1275,7 +1291,7 @@
"_srcBlendFactor": 770,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_dstBlendFactor": 771,
"_spriteFrame": {
"_spriteFrame": {
"__uuid__": "d
ff89d8e-e14f-4e19-ab8f-c7dd09bd4c68
"
"__uuid__": "d
d09a3f5-2df8-4334-89a7-36396823aae0
"
},
},
"_type": 0,
"_type": 0,
"_sizeMode": 1,
"_sizeMode": 1,
...
@@ -1289,21 +1305,87 @@
...
@@ -1289,21 +1305,87 @@
"_fillRange": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_isTrimmedMode": true,
"_atlas": null,
"_atlas": null,
"_id": "
6fqrgACQxG8Jm/6JE0zCd
z"
"_id": "
c6lCUW2lxPGpPFuo+y7PY
z"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "
ico
n_record",
"_name": "
bt
n_record",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 2
"__id__": 2
},
},
"_children": [],
"_children": [
{
"__id__": 26
}
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 26
"__id__": 28
},
{
"__id__": 29
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 244,
"height": 232
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
535.658,
-644.463,
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": "ccjgAxI1BG7rMV7gd/XEVE"
},
{
"__type__": "cc.Node",
"_name": "icon_record",
"_objFlags": 0,
"_parent": {
"__id__": 25
},
"_children": [],
"_active": true,
"_components": [
{
{
"__id__": 27
"__id__": 27
}
}
...
@@ -1331,8 +1413,8 @@
...
@@ -1331,8 +1413,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
535.658
,
0
,
-626.875
,
17.588
,
0,
0,
0,
0,
0,
0,
...
@@ -1361,7 +1443,7 @@
...
@@ -1361,7 +1443,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 2
5
"__id__": 2
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1389,30 +1471,62 @@
...
@@ -1389,30 +1471,62 @@
"_id": "77Ktr/JFFJdZEjm+jqed6F"
"_id": "77Ktr/JFFJdZEjm+jqed6F"
},
},
{
{
"__type__": "cc.
Button
",
"__type__": "cc.
Sprite
",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 25
"__id__": 25
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_materials": [
"_grayMaterial": null,
{
"duration": 0.1,
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
"zoomScale": 1.2,
}
"clickEvents": [],
],
"_N$interactable": true,
"_srcBlendFactor": 770,
"_N$enableAutoGrayEffect": false,
"_dstBlendFactor": 771,
"_N$transition": 0,
"_spriteFrame": {
"transition": 0,
"__uuid__": "ce2dae10-9b79-4de9-8163-75702e087b62"
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
},
"_N$pressedColor": {
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "21hANBFtRFVLFqU9SFAO87"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 25
},
"_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",
"__type__": "cc.Color",
"r": 211,
"r": 211,
"g": 211,
"g": 211,
...
@@ -1456,35 +1570,104 @@
...
@@ -1456,35 +1570,104 @@
"_N$target": {
"_N$target": {
"__id__": 25
"__id__": 25
},
},
"_id": "
17mUjZtrlBQYJ7dRFNL2V/
"
"_id": "
b09HfTfohGxpd5Ff9vXa7G
"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "b
g_btm
",
"_name": "b
tn_recording
",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 2
"__id__": 2
},
},
"_children": [
{
"__id__": 31
}
],
"_active": true,
"_components": [
{
"__id__": 33
},
{
"__id__": 34
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 244,
"height": 232
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
535.658,
-644.463,
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": "1biy/YkRFBIrvtBb6z4JQR"
},
{
"__type__": "cc.Node",
"_name": "icon_recording",
"_objFlags": 0,
"_parent": {
"__id__": 30
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
29
"__id__":
32
}
}
],
],
"_prefab": null,
"_prefab": null,
"_opacity":
120
,
"_opacity":
255
,
"_color": {
"_color": {
"__type__": "cc.Color",
"__type__": "cc.Color",
"r":
4
,
"r":
255
,
"g":
0
,
"g":
255
,
"b":
0
,
"b":
255
,
"a": 255
"a": 255
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width": 1
00
,
"width": 1
87
,
"height":
100
"height":
61
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1495,8 +1678,8 @@
...
@@ -1495,8 +1678,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
-
8.983
,
-
1.582
,
32.779
,
23.375
,
0,
0,
0,
0,
0,
0,
...
@@ -1518,14 +1701,14 @@
...
@@ -1518,14 +1701,14 @@
"_is3DNode": false,
"_is3DNode": false,
"_groupIndex": 0,
"_groupIndex": 0,
"groupIndex": 0,
"groupIndex": 0,
"_id": "
ebSymemClARaK95V+wwkmN
"
"_id": "
83WLP36bhM7JJE3rZH6Vmz
"
},
},
{
{
"__type__": "cc.Sprite",
"__type__": "cc.Sprite",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
28
"__id__":
31
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1536,10 +1719,10 @@
...
@@ -1536,10 +1719,10 @@
"_srcBlendFactor": 770,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_dstBlendFactor": 771,
"_spriteFrame": {
"_spriteFrame": {
"__uuid__": "
a23235d1-15db-4b95-8439-a2e005bfff91
"
"__uuid__": "
dff89d8e-e14f-4e19-ab8f-c7dd09bd4c68
"
},
},
"_type": 0,
"_type": 0,
"_sizeMode":
0
,
"_sizeMode":
1
,
"_fillType": 0,
"_fillType": 0,
"_fillCenter": {
"_fillCenter": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1550,29 +1733,133 @@
...
@@ -1550,29 +1733,133 @@
"_fillRange": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_isTrimmedMode": true,
"_atlas": null,
"_atlas": null,
"_id": "6a0nM66JFJn4MkmqFhBuAn"
"_id": "6fqrgACQxG8Jm/6JE0zCdz"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 30
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "ce2dae10-9b79-4de9-8163-75702e087b62"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "56vZki/29P76v3Vp6qtBit"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 30
},
"_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": {
"__id__": 30
},
"_id": "feA2HsnyFASLUXjdq0vRse"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "
bg_light
",
"_name": "
end
",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 2
"__id__": 2
},
},
"_children": [
"_children": [
{
{
"__id__": 3
1
"__id__": 3
6
},
},
{
{
"__id__": 33
"__id__": 38
}
},
],
"_active": true,
"_components": [
{
{
"__id__": 35
"__id__": 40
},
{
"__id__": 42
}
}
],
],
"_active": false,
"_components": [],
"_prefab": null,
"_prefab": null,
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -1584,8 +1871,8 @@
...
@@ -1584,8 +1871,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width":
1246
,
"width":
0
,
"height":
1234
"height":
0
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1596,8 +1883,8 @@
...
@@ -1596,8 +1883,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
-8.983
,
0
,
32.779
,
0
,
0,
0,
0,
0,
0,
0,
...
@@ -1619,20 +1906,114 @@
...
@@ -1619,20 +1906,114 @@
"_is3DNode": false,
"_is3DNode": false,
"_groupIndex": 0,
"_groupIndex": 0,
"groupIndex": 0,
"groupIndex": 0,
"_id": "
694gyX3xhJgr9GoA+xQfJP
"
"_id": "
07p8eJb8pC8pYEA8Xua6YQ
"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "bg_
good-job
",
"_name": "bg_
btm
",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
0
"__id__": 3
5
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 32
"__id__": 37
}
],
"_prefab": null,
"_opacity": 120,
"_color": {
"__type__": "cc.Color",
"r": 4,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 2176,
"height": 1600
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-1.361,
0.888,
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": "ebSymemClARaK95V+wwkmN"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 36
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6a0nM66JFJn4MkmqFhBuAn"
},
{
"__type__": "cc.Node",
"_name": "bg_light",
"_objFlags": 0,
"_parent": {
"__id__": 35
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 39
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1646,8 +2027,8 @@
...
@@ -1646,8 +2027,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width": 1
068
,
"width": 1
246
,
"height":
416
"height":
1234
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1658,8 +2039,8 @@
...
@@ -1658,8 +2039,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
0
,
-8.983
,
0
,
32.779
,
0,
0,
0,
0,
0,
0,
...
@@ -1681,14 +2062,14 @@
...
@@ -1681,14 +2062,14 @@
"_is3DNode": false,
"_is3DNode": false,
"_groupIndex": 0,
"_groupIndex": 0,
"groupIndex": 0,
"groupIndex": 0,
"_id": "
10QxNKt41KsKTF477vjYTv
"
"_id": "
694gyX3xhJgr9GoA+xQfJP
"
},
},
{
{
"__type__": "cc.Sprite",
"__type__": "cc.Sprite",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
1
"__id__": 3
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1699,7 +2080,7 @@
...
@@ -1699,7 +2080,7 @@
"_srcBlendFactor": 770,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_dstBlendFactor": 771,
"_spriteFrame": {
"_spriteFrame": {
"__uuid__": "
0dfa1159-bf38-41f9-9fbd-3ce1de927a82
"
"__uuid__": "
61f2fdd4-a347-4bfa-820f-9440bf5e8519
"
},
},
"_type": 0,
"_type": 0,
"_sizeMode": 1,
"_sizeMode": 1,
...
@@ -1713,20 +2094,20 @@
...
@@ -1713,20 +2094,20 @@
"_fillRange": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_isTrimmedMode": true,
"_atlas": null,
"_atlas": null,
"_id": "
4ctQbxwJlIRYnqCNcxT5Ua
"
"_id": "
c42Hrx6dRDJItFAOtxoAkG
"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "bg_tryagain",
"_name": "bg_tryagain",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
0
"__id__": 3
5
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
34
"__id__":
41
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1752,8 +2133,8 @@
...
@@ -1752,8 +2133,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
-1
.0169999999999995
,
-1
0
,
1.2209999999999965
,
34
,
0,
0,
0,
0,
0,
0,
...
@@ -1782,7 +2163,7 @@
...
@@ -1782,7 +2163,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
33
"__id__":
40
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1809,12 +2190,74 @@
...
@@ -1809,12 +2190,74 @@
"_atlas": null,
"_atlas": null,
"_id": "42vj6URj5G8KnAupjQZEyn"
"_id": "42vj6URj5G8KnAupjQZEyn"
},
},
{
"__type__": "cc.Node",
"_name": "bg_good-job",
"_objFlags": 0,
"_parent": {
"__id__": 35
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 43
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1068,
"height": 416
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-8.983,
32.779,
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": "10QxNKt41KsKTF477vjYTv"
},
{
{
"__type__": "cc.Sprite",
"__type__": "cc.Sprite",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
30
"__id__":
42
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1825,7 +2268,7 @@
...
@@ -1825,7 +2268,7 @@
"_srcBlendFactor": 770,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_dstBlendFactor": 771,
"_spriteFrame": {
"_spriteFrame": {
"__uuid__": "
61f2fdd4-a347-4bfa-820f-9440bf5e8519
"
"__uuid__": "
0dfa1159-bf38-41f9-9fbd-3ce1de927a82
"
},
},
"_type": 0,
"_type": 0,
"_sizeMode": 1,
"_sizeMode": 1,
...
@@ -1839,7 +2282,7 @@
...
@@ -1839,7 +2282,7 @@
"_fillRange": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_isTrimmedMode": true,
"_atlas": null,
"_atlas": null,
"_id": "
c42Hrx6dRDJItFAOtxoAkG
"
"_id": "
4ctQbxwJlIRYnqCNcxT5Ua
"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
...
@@ -1850,19 +2293,19 @@
...
@@ -1850,19 +2293,19 @@
},
},
"_children": [
"_children": [
{
{
"__id__":
37
"__id__":
45
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
39
"__id__":
47
},
},
{
{
"__id__": 4
0
"__id__": 4
8
},
},
{
{
"__id__": 4
1
"__id__": 4
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1918,13 +2361,13 @@
...
@@ -1918,13 +2361,13 @@
"_name": "bar",
"_name": "bar",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
36
"__id__":
44
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
38
"__id__":
46
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1980,7 +2423,7 @@
...
@@ -1980,7 +2423,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
37
"__id__":
45
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2012,7 +2455,7 @@
...
@@ -2012,7 +2455,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
36
"__id__":
44
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2044,12 +2487,12 @@
...
@@ -2044,12 +2487,12 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
36
"__id__":
44
},
},
"_enabled": true,
"_enabled": true,
"_N$totalLength": 1383.3,
"_N$totalLength": 1383.3,
"_N$barSprite": {
"_N$barSprite": {
"__id__":
38
"__id__":
46
},
},
"_N$mode": 0,
"_N$mode": 0,
"_N$progress": 0,
"_N$progress": 0,
...
@@ -2061,7 +2504,7 @@
...
@@ -2061,7 +2504,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
36
"__id__":
44
},
},
"_enabled": true,
"_enabled": true,
"_id": "32zyfUT/9EG4jgWsKPFVzS"
"_id": "32zyfUT/9EG4jgWsKPFVzS"
...
@@ -2075,10 +2518,10 @@
...
@@ -2075,10 +2518,10 @@
},
},
"_children": [
"_children": [
{
{
"__id__":
43
"__id__":
51
},
},
{
{
"__id__":
46
"__id__":
54
}
}
],
],
"_active": false,
"_active": false,
...
@@ -2136,16 +2579,16 @@
...
@@ -2136,16 +2579,16 @@
"_name": "invalid-name",
"_name": "invalid-name",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
42
"__id__":
50
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
44
"__id__":
52
},
},
{
{
"__id__":
45
"__id__":
53
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2201,7 +2644,7 @@
...
@@ -2201,7 +2644,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
43
"__id__":
51
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2233,7 +2676,7 @@
...
@@ -2233,7 +2676,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
43
"__id__":
51
},
},
"_enabled": true,
"_enabled": true,
"r_width": 1,
"r_width": 1,
...
@@ -2254,16 +2697,16 @@
...
@@ -2254,16 +2697,16 @@
"_name": "invalid-name_2",
"_name": "invalid-name_2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
42
"__id__":
50
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
47
"__id__":
55
},
},
{
{
"__id__":
48
"__id__":
56
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2319,7 +2762,7 @@
...
@@ -2319,7 +2762,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
46
"__id__":
54
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2351,7 +2794,7 @@
...
@@ -2351,7 +2794,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
46
"__id__":
54
},
},
"_enabled": true,
"_enabled": true,
"r_width": 1,
"r_width": 1,
...
@@ -2376,16 +2819,16 @@
...
@@ -2376,16 +2819,16 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 5
0
"__id__": 5
8
},
},
{
{
"__id__":
52
"__id__":
60
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
55
"__id__":
63
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2441,13 +2884,13 @@
...
@@ -2441,13 +2884,13 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
49
"__id__":
57
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 5
1
"__id__": 5
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2503,7 +2946,7 @@
...
@@ -2503,7 +2946,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
0
"__id__": 5
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2535,16 +2978,16 @@
...
@@ -2535,16 +2978,16 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
49
"__id__":
57
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
53
"__id__":
61
},
},
{
{
"__id__":
54
"__id__":
62
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2600,7 +3043,7 @@
...
@@ -2600,7 +3043,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
52
"__id__":
60
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2635,7 +3078,7 @@
...
@@ -2635,7 +3078,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
52
"__id__":
60
},
},
"_enabled": true,
"_enabled": true,
"_color": {
"_color": {
...
@@ -2653,7 +3096,7 @@
...
@@ -2653,7 +3096,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
49
"__id__":
57
},
},
"_enabled": true,
"_enabled": true,
"r_width": 0,
"r_width": 0,
...
@@ -2678,22 +3121,22 @@
...
@@ -2678,22 +3121,22 @@
},
},
"_children": [
"_children": [
{
{
"__id__":
57
"__id__":
65
},
},
{
{
"__id__": 6
0
"__id__": 6
8
},
},
{
{
"__id__":
63
"__id__":
71
},
},
{
{
"__id__": 7
0
"__id__": 7
8
},
},
{
{
"__id__":
77
"__id__":
85
},
},
{
{
"__id__": 8
0
"__id__": 8
8
}
}
],
],
"_active": false,
"_active": false,
...
@@ -2751,11 +3194,11 @@
...
@@ -2751,11 +3194,11 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
56
"__id__":
64
},
},
"_children": [
"_children": [
{
{
"__id__":
58
"__id__":
66
}
}
],
],
"_active": true,
"_active": true,
...
@@ -2813,13 +3256,13 @@
...
@@ -2813,13 +3256,13 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
57
"__id__":
65
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
59
"__id__":
67
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2875,7 +3318,7 @@
...
@@ -2875,7 +3318,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
58
"__id__":
66
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2907,11 +3350,11 @@
...
@@ -2907,11 +3350,11 @@
"_name": "line1",
"_name": "line1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
56
"__id__":
64
},
},
"_children": [
"_children": [
{
{
"__id__": 6
1
"__id__": 6
9
}
}
],
],
"_active": true,
"_active": true,
...
@@ -2969,13 +3412,13 @@
...
@@ -2969,13 +3412,13 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
0
"__id__": 6
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
62
"__id__":
70
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3031,7 +3474,7 @@
...
@@ -3031,7 +3474,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
1
"__id__": 6
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3063,14 +3506,14 @@
...
@@ -3063,14 +3506,14 @@
"_name": "line2",
"_name": "line2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
56
"__id__":
64
},
},
"_children": [
"_children": [
{
{
"__id__":
64
"__id__":
72
},
},
{
{
"__id__":
66
"__id__":
74
}
}
],
],
"_active": true,
"_active": true,
...
@@ -3128,13 +3571,13 @@
...
@@ -3128,13 +3571,13 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
63
"__id__":
71
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
65
"__id__":
73
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3190,7 +3633,7 @@
...
@@ -3190,7 +3633,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
64
"__id__":
72
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3222,17 +3665,17 @@
...
@@ -3222,17 +3665,17 @@
"_name": "line1",
"_name": "line1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
63
"__id__":
71
},
},
"_children": [
"_children": [
{
{
"__id__":
67
"__id__":
75
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
69
"__id__":
77
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3288,13 +3731,13 @@
...
@@ -3288,13 +3731,13 @@
"_name": "combined-shape-copy-2",
"_name": "combined-shape-copy-2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
66
"__id__":
74
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
68
"__id__":
76
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3350,7 +3793,7 @@
...
@@ -3350,7 +3793,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
67
"__id__":
75
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3382,7 +3825,7 @@
...
@@ -3382,7 +3825,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
66
"__id__":
74
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3414,14 +3857,14 @@
...
@@ -3414,14 +3857,14 @@
"_name": "line3",
"_name": "line3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
56
"__id__":
64
},
},
"_children": [
"_children": [
{
{
"__id__": 7
1
"__id__": 7
9
},
},
{
{
"__id__":
73
"__id__":
81
}
}
],
],
"_active": true,
"_active": true,
...
@@ -3479,13 +3922,13 @@
...
@@ -3479,13 +3922,13 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
0
"__id__": 7
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
72
"__id__":
80
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3541,7 +3984,7 @@
...
@@ -3541,7 +3984,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
1
"__id__": 7
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3573,17 +4016,17 @@
...
@@ -3573,17 +4016,17 @@
"_name": "line1",
"_name": "line1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
0
"__id__": 7
8
},
},
"_children": [
"_children": [
{
{
"__id__":
74
"__id__":
82
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
76
"__id__":
84
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3639,13 +4082,13 @@
...
@@ -3639,13 +4082,13 @@
"_name": "combined-shape-copy-2",
"_name": "combined-shape-copy-2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
73
"__id__":
81
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
75
"__id__":
83
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3701,7 +4144,7 @@
...
@@ -3701,7 +4144,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
74
"__id__":
82
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3733,7 +4176,7 @@
...
@@ -3733,7 +4176,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
73
"__id__":
81
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3765,11 +4208,11 @@
...
@@ -3765,11 +4208,11 @@
"_name": "line4",
"_name": "line4",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
56
"__id__":
64
},
},
"_children": [
"_children": [
{
{
"__id__":
78
"__id__":
86
}
}
],
],
"_active": true,
"_active": true,
...
@@ -3827,13 +4270,13 @@
...
@@ -3827,13 +4270,13 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
77
"__id__":
85
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
79
"__id__":
87
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3889,7 +4332,7 @@
...
@@ -3889,7 +4332,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
78
"__id__":
86
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3921,11 +4364,11 @@
...
@@ -3921,11 +4364,11 @@
"_name": "line5",
"_name": "line5",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
56
"__id__":
64
},
},
"_children": [
"_children": [
{
{
"__id__": 8
1
"__id__": 8
9
}
}
],
],
"_active": true,
"_active": true,
...
@@ -3983,13 +4426,13 @@
...
@@ -3983,13 +4426,13 @@
"_name": "line0",
"_name": "line0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 8
0
"__id__": 8
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
82
"__id__":
90
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4045,7 +4488,7 @@
...
@@ -4045,7 +4488,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
1
"__id__": 8
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4081,13 +4524,13 @@
...
@@ -4081,13 +4524,13 @@
},
},
"_children": [
"_children": [
{
{
"__id__":
84
"__id__":
92
},
},
{
{
"__id__": 9
1
"__id__": 9
9
},
},
{
{
"__id__":
98
"__id__":
106
}
}
],
],
"_active": false,
"_active": false,
...
@@ -4145,23 +4588,23 @@
...
@@ -4145,23 +4588,23 @@
"_name": "sub_0",
"_name": "sub_0",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
83
"__id__":
91
},
},
"_children": [
"_children": [
{
{
"__id__":
85
"__id__":
93
},
},
{
{
"__id__":
87
"__id__":
95
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
89
"__id__":
97
},
},
{
{
"__id__": 9
0
"__id__": 9
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4217,13 +4660,13 @@
...
@@ -4217,13 +4660,13 @@
"_name": "combined-shape_4",
"_name": "combined-shape_4",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
84
"__id__":
92
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
86
"__id__":
94
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4279,7 +4722,7 @@
...
@@ -4279,7 +4722,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
85
"__id__":
93
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4311,13 +4754,13 @@
...
@@ -4311,13 +4754,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
84
"__id__":
92
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
88
"__id__":
96
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4373,7 +4816,7 @@
...
@@ -4373,7 +4816,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
87
"__id__":
95
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4408,7 +4851,7 @@
...
@@ -4408,7 +4851,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
84
"__id__":
92
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4440,7 +4883,7 @@
...
@@ -4440,7 +4883,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
84
"__id__":
92
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -4501,7 +4944,7 @@
...
@@ -4501,7 +4944,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__":
84
"__id__":
92
},
},
"_id": "e9hETjbwFN6ofBSoo7woie"
"_id": "e9hETjbwFN6ofBSoo7woie"
},
},
...
@@ -4510,23 +4953,23 @@
...
@@ -4510,23 +4953,23 @@
"_name": "sub_1",
"_name": "sub_1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
83
"__id__":
91
},
},
"_children": [
"_children": [
{
{
"__id__":
92
"__id__":
100
},
},
{
{
"__id__":
94
"__id__":
102
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
96
"__id__":
104
},
},
{
{
"__id__":
97
"__id__":
105
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4582,13 +5025,13 @@
...
@@ -4582,13 +5025,13 @@
"_name": "combined-shape_3",
"_name": "combined-shape_3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
1
"__id__": 9
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
93
"__id__":
101
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4644,7 +5087,7 @@
...
@@ -4644,7 +5087,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
92
"__id__":
100
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4676,13 +5119,13 @@
...
@@ -4676,13 +5119,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
1
"__id__": 9
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
95
"__id__":
103
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4738,7 +5181,7 @@
...
@@ -4738,7 +5181,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
94
"__id__":
102
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4773,7 +5216,7 @@
...
@@ -4773,7 +5216,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
1
"__id__": 9
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4805,7 +5248,7 @@
...
@@ -4805,7 +5248,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
1
"__id__": 9
9
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -4866,7 +5309,7 @@
...
@@ -4866,7 +5309,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 9
1
"__id__": 9
9
},
},
"_id": "8cGgjvgvhL/LuPKRoVnVQq"
"_id": "8cGgjvgvhL/LuPKRoVnVQq"
},
},
...
@@ -4875,20 +5318,20 @@
...
@@ -4875,20 +5318,20 @@
"_name": "main",
"_name": "main",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
83
"__id__":
91
},
},
"_children": [
"_children": [
{
{
"__id__":
99
"__id__":
107
},
},
{
{
"__id__": 10
1
"__id__": 10
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
03
"__id__": 1
11
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4944,13 +5387,13 @@
...
@@ -4944,13 +5387,13 @@
"_name": "oval-18",
"_name": "oval-18",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
98
"__id__":
106
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
0
"__id__": 10
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5006,7 +5449,7 @@
...
@@ -5006,7 +5449,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
99
"__id__":
107
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5038,13 +5481,13 @@
...
@@ -5038,13 +5481,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
98
"__id__":
106
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
02
"__id__": 1
10
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5100,7 +5543,7 @@
...
@@ -5100,7 +5543,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
1
"__id__": 10
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5135,7 +5578,7 @@
...
@@ -5135,7 +5578,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
98
"__id__":
106
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -5196,7 +5639,7 @@
...
@@ -5196,7 +5639,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__":
98
"__id__":
106
},
},
"_id": "f41Ic5OXhCRpAxS/kMIRiA"
"_id": "f41Ic5OXhCRpAxS/kMIRiA"
},
},
...
@@ -5211,7 +5654,7 @@
...
@@ -5211,7 +5654,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
05
"__id__": 1
13
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5267,7 +5710,7 @@
...
@@ -5267,7 +5710,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
04
"__id__": 1
12
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5361,19 +5804,19 @@
...
@@ -5361,19 +5804,19 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 1
08
"__id__": 1
16
},
},
{
{
"__id__": 11
0
"__id__": 11
8
},
},
{
{
"__id__": 1
12
"__id__": 1
20
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
14
"__id__": 1
22
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5429,13 +5872,13 @@
...
@@ -5429,13 +5872,13 @@
"_name": "bg_blue",
"_name": "bg_blue",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
07
"__id__": 1
15
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
09
"__id__": 1
17
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5491,7 +5934,7 @@
...
@@ -5491,7 +5934,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
08
"__id__": 1
16
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5523,13 +5966,13 @@
...
@@ -5523,13 +5966,13 @@
"_name": "bg_green",
"_name": "bg_green",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
07
"__id__": 1
15
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
1
"__id__": 11
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5585,7 +6028,7 @@
...
@@ -5585,7 +6028,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
0
"__id__": 11
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5617,13 +6060,13 @@
...
@@ -5617,13 +6060,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
07
"__id__": 1
15
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
13
"__id__": 1
21
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5679,7 +6122,7 @@
...
@@ -5679,7 +6122,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
12
"__id__": 1
20
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5714,7 +6157,7 @@
...
@@ -5714,7 +6157,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
07
"__id__": 1
15
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -5775,7 +6218,7 @@
...
@@ -5775,7 +6218,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 1
07
"__id__": 1
15
},
},
"_id": "176BYmeDpPZ68HlISEHa8t"
"_id": "176BYmeDpPZ68HlISEHa8t"
},
},
...
@@ -5846,28 +6289,28 @@
...
@@ -5846,28 +6289,28 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 1
17
"__id__": 1
25
},
},
{
{
"__id__": 1
19
"__id__": 1
27
},
},
{
{
"__id__": 12
1
"__id__": 12
9
},
},
{
{
"__id__": 1
23
"__id__": 1
31
},
},
{
{
"__id__": 1
25
"__id__": 1
33
},
},
{
{
"__id__": 1
29
"__id__": 1
37
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
35
"__id__": 1
43
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5923,13 +6366,13 @@
...
@@ -5923,13 +6366,13 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
16
"__id__": 1
24
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
18
"__id__": 1
26
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5985,7 +6428,7 @@
...
@@ -5985,7 +6428,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
17
"__id__": 1
25
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6017,13 +6460,13 @@
...
@@ -6017,13 +6460,13 @@
"_name": "chose",
"_name": "chose",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
16
"__id__": 1
24
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
0
"__id__": 12
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6079,7 +6522,7 @@
...
@@ -6079,7 +6522,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
19
"__id__": 1
27
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6111,13 +6554,13 @@
...
@@ -6111,13 +6554,13 @@
"_name": "icon",
"_name": "icon",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
16
"__id__": 1
24
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
22
"__id__": 1
30
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6173,7 +6616,7 @@
...
@@ -6173,7 +6616,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
1
"__id__": 12
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6205,13 +6648,13 @@
...
@@ -6205,13 +6648,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
16
"__id__": 1
24
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
24
"__id__": 1
32
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6267,7 +6710,7 @@
...
@@ -6267,7 +6710,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
23
"__id__": 1
31
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6302,17 +6745,17 @@
...
@@ -6302,17 +6745,17 @@
"_name": "fail",
"_name": "fail",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
16
"__id__": 1
24
},
},
"_children": [
"_children": [
{
{
"__id__": 1
26
"__id__": 1
34
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
28
"__id__": 1
36
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6368,13 +6811,13 @@
...
@@ -6368,13 +6811,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
25
"__id__": 1
33
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
27
"__id__": 1
35
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6430,7 +6873,7 @@
...
@@ -6430,7 +6873,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
26
"__id__": 1
34
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6465,7 +6908,7 @@
...
@@ -6465,7 +6908,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
25
"__id__": 1
33
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6497,20 +6940,20 @@
...
@@ -6497,20 +6940,20 @@
"_name": "success",
"_name": "success",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
16
"__id__": 1
24
},
},
"_children": [
"_children": [
{
{
"__id__": 13
0
"__id__": 13
8
},
},
{
{
"__id__": 1
32
"__id__": 1
40
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
34
"__id__": 1
42
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6566,13 +7009,13 @@
...
@@ -6566,13 +7009,13 @@
"_name": "txt",
"_name": "txt",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
29
"__id__": 1
37
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
1
"__id__": 13
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6628,7 +7071,7 @@
...
@@ -6628,7 +7071,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
0
"__id__": 13
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6663,13 +7106,13 @@
...
@@ -6663,13 +7106,13 @@
"_name": "icon",
"_name": "icon",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
29
"__id__": 1
37
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
33
"__id__": 1
41
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6725,7 +7168,7 @@
...
@@ -6725,7 +7168,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
32
"__id__": 1
40
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6757,7 +7200,7 @@
...
@@ -6757,7 +7200,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
29
"__id__": 1
37
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6789,7 +7232,7 @@
...
@@ -6789,7 +7232,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
16
"__id__": 1
24
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -6850,7 +7293,7 @@
...
@@ -6850,7 +7293,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 1
16
"__id__": 1
24
},
},
"_id": "58IQ76yf1KT71BqZoNtHOV"
"_id": "58IQ76yf1KT71BqZoNtHOV"
},
},
...
@@ -6865,7 +7308,7 @@
...
@@ -6865,7 +7308,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
37
"__id__": 1
45
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6921,7 +7364,7 @@
...
@@ -6921,7 +7364,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
36
"__id__": 1
44
},
},
"_enabled": true,
"_enabled": true,
"r_width": 0,
"r_width": 0,
...
@@ -6948,13 +7391,13 @@
...
@@ -6948,13 +7391,13 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
39
"__id__": 1
47
},
},
{
{
"__id__": 14
0
"__id__": 14
8
},
},
{
{
"__id__": 14
1
"__id__": 14
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7010,7 +7453,7 @@
...
@@ -7010,7 +7453,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
38
"__id__": 1
46
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7042,7 +7485,7 @@
...
@@ -7042,7 +7485,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
38
"__id__": 1
46
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -7103,7 +7546,7 @@
...
@@ -7103,7 +7546,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 1
38
"__id__": 1
46
},
},
"_id": "86ErSTSUhP26kFUGhhqqPn"
"_id": "86ErSTSUhP26kFUGhhqqPn"
},
},
...
@@ -7112,7 +7555,7 @@
...
@@ -7112,7 +7555,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
38
"__id__": 1
46
},
},
"_enabled": true,
"_enabled": true,
"r_width": 0,
"r_width": 0,
...
@@ -7139,10 +7582,10 @@
...
@@ -7139,10 +7582,10 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
43
"__id__": 1
51
},
},
{
{
"__id__": 1
44
"__id__": 1
52
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7198,7 +7641,7 @@
...
@@ -7198,7 +7641,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
42
"__id__": 1
50
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -7230,7 +7673,7 @@
...
@@ -7230,7 +7673,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
42
"__id__": 1
50
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -7379,7 +7822,7 @@
...
@@ -7379,7 +7822,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
48
"__id__": 1
56
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7435,7 +7878,7 @@
...
@@ -7435,7 +7878,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
47
"__id__": 1
55
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7479,13 +7922,13 @@
...
@@ -7479,13 +7922,13 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 15
0
"__id__": 15
8
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
54
"__id__": 1
62
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7541,17 +7984,17 @@
...
@@ -7541,17 +7984,17 @@
"_name": "Star",
"_name": "Star",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
49
"__id__": 1
57
},
},
"_children": [
"_children": [
{
{
"__id__": 15
1
"__id__": 15
9
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
53
"__id__": 1
61
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7607,13 +8050,13 @@
...
@@ -7607,13 +8050,13 @@
"_name": "StarBig",
"_name": "StarBig",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 15
0
"__id__": 15
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
52
"__id__": 1
60
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7669,7 +8112,7 @@
...
@@ -7669,7 +8112,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
1
"__id__": 15
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7701,7 +8144,7 @@
...
@@ -7701,7 +8144,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
0
"__id__": 15
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7733,7 +8176,7 @@
...
@@ -7733,7 +8176,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
49
"__id__": 1
57
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7769,22 +8212,22 @@
...
@@ -7769,22 +8212,22 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 1
56
"__id__": 1
64
},
},
{
{
"__id__": 1
58
"__id__": 1
66
},
},
{
{
"__id__": 16
0
"__id__": 16
8
},
},
{
{
"__id__": 1
62
"__id__": 1
70
},
},
{
{
"__id__": 1
64
"__id__": 1
72
},
},
{
{
"__id__": 1
66
"__id__": 1
74
}
}
],
],
"_active": false,
"_active": false,
...
@@ -7842,13 +8285,13 @@
...
@@ -7842,13 +8285,13 @@
"_name": "bg_sahua",
"_name": "bg_sahua",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
55
"__id__": 1
63
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
57
"__id__": 1
65
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7904,7 +8347,7 @@
...
@@ -7904,7 +8347,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
56
"__id__": 1
64
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7936,13 +8379,13 @@
...
@@ -7936,13 +8379,13 @@
"_name": "bg_sahua",
"_name": "bg_sahua",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
55
"__id__": 1
63
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
59
"__id__": 1
67
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -7998,7 +8441,7 @@
...
@@ -7998,7 +8441,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
58
"__id__": 1
66
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8030,13 +8473,13 @@
...
@@ -8030,13 +8473,13 @@
"_name": "bg_sahua",
"_name": "bg_sahua",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
55
"__id__": 1
63
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 16
1
"__id__": 16
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8092,7 +8535,7 @@
...
@@ -8092,7 +8535,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
0
"__id__": 16
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8124,13 +8567,13 @@
...
@@ -8124,13 +8567,13 @@
"_name": "bg_sahua",
"_name": "bg_sahua",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
55
"__id__": 1
63
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
63
"__id__": 1
71
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8186,7 +8629,7 @@
...
@@ -8186,7 +8629,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
62
"__id__": 1
70
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8218,13 +8661,13 @@
...
@@ -8218,13 +8661,13 @@
"_name": "bg_sahua",
"_name": "bg_sahua",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
55
"__id__": 1
63
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
65
"__id__": 1
73
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8280,7 +8723,7 @@
...
@@ -8280,7 +8723,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
64
"__id__": 1
72
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8312,13 +8755,13 @@
...
@@ -8312,13 +8755,13 @@
"_name": "bg_sahua",
"_name": "bg_sahua",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
55
"__id__": 1
63
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
67
"__id__": 1
75
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8374,7 +8817,7 @@
...
@@ -8374,7 +8817,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
66
"__id__": 1
74
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8410,19 +8853,19 @@
...
@@ -8410,19 +8853,19 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 1
69
"__id__": 1
77
},
},
{
{
"__id__": 1
74
"__id__": 1
82
},
},
{
{
"__id__": 1
79
"__id__": 1
87
},
},
{
{
"__id__": 1
84
"__id__": 1
92
},
},
{
{
"__id__": 1
89
"__id__": 1
97
}
}
],
],
"_active": false,
"_active": false,
...
@@ -8480,11 +8923,11 @@
...
@@ -8480,11 +8923,11 @@
"_name": "quadBase",
"_name": "quadBase",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
68
"__id__": 1
76
},
},
"_children": [
"_children": [
{
{
"__id__": 17
0
"__id__": 17
8
}
}
],
],
"_active": true,
"_active": true,
...
@@ -8542,17 +8985,17 @@
...
@@ -8542,17 +8985,17 @@
"_name": "quad",
"_name": "quad",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
69
"__id__": 1
77
},
},
"_children": [
"_children": [
{
{
"__id__": 17
1
"__id__": 17
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
73
"__id__": 1
81
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8608,13 +9051,13 @@
...
@@ -8608,13 +9051,13 @@
"_name": "paper",
"_name": "paper",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
0
"__id__": 17
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
72
"__id__": 1
80
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8670,7 +9113,7 @@
...
@@ -8670,7 +9113,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
1
"__id__": 17
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8702,7 +9145,7 @@
...
@@ -8702,7 +9145,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
0
"__id__": 17
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8724,11 +9167,11 @@
...
@@ -8724,11 +9167,11 @@
"_name": "quadBase",
"_name": "quadBase",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
68
"__id__": 1
76
},
},
"_children": [
"_children": [
{
{
"__id__": 1
75
"__id__": 1
83
}
}
],
],
"_active": true,
"_active": true,
...
@@ -8786,17 +9229,17 @@
...
@@ -8786,17 +9229,17 @@
"_name": "quad",
"_name": "quad",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
74
"__id__": 1
82
},
},
"_children": [
"_children": [
{
{
"__id__": 1
76
"__id__": 1
84
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
78
"__id__": 1
86
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8852,13 +9295,13 @@
...
@@ -8852,13 +9295,13 @@
"_name": "paper",
"_name": "paper",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
75
"__id__": 1
83
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
77
"__id__": 1
85
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -8914,7 +9357,7 @@
...
@@ -8914,7 +9357,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
76
"__id__": 1
84
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8946,7 +9389,7 @@
...
@@ -8946,7 +9389,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
75
"__id__": 1
83
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8968,11 +9411,11 @@
...
@@ -8968,11 +9411,11 @@
"_name": "quadBase",
"_name": "quadBase",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
68
"__id__": 1
76
},
},
"_children": [
"_children": [
{
{
"__id__": 18
0
"__id__": 18
8
}
}
],
],
"_active": true,
"_active": true,
...
@@ -9030,17 +9473,17 @@
...
@@ -9030,17 +9473,17 @@
"_name": "quad",
"_name": "quad",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
79
"__id__": 1
87
},
},
"_children": [
"_children": [
{
{
"__id__": 18
1
"__id__": 18
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
83
"__id__": 1
91
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9096,13 +9539,13 @@
...
@@ -9096,13 +9539,13 @@
"_name": "paper",
"_name": "paper",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 18
0
"__id__": 18
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
82
"__id__": 1
90
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9158,7 +9601,7 @@
...
@@ -9158,7 +9601,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
1
"__id__": 18
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9190,7 +9633,7 @@
...
@@ -9190,7 +9633,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
0
"__id__": 18
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9212,11 +9655,11 @@
...
@@ -9212,11 +9655,11 @@
"_name": "quadBase",
"_name": "quadBase",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
68
"__id__": 1
76
},
},
"_children": [
"_children": [
{
{
"__id__": 1
85
"__id__": 1
93
}
}
],
],
"_active": true,
"_active": true,
...
@@ -9274,17 +9717,17 @@
...
@@ -9274,17 +9717,17 @@
"_name": "quad",
"_name": "quad",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
84
"__id__": 1
92
},
},
"_children": [
"_children": [
{
{
"__id__": 1
86
"__id__": 1
94
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
88
"__id__": 1
96
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9340,13 +9783,13 @@
...
@@ -9340,13 +9783,13 @@
"_name": "paper",
"_name": "paper",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
85
"__id__": 1
93
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
87
"__id__": 1
95
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9402,7 +9845,7 @@
...
@@ -9402,7 +9845,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
86
"__id__": 1
94
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9434,7 +9877,7 @@
...
@@ -9434,7 +9877,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
85
"__id__": 1
93
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9456,11 +9899,11 @@
...
@@ -9456,11 +9899,11 @@
"_name": "quadBase",
"_name": "quadBase",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
68
"__id__": 1
76
},
},
"_children": [
"_children": [
{
{
"__id__": 19
0
"__id__": 19
8
}
}
],
],
"_active": true,
"_active": true,
...
@@ -9518,17 +9961,17 @@
...
@@ -9518,17 +9961,17 @@
"_name": "quad",
"_name": "quad",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
89
"__id__": 1
97
},
},
"_children": [
"_children": [
{
{
"__id__": 19
1
"__id__": 19
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
193
"__id__":
201
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9584,13 +10027,13 @@
...
@@ -9584,13 +10027,13 @@
"_name": "paper",
"_name": "paper",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 19
0
"__id__": 19
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
192
"__id__":
200
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9646,7 +10089,7 @@
...
@@ -9646,7 +10089,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 19
1
"__id__": 19
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9678,7 +10121,7 @@
...
@@ -9678,7 +10121,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 19
0
"__id__": 19
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9706,7 +10149,7 @@
...
@@ -9706,7 +10149,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
195
"__id__":
203
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9762,7 +10205,7 @@
...
@@ -9762,7 +10205,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
194
"__id__":
202
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -9787,7 +10230,7 @@
...
@@ -9787,7 +10230,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
197
"__id__":
205
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9843,7 +10286,7 @@
...
@@ -9843,7 +10286,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
196
"__id__":
204
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -9868,7 +10311,7 @@
...
@@ -9868,7 +10311,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
199
"__id__":
207
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -9924,7 +10367,7 @@
...
@@ -9924,7 +10367,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
198
"__id__":
206
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment