Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hy14_pipei
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
hy14_pipei
Commits
7e47d40f
Commit
7e47d40f
authored
Jul 17, 2023
by
yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
685c53aa
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
608 additions
and
600 deletions
+608
-600
Game_hy14_pipei.ts
assets/hy14_pipei/scene/Game_hy14_pipei.ts
+21
-8
hy14_pipei.fire
assets/hy14_pipei/scene/hy14_pipei.fire
+420
-452
hy14_pipei.ts
assets/hy14_pipei/scene/hy14_pipei.ts
+26
-17
pg_hy14_pipei.ts
assets/hy14_pipei/scene/pg_hy14_pipei.ts
+2
-2
defaultData_hy14_pipei.ts
assets/hy14_pipei/script/defaultData_hy14_pipei.ts
+139
-121
No files found.
assets/hy14_pipei/scene/Game_hy14_pipei.ts
View file @
7e47d40f
import
ImgVoice
from
"
../common/script/ImgVoice_hy14_pipei
"
;
import
ImgVoice
from
"
../common/script/ImgVoice_hy14_pipei
"
;
export
let
imageZize
=
{
export
let
imageZize
=
{
width
:
1
0
00
,
width
:
1
1
00
,
height
:
600
height
:
572
}
}
...
@@ -83,10 +83,12 @@ export default class Game {
...
@@ -83,10 +83,12 @@ export default class Game {
public
tipSwitch
:
any
;
public
tipSwitch
:
any
;
public
endImgTitle
:
any
;
public
endImgTitle
:
any
;
public
jumpIdx
:
any
;
public
jumpIdx
:
any
;
public
hotZoneItemArr
:
any
;
public
init
(
data
)
{
public
init
(
data
)
{
this
.
data
=
data
;
this
.
start
=
false
;
this
.
start
=
false
;
this
.
lists
=
[];
this
.
lists
=
[];
this
.
data
=
data
.
hotZoneItemArr
;
this
.
hotZoneItemArr
=
data
.
hotZoneItemArr
;
this
.
aniEnter
=
data
.
imgAni
;
this
.
aniEnter
=
data
.
imgAni
;
this
.
endImgAni
=
data
.
endImgAni
;
this
.
endImgAni
=
data
.
endImgAni
;
this
.
title
=
data
.
title
;
this
.
title
=
data
.
title
;
...
@@ -99,7 +101,7 @@ export default class Game {
...
@@ -99,7 +101,7 @@ export default class Game {
this
.
tipSwitch
=
data
.
tipSwitch
;
this
.
tipSwitch
=
data
.
tipSwitch
;
this
.
endImgTitle
=
data
.
endImgTitle
;
this
.
endImgTitle
=
data
.
endImgTitle
;
this
.
jumpIdx
=
data
.
jumpIdx
||
-
1
;
this
.
jumpIdx
=
data
.
jumpIdx
||
-
1
;
this
.
changepoints
(
data
);
// this.changepoints(
);
}
}
public
start
:
boolean
;
public
start
:
boolean
;
public
page
:
number
;
public
page
:
number
;
...
@@ -107,8 +109,8 @@ export default class Game {
...
@@ -107,8 +109,8 @@ export default class Game {
this
.
page
=
1
;
this
.
page
=
1
;
this
.
start
=
true
;
this
.
start
=
true
;
this
.
lists
=
[];
this
.
lists
=
[];
for
(
let
i
=
0
;
i
<
this
.
data
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
this
.
hotZoneItemArr
.
length
;
i
++
)
{
let
data
=
this
.
data
[
i
];
let
data
=
this
.
hotZoneItemArr
[
i
];
this
.
lists
.
push
(
new
ItemJigsaw
(
data
,
i
));
this
.
lists
.
push
(
new
ItemJigsaw
(
data
,
i
));
}
}
this
.
lists
.
sort
(
function
()
{
this
.
lists
.
sort
(
function
()
{
...
@@ -127,7 +129,18 @@ export default class Game {
...
@@ -127,7 +129,18 @@ export default class Game {
return
true
;
return
true
;
}
}
public
pointsArr
;
public
pointsArr
;
private
changepoints
(
data
)
{
public
changepoints
(
wh
:
any
)
{
let
data
=
this
.
data
;
if
(
wh
.
w
>
1150
)
{
imageZize
.
width
=
1150
;
let
sx
=
imageZize
.
width
/
wh
.
w
;
imageZize
.
height
=
wh
.
h
*
sx
;
}
else
{
imageZize
.
width
=
wh
.
w
;
imageZize
.
height
=
wh
.
h
;
}
let
scX
=
imageZize
.
width
/
data
.
bgItem
.
rect
.
width
;
let
scX
=
imageZize
.
width
/
data
.
bgItem
.
rect
.
width
;
let
scY
=
imageZize
.
height
/
data
.
bgItem
.
rect
.
height
;
let
scY
=
imageZize
.
height
/
data
.
bgItem
.
rect
.
height
;
let
px
=
data
.
bgItem
.
rect
.
x
;
let
px
=
data
.
bgItem
.
rect
.
x
;
...
@@ -192,7 +205,7 @@ export default class Game {
...
@@ -192,7 +205,7 @@ export default class Game {
return
this
.
page
>
this
.
lists
.
length
;
return
this
.
page
>
this
.
lists
.
length
;
}
}
get
opdata
()
{
get
opdata
()
{
return
this
.
data
;
return
this
.
hotZoneItemArr
;
}
}
}
}
...
...
assets/hy14_pipei/scene/hy14_pipei.fire
View file @
7e47d40f
...
@@ -90,34 +90,34 @@
...
@@ -90,34 +90,34 @@
"__id__": 84
"__id__": 84
},
},
{
{
"__id__": 8
7
"__id__": 8
6
},
},
{
{
"__id__":
90
"__id__":
89
},
},
{
{
"__id__": 14
7
"__id__": 14
6
},
},
{
{
"__id__": 17
6
"__id__": 17
5
},
},
{
{
"__id__": 22
1
"__id__": 22
0
},
},
{
{
"__id__": 24
3
"__id__": 24
2
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 28
2
"__id__": 28
1
},
},
{
{
"__id__": 28
3
"__id__": 28
2
},
},
{
{
"__id__": 28
4
"__id__": 28
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1419,8 +1419,8 @@
...
@@ -1419,8 +1419,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width": 1
0
00,
"width": 1
1
00,
"height":
600
"height":
572
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -1431,8 +1431,8 @@
...
@@ -1431,8 +1431,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
2
2
,
2
5
,
20
,
4
,
0,
0,
0,
0,
0,
0,
...
@@ -3492,9 +3492,6 @@
...
@@ -3492,9 +3492,6 @@
"_components": [
"_components": [
{
{
"__id__": 85
"__id__": 85
},
{
"__id__": 86
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3508,8 +3505,8 @@
...
@@ -3508,8 +3505,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width": 1
00
0,
"width": 1
15
0,
"height":
600
"height":
572
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -3520,8 +3517,8 @@
...
@@ -3520,8 +3517,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
-
478
,
-
557
,
320
,
295
,
0,
0,
0,
0,
0,
0,
...
@@ -3546,63 +3543,34 @@
...
@@ -3546,63 +3543,34 @@
"_id": "18D2S6c+VLq6tSQg6Snw+v"
"_id": "18D2S6c+VLq6tSQg6Snw+v"
},
},
{
{
"__type__": "cc.
Layout
",
"__type__": "cc.
Sprite
",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 84
"__id__": 84
},
},
"_enabled": false,
"_enabled": true,
"_layoutSize": {
"_materials": [
"__type__": "cc.Size",
{
"width": 1580,
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
"height": 740
}
},
],
"_resize": 0,
"_srcBlendFactor": 770,
"_N$layoutType": 0,
"_dstBlendFactor": 771,
"_N$cellSize": {
"_spriteFrame": null,
"__type__": "cc.Size",
"_type": 0,
"width": 40,
"_sizeMode": 1,
"height": 40
"_fillType": 0,
},
"_fillCenter": {
"_N$startAxis": 0,
"__type__": "cc.Vec2",
"_N$paddingLeft": 0,
"x": 0,
"_N$paddingRight": 0,
"y": 0
"_N$paddingTop": 0,
"_N$paddingBottom": 0,
"_N$spacingX": 3,
"_N$spacingY": 0,
"_N$verticalDirection": 1,
"_N$horizontalDirection": 0,
"_N$affectedByScale": false,
"_id": "bcASpb4jtHUrQ3P20BLFW/"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 84
},
},
"_enabled": false,
"_fillStart": 0,
"alignMode": 1,
"_fillRange": 0,
"_target": null,
"_isTrimmedMode": true,
"_alignFlags": 45,
"_atlas": null,
"_left": 0,
"_id": "5d8jA13jZFC6sNSDUFX2VL"
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 1580,
"_originalHeight": 740,
"_id": "26X63NzrxLgIJndZtWiNA5"
},
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
...
@@ -3615,10 +3583,10 @@
...
@@ -3615,10 +3583,10 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
8
"__id__": 8
7
},
},
{
{
"__id__": 8
9
"__id__": 8
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3674,7 +3642,7 @@
...
@@ -3674,7 +3642,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
7
"__id__": 8
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3706,7 +3674,7 @@
...
@@ -3706,7 +3674,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
7
"__id__": 8
6
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -3737,16 +3705,16 @@
...
@@ -3737,16 +3705,16 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 9
1
"__id__": 9
0
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 14
5
"__id__": 14
4
},
},
{
{
"__id__": 14
6
"__id__": 14
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3802,20 +3770,20 @@
...
@@ -3802,20 +3770,20 @@
"_name": "view",
"_name": "view",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
90
"__id__":
89
},
},
"_children": [
"_children": [
{
{
"__id__": 9
2
"__id__": 9
1
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 14
3
"__id__": 14
2
},
},
{
{
"__id__": 14
4
"__id__": 14
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3871,41 +3839,41 @@
...
@@ -3871,41 +3839,41 @@
"_name": "content",
"_name": "content",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
1
"__id__": 9
0
},
},
"_children": [
"_children": [
{
{
"__id__": 9
3
"__id__": 9
2
},
},
{
{
"__id__": 9
9
"__id__": 9
8
},
},
{
{
"__id__": 10
5
"__id__": 10
4
},
},
{
{
"__id__": 11
1
"__id__": 11
0
},
},
{
{
"__id__": 11
7
"__id__": 11
6
},
},
{
{
"__id__": 12
3
"__id__": 12
2
},
},
{
{
"__id__": 12
9
"__id__": 12
8
},
},
{
{
"__id__": 13
5
"__id__": 13
4
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 14
1
"__id__": 14
0
},
},
{
{
"__id__": 14
2
"__id__": 14
1
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3961,20 +3929,20 @@
...
@@ -3961,20 +3929,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 9
4
"__id__": 9
3
},
},
{
{
"__id__": 9
6
"__id__": 9
5
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 9
8
"__id__": 9
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4030,13 +3998,13 @@
...
@@ -4030,13 +3998,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
3
"__id__": 9
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
5
"__id__": 9
4
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4092,7 +4060,7 @@
...
@@ -4092,7 +4060,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
4
"__id__": 9
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4124,13 +4092,13 @@
...
@@ -4124,13 +4092,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
3
"__id__": 9
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
7
"__id__": 9
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4186,7 +4154,7 @@
...
@@ -4186,7 +4154,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
6
"__id__": 9
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4221,7 +4189,7 @@
...
@@ -4221,7 +4189,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
3
"__id__": 9
2
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -4253,20 +4221,20 @@
...
@@ -4253,20 +4221,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__":
100
"__id__":
99
},
},
{
{
"__id__": 10
2
"__id__": 10
1
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 10
4
"__id__": 10
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4322,13 +4290,13 @@
...
@@ -4322,13 +4290,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
9
"__id__": 9
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
1
"__id__": 10
0
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4384,7 +4352,7 @@
...
@@ -4384,7 +4352,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
100
"__id__":
99
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4416,13 +4384,13 @@
...
@@ -4416,13 +4384,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
9
"__id__": 9
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
3
"__id__": 10
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4478,7 +4446,7 @@
...
@@ -4478,7 +4446,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
2
"__id__": 10
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4513,7 +4481,7 @@
...
@@ -4513,7 +4481,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
9
"__id__": 9
8
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -4545,20 +4513,20 @@
...
@@ -4545,20 +4513,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 10
6
"__id__": 10
5
},
},
{
{
"__id__": 10
8
"__id__": 10
7
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
10
"__id__": 1
09
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4614,13 +4582,13 @@
...
@@ -4614,13 +4582,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 10
5
"__id__": 10
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
7
"__id__": 10
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4676,7 +4644,7 @@
...
@@ -4676,7 +4644,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
6
"__id__": 10
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4708,13 +4676,13 @@
...
@@ -4708,13 +4676,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 10
5
"__id__": 10
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
9
"__id__": 10
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4770,7 +4738,7 @@
...
@@ -4770,7 +4738,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
8
"__id__": 10
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4805,7 +4773,7 @@
...
@@ -4805,7 +4773,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
5
"__id__": 10
4
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -4837,20 +4805,20 @@
...
@@ -4837,20 +4805,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 11
2
"__id__": 11
1
},
},
{
{
"__id__": 11
4
"__id__": 11
3
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 11
6
"__id__": 11
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4906,13 +4874,13 @@
...
@@ -4906,13 +4874,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
1
"__id__": 11
0
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
3
"__id__": 11
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4968,7 +4936,7 @@
...
@@ -4968,7 +4936,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
2
"__id__": 11
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5000,13 +4968,13 @@
...
@@ -5000,13 +4968,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
1
"__id__": 11
0
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
5
"__id__": 11
4
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5062,7 +5030,7 @@
...
@@ -5062,7 +5030,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
4
"__id__": 11
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5097,7 +5065,7 @@
...
@@ -5097,7 +5065,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
1
"__id__": 11
0
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -5129,20 +5097,20 @@
...
@@ -5129,20 +5097,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 11
8
"__id__": 11
7
},
},
{
{
"__id__": 1
20
"__id__": 1
19
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 12
2
"__id__": 12
1
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5198,13 +5166,13 @@
...
@@ -5198,13 +5166,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
7
"__id__": 11
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
9
"__id__": 11
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5260,7 +5228,7 @@
...
@@ -5260,7 +5228,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
8
"__id__": 11
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5292,13 +5260,13 @@
...
@@ -5292,13 +5260,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
7
"__id__": 11
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
1
"__id__": 12
0
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5354,7 +5322,7 @@
...
@@ -5354,7 +5322,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
20
"__id__": 1
19
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5389,7 +5357,7 @@
...
@@ -5389,7 +5357,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
7
"__id__": 11
6
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -5421,20 +5389,20 @@
...
@@ -5421,20 +5389,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 12
4
"__id__": 12
3
},
},
{
{
"__id__": 12
6
"__id__": 12
5
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 12
8
"__id__": 12
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5490,13 +5458,13 @@
...
@@ -5490,13 +5458,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 12
3
"__id__": 12
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
5
"__id__": 12
4
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5552,7 +5520,7 @@
...
@@ -5552,7 +5520,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
4
"__id__": 12
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5584,13 +5552,13 @@
...
@@ -5584,13 +5552,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 12
3
"__id__": 12
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
7
"__id__": 12
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5646,7 +5614,7 @@
...
@@ -5646,7 +5614,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
6
"__id__": 12
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5681,7 +5649,7 @@
...
@@ -5681,7 +5649,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
3
"__id__": 12
2
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -5713,20 +5681,20 @@
...
@@ -5713,20 +5681,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 1
30
"__id__": 1
29
},
},
{
{
"__id__": 13
2
"__id__": 13
1
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 13
4
"__id__": 13
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5782,13 +5750,13 @@
...
@@ -5782,13 +5750,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 12
9
"__id__": 12
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
1
"__id__": 13
0
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5844,7 +5812,7 @@
...
@@ -5844,7 +5812,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
30
"__id__": 1
29
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5876,13 +5844,13 @@
...
@@ -5876,13 +5844,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 12
9
"__id__": 12
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
3
"__id__": 13
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5938,7 +5906,7 @@
...
@@ -5938,7 +5906,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
2
"__id__": 13
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5973,7 +5941,7 @@
...
@@ -5973,7 +5941,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
9
"__id__": 12
8
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -6005,20 +5973,20 @@
...
@@ -6005,20 +5973,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
1
},
},
"_children": [
"_children": [
{
{
"__id__": 13
6
"__id__": 13
5
},
},
{
{
"__id__": 13
8
"__id__": 13
7
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 1
40
"__id__": 1
39
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6074,13 +6042,13 @@
...
@@ -6074,13 +6042,13 @@
"_name": "stone1",
"_name": "stone1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 13
5
"__id__": 13
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
7
"__id__": 13
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6136,7 +6104,7 @@
...
@@ -6136,7 +6104,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
6
"__id__": 13
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6168,13 +6136,13 @@
...
@@ -6168,13 +6136,13 @@
"_name": "desc",
"_name": "desc",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 13
5
"__id__": 13
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
9
"__id__": 13
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6230,7 +6198,7 @@
...
@@ -6230,7 +6198,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
8
"__id__": 13
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6265,7 +6233,7 @@
...
@@ -6265,7 +6233,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
5
"__id__": 13
4
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -6297,7 +6265,7 @@
...
@@ -6297,7 +6265,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
2
"__id__": 9
1
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -6324,7 +6292,7 @@
...
@@ -6324,7 +6292,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
2
"__id__": 9
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6356,7 +6324,7 @@
...
@@ -6356,7 +6324,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
1
"__id__": 9
0
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6376,7 +6344,7 @@
...
@@ -6376,7 +6344,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
1
"__id__": 9
0
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -6403,7 +6371,7 @@
...
@@ -6403,7 +6371,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
90
"__id__":
89
},
},
"_enabled": true,
"_enabled": true,
"horizontal": true,
"horizontal": true,
...
@@ -6415,10 +6383,10 @@
...
@@ -6415,10 +6383,10 @@
"scrollEvents": [],
"scrollEvents": [],
"cancelInnerEvents": true,
"cancelInnerEvents": true,
"_N$content": {
"_N$content": {
"__id__": 9
2
"__id__": 9
1
},
},
"content": {
"content": {
"__id__": 9
2
"__id__": 9
1
},
},
"_N$horizontalScrollBar": null,
"_N$horizontalScrollBar": null,
"_N$verticalScrollBar": null,
"_N$verticalScrollBar": null,
...
@@ -6429,7 +6397,7 @@
...
@@ -6429,7 +6397,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
90
"__id__":
89
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -6460,26 +6428,26 @@
...
@@ -6460,26 +6428,26 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 14
8
"__id__": 14
7
},
},
{
{
"__id__": 15
3
"__id__": 15
2
},
},
{
{
"__id__": 16
9
"__id__": 16
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 17
3
"__id__": 17
2
},
},
{
{
"__id__": 17
4
"__id__": 17
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 17
5
"__id__": 17
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6533,23 +6501,23 @@
...
@@ -6533,23 +6501,23 @@
"_name": "btn_back",
"_name": "btn_back",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
7
"__id__": 14
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 14
9
"__id__": 14
8
},
},
{
{
"__id__": 1
50
"__id__": 1
49
},
},
{
{
"__id__": 15
1
"__id__": 15
0
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 15
2
"__id__": 15
1
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6603,7 +6571,7 @@
...
@@ -6603,7 +6571,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
8
"__id__": 14
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6635,7 +6603,7 @@
...
@@ -6635,7 +6603,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
8
"__id__": 14
7
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -6703,7 +6671,7 @@
...
@@ -6703,7 +6671,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
8
"__id__": 14
7
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -6728,7 +6696,7 @@
...
@@ -6728,7 +6696,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -6741,24 +6709,24 @@
...
@@ -6741,24 +6709,24 @@
"_name": "label_title",
"_name": "label_title",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
7
"__id__": 14
6
},
},
"_children": [
"_children": [
{
{
"__id__": 15
4
"__id__": 15
3
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 16
6
"__id__": 16
5
},
},
{
{
"__id__": 16
7
"__id__": 16
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 16
8
"__id__": 16
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6812,27 +6780,27 @@
...
@@ -6812,27 +6780,27 @@
"_name": "img_npc_voice",
"_name": "img_npc_voice",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 15
3
"__id__": 15
2
},
},
"_children": [
"_children": [
{
{
"__id__": 15
5
"__id__": 15
4
},
},
{
{
"__id__": 15
8
"__id__": 15
7
},
},
{
{
"__id__": 16
1
"__id__": 16
0
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 16
4
"__id__": 16
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 16
5
"__id__": 16
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6886,17 +6854,17 @@
...
@@ -6886,17 +6854,17 @@
"_name": "p1",
"_name": "p1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 15
4
"__id__": 15
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 15
6
"__id__": 15
5
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 15
7
"__id__": 15
6
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6950,7 +6918,7 @@
...
@@ -6950,7 +6918,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
5
"__id__": 15
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6980,7 +6948,7 @@
...
@@ -6980,7 +6948,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -6993,17 +6961,17 @@
...
@@ -6993,17 +6961,17 @@
"_name": "p2",
"_name": "p2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 15
4
"__id__": 15
3
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 15
9
"__id__": 15
8
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
60
"__id__": 1
59
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7057,7 +7025,7 @@
...
@@ -7057,7 +7025,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
8
"__id__": 15
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7087,7 +7055,7 @@
...
@@ -7087,7 +7055,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -7100,17 +7068,17 @@
...
@@ -7100,17 +7068,17 @@
"_name": "p3",
"_name": "p3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 15
4
"__id__": 15
3
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 16
2
"__id__": 16
1
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 16
3
"__id__": 16
2
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7164,7 +7132,7 @@
...
@@ -7164,7 +7132,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
1
"__id__": 16
0
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7194,7 +7162,7 @@
...
@@ -7194,7 +7162,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -7207,7 +7175,7 @@
...
@@ -7207,7 +7175,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
4
"__id__": 15
3
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 2,
"alignMode": 2,
...
@@ -7232,7 +7200,7 @@
...
@@ -7232,7 +7200,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -7245,7 +7213,7 @@
...
@@ -7245,7 +7213,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
3
"__id__": 15
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7280,7 +7248,7 @@
...
@@ -7280,7 +7248,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
3
"__id__": 15
2
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -7305,7 +7273,7 @@
...
@@ -7305,7 +7273,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -7318,20 +7286,20 @@
...
@@ -7318,20 +7286,20 @@
"_name": "bg_forbid",
"_name": "bg_forbid",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
7
"__id__": 14
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
70
"__id__": 1
69
},
},
{
{
"__id__": 17
1
"__id__": 17
0
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 17
2
"__id__": 17
1
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7385,7 +7353,7 @@
...
@@ -7385,7 +7353,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
9
"__id__": 16
8
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -7412,7 +7380,7 @@
...
@@ -7412,7 +7380,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
9
"__id__": 16
8
},
},
"_enabled": true,
"_enabled": true,
"_id": "73bNc89zRA07fam6Bk0WDU"
"_id": "73bNc89zRA07fam6Bk0WDU"
...
@@ -7420,7 +7388,7 @@
...
@@ -7420,7 +7388,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -7433,7 +7401,7 @@
...
@@ -7433,7 +7401,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
7
"__id__": 14
6
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -7460,7 +7428,7 @@
...
@@ -7460,7 +7428,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
7
"__id__": 14
6
},
},
"_enabled": true,
"_enabled": true,
"_id": "e3Muq0igVDXbAN2/kZXKC9"
"_id": "e3Muq0igVDXbAN2/kZXKC9"
...
@@ -7468,7 +7436,7 @@
...
@@ -7468,7 +7436,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 14
7
"__id__": 14
6
},
},
"asset": {
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
...
@@ -7485,29 +7453,29 @@
...
@@ -7485,29 +7453,29 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 17
7
"__id__": 17
6
},
},
{
{
"__id__": 19
1
"__id__": 19
0
},
},
{
{
"__id__":
200
"__id__":
199
},
},
{
{
"__id__": 20
9
"__id__": 20
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 21
8
"__id__": 21
7
},
},
{
{
"__id__": 21
9
"__id__": 21
8
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 2
20
"__id__": 2
19
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7561,26 +7529,26 @@
...
@@ -7561,26 +7529,26 @@
"_name": "voice",
"_name": "voice",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
6
"__id__": 17
5
},
},
"_children": [
"_children": [
{
{
"__id__": 17
8
"__id__": 17
7
},
},
{
{
"__id__": 18
1
"__id__": 18
0
},
},
{
{
"__id__": 18
4
"__id__": 18
3
},
},
{
{
"__id__": 18
7
"__id__": 18
6
}
}
],
],
"_active": false,
"_active": false,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 1
90
"__id__": 1
89
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7634,17 +7602,17 @@
...
@@ -7634,17 +7602,17 @@
"_name": "excellent",
"_name": "excellent",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
7
"__id__": 17
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 17
9
"__id__": 17
8
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
80
"__id__": 1
79
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7698,7 +7666,7 @@
...
@@ -7698,7 +7666,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
8
"__id__": 17
7
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -7715,7 +7683,7 @@
...
@@ -7715,7 +7683,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -7728,17 +7696,17 @@
...
@@ -7728,17 +7696,17 @@
"_name": "good",
"_name": "good",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
7
"__id__": 17
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 18
2
"__id__": 18
1
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 18
3
"__id__": 18
2
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7792,7 +7760,7 @@
...
@@ -7792,7 +7760,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
1
"__id__": 18
0
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -7809,7 +7777,7 @@
...
@@ -7809,7 +7777,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -7822,17 +7790,17 @@
...
@@ -7822,17 +7790,17 @@
"_name": "tryagain",
"_name": "tryagain",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
7
"__id__": 17
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 18
5
"__id__": 18
4
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 18
6
"__id__": 18
5
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7886,7 +7854,7 @@
...
@@ -7886,7 +7854,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
4
"__id__": 18
3
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -7903,7 +7871,7 @@
...
@@ -7903,7 +7871,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -7916,17 +7884,17 @@
...
@@ -7916,17 +7884,17 @@
"_name": "ani",
"_name": "ani",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
7
"__id__": 17
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 18
8
"__id__": 18
7
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 18
9
"__id__": 18
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7980,7 +7948,7 @@
...
@@ -7980,7 +7948,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
7
"__id__": 18
6
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -7997,7 +7965,7 @@
...
@@ -7997,7 +7965,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8008,7 +7976,7 @@
...
@@ -8008,7 +7976,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8021,24 +7989,24 @@
...
@@ -8021,24 +7989,24 @@
"_name": "layout_excellent",
"_name": "layout_excellent",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
6
"__id__": 17
5
},
},
"_children": [
"_children": [
{
{
"__id__": 19
2
"__id__": 19
1
},
},
{
{
"__id__": 19
5
"__id__": 19
4
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 19
8
"__id__": 19
7
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 19
9
"__id__": 19
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8092,17 +8060,17 @@
...
@@ -8092,17 +8060,17 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 19
1
"__id__": 19
0
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 19
3
"__id__": 19
2
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 19
4
"__id__": 19
3
},
},
"_opacity": 150,
"_opacity": 150,
"_color": {
"_color": {
...
@@ -8156,7 +8124,7 @@
...
@@ -8156,7 +8124,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 19
2
"__id__": 19
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8186,7 +8154,7 @@
...
@@ -8186,7 +8154,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8199,17 +8167,17 @@
...
@@ -8199,17 +8167,17 @@
"_name": "AniNode",
"_name": "AniNode",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 19
1
"__id__": 19
0
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 19
6
"__id__": 19
5
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 19
7
"__id__": 19
6
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8263,7 +8231,7 @@
...
@@ -8263,7 +8231,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 19
5
"__id__": 19
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8301,7 +8269,7 @@
...
@@ -8301,7 +8269,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8314,7 +8282,7 @@
...
@@ -8314,7 +8282,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 19
1
"__id__": 19
0
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -8339,7 +8307,7 @@
...
@@ -8339,7 +8307,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8352,24 +8320,24 @@
...
@@ -8352,24 +8320,24 @@
"_name": "layout_good",
"_name": "layout_good",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
6
"__id__": 17
5
},
},
"_children": [
"_children": [
{
{
"__id__": 20
1
"__id__": 20
0
},
},
{
{
"__id__": 20
4
"__id__": 20
3
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 20
7
"__id__": 20
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 20
8
"__id__": 20
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8423,17 +8391,17 @@
...
@@ -8423,17 +8391,17 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
200
"__id__":
199
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 20
2
"__id__": 20
1
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 20
3
"__id__": 20
2
},
},
"_opacity": 150,
"_opacity": 150,
"_color": {
"_color": {
...
@@ -8487,7 +8455,7 @@
...
@@ -8487,7 +8455,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 20
1
"__id__": 20
0
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8517,7 +8485,7 @@
...
@@ -8517,7 +8485,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8530,17 +8498,17 @@
...
@@ -8530,17 +8498,17 @@
"_name": "AniNode",
"_name": "AniNode",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
200
"__id__":
199
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 20
5
"__id__": 20
4
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 20
6
"__id__": 20
5
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8594,7 +8562,7 @@
...
@@ -8594,7 +8562,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 20
4
"__id__": 20
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8632,7 +8600,7 @@
...
@@ -8632,7 +8600,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8645,7 +8613,7 @@
...
@@ -8645,7 +8613,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
200
"__id__":
199
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -8670,7 +8638,7 @@
...
@@ -8670,7 +8638,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8683,24 +8651,24 @@
...
@@ -8683,24 +8651,24 @@
"_name": "layout_tryagain",
"_name": "layout_tryagain",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 17
6
"__id__": 17
5
},
},
"_children": [
"_children": [
{
{
"__id__": 2
10
"__id__": 2
09
},
},
{
{
"__id__": 21
3
"__id__": 21
2
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 21
6
"__id__": 21
5
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 21
7
"__id__": 21
6
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8754,17 +8722,17 @@
...
@@ -8754,17 +8722,17 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 20
9
"__id__": 20
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 21
1
"__id__": 21
0
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 21
2
"__id__": 21
1
},
},
"_opacity": 150,
"_opacity": 150,
"_color": {
"_color": {
...
@@ -8818,7 +8786,7 @@
...
@@ -8818,7 +8786,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 2
10
"__id__": 2
09
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8848,7 +8816,7 @@
...
@@ -8848,7 +8816,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8861,17 +8829,17 @@
...
@@ -8861,17 +8829,17 @@
"_name": "AniNode",
"_name": "AniNode",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 20
9
"__id__": 20
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 21
4
"__id__": 21
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 21
5
"__id__": 21
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8925,7 +8893,7 @@
...
@@ -8925,7 +8893,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 21
3
"__id__": 21
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8963,7 +8931,7 @@
...
@@ -8963,7 +8931,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -8976,7 +8944,7 @@
...
@@ -8976,7 +8944,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 20
9
"__id__": 20
8
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -9001,7 +8969,7 @@
...
@@ -9001,7 +8969,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -9014,7 +8982,7 @@
...
@@ -9014,7 +8982,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
6
"__id__": 17
5
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -9041,7 +9009,7 @@
...
@@ -9041,7 +9009,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
6
"__id__": 17
5
},
},
"_enabled": true,
"_enabled": true,
"_id": "9c/TTsfO5OWJWcAXuG5JNw"
"_id": "9c/TTsfO5OWJWcAXuG5JNw"
...
@@ -9049,7 +9017,7 @@
...
@@ -9049,7 +9017,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 17
6
"__id__": 17
5
},
},
"asset": {
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
...
@@ -9066,20 +9034,20 @@
...
@@ -9066,20 +9034,20 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 22
2
"__id__": 22
1
},
},
{
{
"__id__": 23
6
"__id__": 23
5
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 24
1
"__id__": 24
0
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 24
2
"__id__": 24
1
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9133,26 +9101,26 @@
...
@@ -9133,26 +9101,26 @@
"_name": "layout_center",
"_name": "layout_center",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 22
1
"__id__": 22
0
},
},
"_children": [
"_children": [
{
{
"__id__": 22
3
"__id__": 22
2
},
},
{
{
"__id__": 22
6
"__id__": 22
5
},
},
{
{
"__id__": 22
9
"__id__": 22
8
},
},
{
{
"__id__": 23
2
"__id__": 23
1
}
}
],
],
"_active": false,
"_active": false,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 23
5
"__id__": 23
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9206,17 +9174,17 @@
...
@@ -9206,17 +9174,17 @@
"_name": "bg_gray",
"_name": "bg_gray",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 22
2
"__id__": 22
1
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 22
4
"__id__": 22
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 22
5
"__id__": 22
4
},
},
"_opacity": 102,
"_opacity": 102,
"_color": {
"_color": {
...
@@ -9270,7 +9238,7 @@
...
@@ -9270,7 +9238,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 22
3
"__id__": 22
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9300,7 +9268,7 @@
...
@@ -9300,7 +9268,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9313,17 +9281,17 @@
...
@@ -9313,17 +9281,17 @@
"_name": "aniNode1",
"_name": "aniNode1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 22
2
"__id__": 22
1
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 22
7
"__id__": 22
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 22
8
"__id__": 22
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9377,7 +9345,7 @@
...
@@ -9377,7 +9345,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 22
6
"__id__": 22
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9415,7 +9383,7 @@
...
@@ -9415,7 +9383,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9428,17 +9396,17 @@
...
@@ -9428,17 +9396,17 @@
"_name": "aniNode2",
"_name": "aniNode2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 22
2
"__id__": 22
1
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 2
30
"__id__": 2
29
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 23
1
"__id__": 23
0
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9492,7 +9460,7 @@
...
@@ -9492,7 +9460,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 22
9
"__id__": 22
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9530,7 +9498,7 @@
...
@@ -9530,7 +9498,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9543,17 +9511,17 @@
...
@@ -9543,17 +9511,17 @@
"_name": "aniNode3",
"_name": "aniNode3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 22
2
"__id__": 22
1
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 23
3
"__id__": 23
2
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 23
4
"__id__": 23
3
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9607,7 +9575,7 @@
...
@@ -9607,7 +9575,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 23
2
"__id__": 23
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -9645,7 +9613,7 @@
...
@@ -9645,7 +9613,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9656,7 +9624,7 @@
...
@@ -9656,7 +9624,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9669,17 +9637,17 @@
...
@@ -9669,17 +9637,17 @@
"_name": "res",
"_name": "res",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 22
1
"__id__": 22
0
},
},
"_children": [
"_children": [
{
{
"__id__": 23
7
"__id__": 23
6
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 2
40
"__id__": 2
39
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9733,17 +9701,17 @@
...
@@ -9733,17 +9701,17 @@
"_name": "coin",
"_name": "coin",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 23
6
"__id__": 23
5
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 23
8
"__id__": 23
7
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 23
9
"__id__": 23
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9797,7 +9765,7 @@
...
@@ -9797,7 +9765,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 23
7
"__id__": 23
6
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -9814,7 +9782,7 @@
...
@@ -9814,7 +9782,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9825,7 +9793,7 @@
...
@@ -9825,7 +9793,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9838,7 +9806,7 @@
...
@@ -9838,7 +9806,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 22
1
"__id__": 22
0
},
},
"_enabled": true,
"_enabled": true,
"_id": "8eV1QXijRFRIKyIa4yP1P9"
"_id": "8eV1QXijRFRIKyIa4yP1P9"
...
@@ -9846,7 +9814,7 @@
...
@@ -9846,7 +9814,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 22
1
"__id__": 22
0
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -9863,20 +9831,20 @@
...
@@ -9863,20 +9831,20 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 24
4
"__id__": 24
3
},
},
{
{
"__id__": 27
5
"__id__": 27
4
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 2
80
"__id__": 2
79
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 28
1
"__id__": 28
0
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -9930,35 +9898,35 @@
...
@@ -9930,35 +9898,35 @@
"_name": "layer_center",
"_name": "layer_center",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
3
"__id__": 24
2
},
},
"_children": [
"_children": [
{
{
"__id__": 24
5
"__id__": 24
4
},
},
{
{
"__id__": 24
8
"__id__": 24
7
},
},
{
{
"__id__": 2
50
"__id__": 2
49
},
},
{
{
"__id__": 25
3
"__id__": 25
2
},
},
{
{
"__id__": 25
6
"__id__": 25
5
},
},
{
{
"__id__": 25
9
"__id__": 25
8
},
},
{
{
"__id__": 26
2
"__id__": 26
1
}
}
],
],
"_active": false,
"_active": false,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 27
4
"__id__": 27
3
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10012,17 +9980,17 @@
...
@@ -10012,17 +9980,17 @@
"_name": "gray_cover",
"_name": "gray_cover",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 24
6
"__id__": 24
5
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 24
7
"__id__": 24
6
},
},
"_opacity": 102,
"_opacity": 102,
"_color": {
"_color": {
...
@@ -10076,7 +10044,7 @@
...
@@ -10076,7 +10044,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 24
5
"__id__": 24
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10106,7 +10074,7 @@
...
@@ -10106,7 +10074,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10119,13 +10087,13 @@
...
@@ -10119,13 +10087,13 @@
"_name": "layer_middle",
"_name": "layer_middle",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 24
9
"__id__": 24
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10177,7 +10145,7 @@
...
@@ -10177,7 +10145,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10190,17 +10158,17 @@
...
@@ -10190,17 +10158,17 @@
"_name": "replay_btn",
"_name": "replay_btn",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 25
1
"__id__": 25
0
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 25
2
"__id__": 25
1
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10254,7 +10222,7 @@
...
@@ -10254,7 +10222,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 2
50
"__id__": 2
49
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10284,7 +10252,7 @@
...
@@ -10284,7 +10252,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10297,17 +10265,17 @@
...
@@ -10297,17 +10265,17 @@
"_name": "bg_light",
"_name": "bg_light",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 25
4
"__id__": 25
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 25
5
"__id__": 25
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10361,7 +10329,7 @@
...
@@ -10361,7 +10329,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 25
3
"__id__": 25
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10391,7 +10359,7 @@
...
@@ -10391,7 +10359,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10404,17 +10372,17 @@
...
@@ -10404,17 +10372,17 @@
"_name": "finish_cat",
"_name": "finish_cat",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 25
7
"__id__": 25
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 25
8
"__id__": 25
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10468,7 +10436,7 @@
...
@@ -10468,7 +10436,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 25
6
"__id__": 25
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10506,7 +10474,7 @@
...
@@ -10506,7 +10474,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10519,17 +10487,17 @@
...
@@ -10519,17 +10487,17 @@
"_name": "next_btn",
"_name": "next_btn",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 2
60
"__id__": 2
59
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 26
1
"__id__": 26
0
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10583,7 +10551,7 @@
...
@@ -10583,7 +10551,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 25
9
"__id__": 25
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10613,7 +10581,7 @@
...
@@ -10613,7 +10581,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10626,27 +10594,27 @@
...
@@ -10626,27 +10594,27 @@
"_name": "finish_box",
"_name": "finish_box",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
4
"__id__": 24
3
},
},
"_children": [
"_children": [
{
{
"__id__": 26
3
"__id__": 26
2
},
},
{
{
"__id__": 26
6
"__id__": 26
5
},
},
{
{
"__id__": 26
9
"__id__": 26
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 27
2
"__id__": 27
1
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 27
3
"__id__": 27
2
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10700,17 +10668,17 @@
...
@@ -10700,17 +10668,17 @@
"_name": "result_text",
"_name": "result_text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 26
2
"__id__": 26
1
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 26
4
"__id__": 26
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 26
5
"__id__": 26
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10764,7 +10732,7 @@
...
@@ -10764,7 +10732,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 26
3
"__id__": 26
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10795,7 +10763,7 @@
...
@@ -10795,7 +10763,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10808,17 +10776,17 @@
...
@@ -10808,17 +10776,17 @@
"_name": "coin",
"_name": "coin",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 26
2
"__id__": 26
1
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 26
7
"__id__": 26
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 26
8
"__id__": 26
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10872,7 +10840,7 @@
...
@@ -10872,7 +10840,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 26
6
"__id__": 26
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -10902,7 +10870,7 @@
...
@@ -10902,7 +10870,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -10915,17 +10883,17 @@
...
@@ -10915,17 +10883,17 @@
"_name": "coin_num",
"_name": "coin_num",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 26
2
"__id__": 26
1
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 2
70
"__id__": 2
69
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 27
1
"__id__": 27
0
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -10979,7 +10947,7 @@
...
@@ -10979,7 +10947,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 26
9
"__id__": 26
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -11010,7 +10978,7 @@
...
@@ -11010,7 +10978,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -11023,7 +10991,7 @@
...
@@ -11023,7 +10991,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 26
2
"__id__": 26
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -11053,7 +11021,7 @@
...
@@ -11053,7 +11021,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -11064,7 +11032,7 @@
...
@@ -11064,7 +11032,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -11077,17 +11045,17 @@
...
@@ -11077,17 +11045,17 @@
"_name": "res",
"_name": "res",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 24
3
"__id__": 24
2
},
},
"_children": [
"_children": [
{
{
"__id__": 27
6
"__id__": 27
5
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 27
9
"__id__": 27
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -11141,17 +11109,17 @@
...
@@ -11141,17 +11109,17 @@
"_name": "ending",
"_name": "ending",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 27
5
"__id__": 27
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 27
7
"__id__": 27
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 27
8
"__id__": 27
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -11205,7 +11173,7 @@
...
@@ -11205,7 +11173,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 27
6
"__id__": 27
5
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -11222,7 +11190,7 @@
...
@@ -11222,7 +11190,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -11233,7 +11201,7 @@
...
@@ -11233,7 +11201,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -11246,7 +11214,7 @@
...
@@ -11246,7 +11214,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 24
3
"__id__": 24
2
},
},
"_enabled": true,
"_enabled": true,
"_id": "d7wN6OoxNMurVw8/98828K"
"_id": "d7wN6OoxNMurVw8/98828K"
...
@@ -11254,7 +11222,7 @@
...
@@ -11254,7 +11222,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 24
3
"__id__": 24
2
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -11318,7 +11286,7 @@
...
@@ -11318,7 +11286,7 @@
"__id__": 84
"__id__": 84
},
},
"layout_op": {
"layout_op": {
"__id__": 9
2
"__id__": 9
1
},
},
"item": {
"item": {
"__id__": 31
"__id__": 31
...
...
assets/hy14_pipei/scene/hy14_pipei.ts
View file @
7e47d40f
...
@@ -86,8 +86,14 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
...
@@ -86,8 +86,14 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
this
.
cardBgs
=
[];
this
.
cardBgs
=
[];
//自动创建卡片
//自动创建卡片
let
itembg
=
cc
.
find
(
"
itembg
"
,
this
.
node
);
let
itembg
=
this
.
layout_sort
;
pg
.
view
.
setNetImg
(
itembg
,
Game
.
getIns
().
image
,
{
w
:
imageZize
.
width
,
h
:
imageZize
.
height
});
// let itembg = cc.find("itembg", this.node);
pg
.
view
.
setNetImg
(
itembg
,
Game
.
getIns
().
image
,
{
w
:
imageZize
.
width
,
h
:
imageZize
.
height
},
false
).
then
((
data
:
any
)
=>
{
Game
.
getIns
().
changepoints
(
data
);
itembg
.
width
=
imageZize
.
width
;
itembg
.
height
=
imageZize
.
height
;
this
.
creaetPosPic
();
});
this
.
createCrads
();
this
.
createCrads
();
}
}
...
@@ -135,21 +141,7 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
...
@@ -135,21 +141,7 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
createCrads
()
{
createCrads
()
{
this
.
layout_sort
.
removeAllChildren
();
this
.
layout_sort
.
removeAllChildren
();
let
pos
=
Game
.
getIns
().
pointsArr
;
pos
.
forEach
((
li
,
idx
)
=>
{
let
item
=
cc
.
instantiate
(
this
.
item
);
this
.
layout_sort
.
addChild
(
item
);
item
.
x
=
li
.
x
;
item
.
y
=
li
.
y
;
item
.
active
=
true
;
// let desc = cc.find("desc", item);
// desc.getComponent(cc.Label).string = li.text;
this
.
cardBgs
.
push
(
item
);
let
data
=
{
text
:
li
.
text
};
item
.
data
=
data
;
item
.
width
=
li
.
width
;
item
.
height
=
li
.
height
;
})
let
op
=
Game
.
getIns
().
opdata
;
let
op
=
Game
.
getIns
().
opdata
;
op
.
forEach
((
dt
,
idx
)
=>
{
op
.
forEach
((
dt
,
idx
)
=>
{
...
@@ -177,6 +169,23 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
...
@@ -177,6 +169,23 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
})
})
cc
.
find
(
"
ScrollView
"
,
this
.
node
).
getComponent
(
cc
.
ScrollView
).
enabled
=
op
.
length
>
4
;
cc
.
find
(
"
ScrollView
"
,
this
.
node
).
getComponent
(
cc
.
ScrollView
).
enabled
=
op
.
length
>
4
;
}
}
private
creaetPosPic
()
{
let
pos
=
Game
.
getIns
().
pointsArr
;
pos
.
forEach
((
li
,
idx
)
=>
{
let
item
=
cc
.
instantiate
(
this
.
item
);
this
.
layout_sort
.
addChild
(
item
);
item
.
x
=
li
.
x
;
item
.
y
=
li
.
y
;
item
.
active
=
true
;
// let desc = cc.find("desc", item);
// desc.getComponent(cc.Label).string = li.text;
this
.
cardBgs
.
push
(
item
);
let
data
=
{
text
:
li
.
text
};
item
.
data
=
data
;
item
.
width
=
li
.
width
;
item
.
height
=
li
.
height
;
})
}
private
stSction
(
node
)
{
private
stSction
(
node
)
{
cc
.
tween
(
node
).
repeatForever
(
cc
.
tween
().
by
(
1
,
{
y
:
10
}).
by
(
1
,
{
y
:
-
10
})).
start
();
cc
.
tween
(
node
).
repeatForever
(
cc
.
tween
().
by
(
1
,
{
y
:
10
}).
by
(
1
,
{
y
:
-
10
})).
start
();
...
...
assets/hy14_pipei/scene/pg_hy14_pipei.ts
View file @
7e47d40f
...
@@ -262,8 +262,8 @@ let pg = {
...
@@ -262,8 +262,8 @@ let pg = {
let
scaleX
=
w
/
nw
;
let
scaleX
=
w
/
nw
;
let
scaleY
=
h
/
nh
;
let
scaleY
=
h
/
nh
;
let
scale
=
scaleX
<=
scaleY
?
scaleX
:
scaleY
;
let
scale
=
scaleX
<=
scaleY
?
scaleX
:
scaleY
;
node
.
width
=
nw
*
scale
;
node
.
width
=
nw
*
scale
X
;
node
.
height
=
nh
*
scale
;
node
.
height
=
nh
*
scale
Y
;
}
}
node
.
active
=
true
;
node
.
active
=
true
;
resolve
({
w
:
nw
,
h
:
nh
});
resolve
({
w
:
nw
,
h
:
nh
});
...
...
assets/hy14_pipei/script/defaultData_hy14_pipei.ts
View file @
7e47d40f
export
const
defaultData
=
{
export
const
defaultData
=
{
"
points
"
:
""
,
"
points
"
:
""
,
"
questionScore
"
:
0
,
"
questionScore
"
:
0
,
"
questions
"
:
[],
"
questions
"
:
[],
"
bgItem
"
:
{
"
bgItem
"
:
{
"
url
"
:
"
http://staging-teach.cdn.ireadabc.com/933163fae966edff0633a0bb97e5c5bc.jpg
"
,
"
url
"
:
"
http://staging-teach.cdn.ireadabc.com/bf9f3958a388f3e10e79f50ab786f5ef.png
"
,
"
rect
"
:
{
"
x
"
:
0
,
"
y
"
:
42.52
,
"
width
"
:
902
,
"
height
"
:
424.95
}
},
"
hotZoneItemArr
"
:
[
{
"
id
"
:
"
1689504307224
"
,
"
index
"
:
0
,
"
text
"
:
"
the blue and green face
"
,
"
itemType
"
:
"
text
"
,
"
fontScale
"
:
0.7046875
,
"
imgScale
"
:
1
,
"
imgSizeW
"
:
0
,
"
imgSizeH
"
:
0
,
"
mapScale
"
:
0.7046875
,
"
dragDot
"
:
{
"
x
"
:
451
,
"
y
"
:
255.00000000000003
},
"
gIdx
"
:
"
0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
ahronbd-1
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
rect
"
:
{
"
width
"
:
390.95
,
"
height
"
:
35.23
,
"
x
"
:
56.53
,
"
y
"
:
44.86
}
},
{
"
id
"
:
"
1689504345672
"
,
"
index
"
:
1
,
"
text
"
:
"
the gold face
"
,
"
itemType
"
:
"
text
"
,
"
fontScale
"
:
0.7046875
,
"
imgScale
"
:
1
,
"
imgSizeW
"
:
0
,
"
imgSizeH
"
:
0
,
"
mapScale
"
:
0.7046875
,
"
dragDot
"
:
{
"
x
"
:
451
,
"
y
"
:
255.00000000000003
},
"
gIdx
"
:
"
0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
ahronbd-1
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
0
,
"
width
"
:
217.16
,
"
y
"
:
85.66
,
"
height
"
:
35.23
,
"
width
"
:
90
2
,
"
x
"
:
118.4
2
,
"
height
"
:
469.69
"
y
"
:
193.86
}
}
},
},
"
hotZoneItemArr
"
:
[
{
{
"
id
"
:
"
1689504365755
"
,
"
id
"
:
"
1687750651003
"
,
"
index
"
:
2
,
"
index
"
:
0
,
"
text
"
:
"
the black face
"
,
"
text
"
:
"
high collar
"
,
"
itemType
"
:
"
text
"
,
"
audio_url
"
:
"
http://staging-teach.cdn.ireadabc.com/81c8ea51c42136db0fd61e78c38de7c9_l.mp3
"
,
"
fontScale
"
:
0.7046875
,
"
itemType
"
:
"
text
"
,
"
imgScale
"
:
1
,
"
fontScale
"
:
0.7046875
,
"
imgSizeW
"
:
0
,
"
imgScale
"
:
1
,
"
imgSizeH
"
:
0
,
"
imgSizeW
"
:
0
,
"
mapScale
"
:
0.7046875
,
"
imgSizeH
"
:
0
,
"
dragDot
"
:
{
"
mapScale
"
:
0.7046875
,
"
x
"
:
451
,
"
dragDot
"
:
{
"
y
"
:
255.00000000000003
"
x
"
:
451
,
"
y
"
:
297
},
"
gIdx
"
:
"
0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
ahronbd-1
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
rect
"
:
{
"
width
"
:
169.77
,
"
height
"
:
35.23
,
"
x
"
:
36.11
,
"
y
"
:
65.19
}
},
},
{
"
gIdx
"
:
"
0
"
,
"
id
"
:
"
1687750664688
"
,
"
fontSize
"
:
50
,
"
index
"
:
1
,
"
fontName
"
:
"
ahronbd-1
"
,
"
text
"
:
"
low collar
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
audio_url
"
:
"
http://staging-teach.cdn.ireadabc.com/9de7c90341afc24bcd2a311f4d554bdc_l.mp3
"
,
"
rect
"
:
{
"
itemType
"
:
"
text
"
,
"
width
"
:
233.29
,
"
fontScale
"
:
0.7046875
,
"
height
"
:
35.23
,
"
imgScale
"
:
1
,
"
x
"
:
116.35
,
"
imgSizeW
"
:
0
,
"
y
"
:
341.86
"
imgSizeH
"
:
0
,
}
"
mapScale
"
:
0.7046875
,
},
"
dragDot
"
:
{
{
"
x
"
:
451
,
"
id
"
:
"
1689504375545
"
,
"
y
"
:
297
"
index
"
:
3
,
},
"
text
"
:
"
the red face
"
,
"
gIdx
"
:
"
0
"
,
"
itemType
"
:
"
text
"
,
"
fontSize
"
:
50
,
"
fontScale
"
:
0.7046875
,
"
fontName
"
:
"
ahronbd-1
"
,
"
imgScale
"
:
1
,
"
ontColor
"
:
"
#8f3758
"
,
"
imgSizeW
"
:
0
,
"
rect
"
:
{
"
imgSizeH
"
:
0
,
"
width
"
:
156.28
,
"
mapScale
"
:
0.7046875
,
"
height
"
:
35.23
,
"
dragDot
"
:
{
"
x
"
:
467.86
,
"
x
"
:
451
,
"
y
"
:
100.19
"
y
"
:
255.00000000000003
}
},
},
{
"
gIdx
"
:
"
0
"
,
"
id
"
:
"
1687750699335
"
,
"
fontSize
"
:
50
,
"
index
"
:
2
,
"
fontName
"
:
"
ahronbd-1
"
,
"
text
"
:
"
long sleeve
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
audio_url
"
:
"
http://staging-teach.cdn.ireadabc.com/7474d2ea3660833373b9d3dfb2ad9d07_l.mp3
"
,
"
rect
"
:
{
"
itemType
"
:
"
text
"
,
"
width
"
:
199.82
,
"
fontScale
"
:
0.7046875
,
"
height
"
:
35.23
,
"
imgScale
"
:
1
,
"
x
"
:
569.09
,
"
imgSizeW
"
:
0
,
"
y
"
:
81.86
"
imgSizeH
"
:
0
,
}
"
mapScale
"
:
0.7046875
,
},
"
dragDot
"
:
{
{
"
x
"
:
451
,
"
id
"
:
"
1689504389861
"
,
"
y
"
:
297
"
index
"
:
4
,
},
"
text
"
:
"
the white face
"
,
"
gIdx
"
:
"
0
"
,
"
itemType
"
:
"
text
"
,
"
fontSize
"
:
50
,
"
fontScale
"
:
0.7046875
,
"
fontName
"
:
"
ahronbd-1
"
,
"
imgScale
"
:
1
,
"
ontColor
"
:
"
#8f3758
"
,
"
imgSizeW
"
:
0
,
"
rect
"
:
{
"
imgSizeH
"
:
0
,
"
width
"
:
182.88
,
"
mapScale
"
:
0.7046875
,
"
height
"
:
35.23
,
"
dragDot
"
:
{
"
x
"
:
13.56
,
"
x
"
:
451
,
"
y
"
:
193.19
"
y
"
:
255.00000000000003
}
},
},
{
"
gIdx
"
:
"
0
"
,
"
id
"
:
"
1687750716437
"
,
"
fontSize
"
:
50
,
"
index
"
:
3
,
"
fontName
"
:
"
ahronbd-1
"
,
"
text
"
:
"
short sleeve
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
audio_url
"
:
"
http://staging-teach.cdn.ireadabc.com/172fad3743476ac9c668eb8a82d5eca1_l.mp3
"
,
"
rect
"
:
{
"
itemType
"
:
"
text
"
,
"
width
"
:
234.03
,
"
fontScale
"
:
0.7046875
,
"
height
"
:
35.23
,
"
imgScale
"
:
1
,
"
x
"
:
549.98
,
"
imgSizeW
"
:
0
,
"
y
"
:
301.86
"
imgSizeH
"
:
0
,
"
mapScale
"
:
0.7046875
,
"
dragDot
"
:
{
"
x
"
:
451
,
"
y
"
:
297
},
"
gIdx
"
:
"
0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
ahronbd-1
"
,
"
ontColor
"
:
"
#8f3758
"
,
"
rect
"
:
{
"
width
"
:
196.83
,
"
height
"
:
35.23
,
"
x
"
:
462.59
,
"
y
"
:
186.19
}
}
}
],
}
"
questionText
"
:
""
,
],
"
npcTitle
"
:
"
Mind Map
"
,
"
npcTitle
"
:
"
HY14
"
,
"
npcAudio
"
:
"
http://staging-teach.cdn.ireadabc.com/840c5d814e82b8dbc869d7523d592869_l.mp3
"
,
"
npcAudio
"
:
""
,
"
npcAudioName
"
:
"
HY14位置匹配-将单词拖动到正确的位置.mp3
"
// "npcAudio": "http://staging-teach.cdn.ireadabc.com/840c5d814e82b8dbc869d7523d592869_l.mp3",
}
"
npcAudioName
"
:
"
HY14位置匹配-将单词拖动到正确的位置.mp3
"
,
"
questionText
"
:
""
}
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