Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
ngt7_fish
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
ngt7_fish
Commits
3faa109b
Commit
3faa109b
authored
Nov 02, 2022
by
Tt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交
parent
a871575a
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
566 additions
and
384 deletions
+566
-384
fish.mp3
assets/ngt7_fish/audios/fish.mp3
+0
-0
fish.mp3.meta
assets/ngt7_fish/audios/fish.mp3.meta
+7
-0
cloundmove.ts
assets/ngt7_fish/scene/game/cloundmove.ts
+2
-2
netscale.ts
assets/ngt7_fish/scene/game/netscale.ts
+9
-8
ngt7_fish.fire
assets/ngt7_fish/scene/ngt7_fish.fire
+443
-353
ngt7_fish.ts
assets/ngt7_fish/scene/ngt7_fish.ts
+40
-21
ani.meta
assets/ngt7_fish/textures/public/ani.meta
+12
-0
结束动画2_ske.json
assets/ngt7_fish/textures/public/ani/结束动画2_ske.json
+2
-0
结束动画2_ske.json.meta
assets/ngt7_fish/textures/public/ani/结束动画2_ske.json.meta
+6
-0
结束动画2_tex.json
assets/ngt7_fish/textures/public/ani/结束动画2_tex.json
+2
-0
结束动画2_tex.json.meta
assets/ngt7_fish/textures/public/ani/结束动画2_tex.json.meta
+6
-0
结束动画2_tex.png
assets/ngt7_fish/textures/public/ani/结束动画2_tex.png
+0
-0
结束动画2_tex.png.meta
assets/ngt7_fish/textures/public/ani/结束动画2_tex.png.meta
+37
-0
No files found.
assets/ngt7_fish/audios/fish.mp3
0 → 100644
View file @
3faa109b
File added
assets/ngt7_fish/audios/fish.mp3.meta
0 → 100644
View file @
3faa109b
{
"ver": "2.0.1",
"uuid": "5333a02b-152f-4b7a-a95d-ed4ebbf120b3",
"downloadMode": 0,
"duration": 0.470204,
"subMetas": {}
}
\ No newline at end of file
assets/ngt7_fish/scene/game/cloundmove.ts
View file @
3faa109b
...
@@ -18,9 +18,9 @@ export default class cloundmove extends cc.Component {
...
@@ -18,9 +18,9 @@ export default class cloundmove extends cc.Component {
onLoad
()
{
onLoad
()
{
if
(
this
.
toLeft
)
{
if
(
this
.
toLeft
)
{
cc
.
tween
(
this
.
node
).
by
(
5
00
+
Math
.
random
()
*
100
,
{
x
:
-
2000
}).
start
();
cc
.
tween
(
this
.
node
).
by
(
3
00
+
Math
.
random
()
*
100
,
{
x
:
-
2000
}).
start
();
}
else
{
}
else
{
cc
.
tween
(
this
.
node
).
by
(
5
00
+
Math
.
random
()
*
100
,
{
x
:
2000
}).
start
();
cc
.
tween
(
this
.
node
).
by
(
3
00
+
Math
.
random
()
*
100
,
{
x
:
2000
}).
start
();
}
}
}
}
}
}
assets/ngt7_fish/scene/game/netscale.ts
View file @
3faa109b
...
@@ -15,21 +15,22 @@ export default class netscale extends cc.Component {
...
@@ -15,21 +15,22 @@ export default class netscale extends cc.Component {
// LIFE-CYCLE CALLBACKS:
// LIFE-CYCLE CALLBACKS:
onLoad
()
{
onLoad
()
{
let
scale
=
0.05
;
if
(
this
.
firstUp
)
{
if
(
this
.
firstUp
)
{
cc
.
tween
(
this
.
node
).
repeatForever
(
cc
.
tween
(
this
.
node
).
repeatForever
(
cc
.
tween
()
cc
.
tween
()
.
to
(
10
,
{
scale
:
0.97
})
.
to
(
10
,
{
scale
:
1
-
scale
})
.
to
(
10
,
{
scale
:
1
.00
})
.
to
(
10
,
{
scale
:
1
})
.
to
(
10
,
{
scale
:
1
.03
})
.
to
(
10
,
{
scale
:
1
+
scale
})
.
to
(
10
,
{
scale
:
1
.00
})
.
to
(
10
,
{
scale
:
1
})
).
start
();
).
start
();
}
else
{
}
else
{
cc
.
tween
(
this
.
node
).
repeatForever
(
cc
.
tween
(
this
.
node
).
repeatForever
(
cc
.
tween
()
cc
.
tween
()
.
to
(
10
,
{
scale
:
1.03
})
.
to
(
10
,
{
scale
:
1
+
scale
})
.
to
(
10
,
{
scale
:
1.00
})
.
to
(
10
,
{
scale
:
1
})
.
to
(
10
,
{
scale
:
0.97
})
.
to
(
10
,
{
scale
:
1
-
scale
})
.
to
(
10
,
{
scale
:
1.00
})
.
to
(
10
,
{
scale
:
1.00
})
).
start
();
).
start
();
}
}
}
}
...
...
assets/ngt7_fish/scene/ngt7_fish.fire
View file @
3faa109b
...
@@ -74,44 +74,44 @@
...
@@ -74,44 +74,44 @@
{
{
"__id__": 5
"__id__": 5
},
},
{
"__id__": 33
},
{
{
"__id__": 35
"__id__": 35
},
},
{
{
"__id__":
61
"__id__":
37
},
},
{
{
"__id__":
128
"__id__":
63
},
},
{
{
"__id__": 130
"__id__": 130
},
},
{
{
"__id__": 13
6
"__id__": 13
2
},
},
{
{
"__id__": 138
"__id__": 138
},
},
{
{
"__id__": 1
63
"__id__": 1
40
},
},
{
{
"__id__": 182
"__id__": 165
},
{
"__id__": 184
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 19
3
"__id__": 19
5
},
},
{
{
"__id__": 19
4
"__id__": 19
6
},
},
{
{
"__id__": 19
5
"__id__": 19
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -672,6 +672,9 @@
...
@@ -672,6 +672,9 @@
},
},
{
{
"__id__": 31
"__id__": 31
},
{
"__id__": 33
}
}
],
],
"_active": true,
"_active": true,
...
@@ -1534,6 +1537,87 @@
...
@@ -1534,6 +1537,87 @@
"preload": false,
"preload": false,
"_id": "18tvO6xrtAGpYF9P/QETrg"
"_id": "18tvO6xrtAGpYF9P/QETrg"
},
},
{
"__type__": "cc.Node",
"_name": "fish",
"_objFlags": 0,
"_parent": {
"__id__": 12
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 34
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "bexGSq+RtNBrXfbKr0Fv4Y"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 33
},
"_enabled": true,
"_clip": {
"__uuid__": "5333a02b-152f-4b7a-a95d-ed4ebbf120b3"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "8bZViO4xNHKpZ8eFYGOMHz"
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "view",
"_name": "view",
...
@@ -1545,7 +1629,7 @@
...
@@ -1545,7 +1629,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 3
4
"__id__": 3
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1601,7 +1685,7 @@
...
@@ -1601,7 +1685,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
3
"__id__": 3
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1637,34 +1721,34 @@
...
@@ -1637,34 +1721,34 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 3
6
"__id__": 3
8
},
},
{
{
"__id__":
39
"__id__":
41
},
},
{
{
"__id__": 4
2
"__id__": 4
4
},
},
{
{
"__id__": 4
5
"__id__": 4
7
},
},
{
{
"__id__":
48
"__id__":
50
},
},
{
{
"__id__": 5
1
"__id__": 5
3
},
},
{
{
"__id__": 5
4
"__id__": 5
6
},
},
{
{
"__id__": 5
7
"__id__": 5
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 6
0
"__id__": 6
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1720,16 +1804,16 @@
...
@@ -1720,16 +1804,16 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 3
7
"__id__": 3
9
},
},
{
{
"__id__":
38
"__id__":
40
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1785,7 +1869,7 @@
...
@@ -1785,7 +1869,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
6
"__id__": 3
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1817,7 +1901,7 @@
...
@@ -1817,7 +1901,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
6
"__id__": 3
8
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -1844,16 +1928,16 @@
...
@@ -1844,16 +1928,16 @@
"_name": "背景的长河_ske",
"_name": "背景的长河_ske",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 4
0
"__id__": 4
2
},
},
{
{
"__id__": 4
1
"__id__": 4
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1909,7 +1993,7 @@
...
@@ -1909,7 +1993,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
39
"__id__":
41
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1949,7 +2033,7 @@
...
@@ -1949,7 +2033,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
39
"__id__":
41
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -1976,16 +2060,16 @@
...
@@ -1976,16 +2060,16 @@
"_name": "clound_1",
"_name": "clound_1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 4
3
"__id__": 4
5
},
},
{
{
"__id__": 4
4
"__id__": 4
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2041,7 +2125,7 @@
...
@@ -2041,7 +2125,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
2
"__id__": 4
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2073,7 +2157,7 @@
...
@@ -2073,7 +2157,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
2
"__id__": 4
4
},
},
"_enabled": true,
"_enabled": true,
"toLeft": true,
"toLeft": true,
...
@@ -2084,16 +2168,16 @@
...
@@ -2084,16 +2168,16 @@
"_name": "clound_2",
"_name": "clound_2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 4
6
"__id__": 4
8
},
},
{
{
"__id__": 4
7
"__id__": 4
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2149,7 +2233,7 @@
...
@@ -2149,7 +2233,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
5
"__id__": 4
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2181,7 +2265,7 @@
...
@@ -2181,7 +2265,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
5
"__id__": 4
7
},
},
"_enabled": true,
"_enabled": true,
"toLeft": true,
"toLeft": true,
...
@@ -2192,16 +2276,16 @@
...
@@ -2192,16 +2276,16 @@
"_name": "clound_3",
"_name": "clound_3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
49
"__id__":
51
},
},
{
{
"__id__": 5
0
"__id__": 5
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2257,7 +2341,7 @@
...
@@ -2257,7 +2341,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
48
"__id__":
50
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2289,7 +2373,7 @@
...
@@ -2289,7 +2373,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
48
"__id__":
50
},
},
"_enabled": true,
"_enabled": true,
"toLeft": false,
"toLeft": false,
...
@@ -2300,16 +2384,16 @@
...
@@ -2300,16 +2384,16 @@
"_name": "clound_4",
"_name": "clound_4",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 5
2
"__id__": 5
4
},
},
{
{
"__id__": 5
3
"__id__": 5
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2365,7 +2449,7 @@
...
@@ -2365,7 +2449,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
1
"__id__": 5
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2397,7 +2481,7 @@
...
@@ -2397,7 +2481,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
1
"__id__": 5
3
},
},
"_enabled": true,
"_enabled": true,
"toLeft": false,
"toLeft": false,
...
@@ -2408,16 +2492,16 @@
...
@@ -2408,16 +2492,16 @@
"_name": "clound_5",
"_name": "clound_5",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 5
5
"__id__": 5
7
},
},
{
{
"__id__": 5
6
"__id__": 5
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2473,7 +2557,7 @@
...
@@ -2473,7 +2557,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
4
"__id__": 5
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2505,7 +2589,7 @@
...
@@ -2505,7 +2589,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
4
"__id__": 5
6
},
},
"_enabled": true,
"_enabled": true,
"toLeft": true,
"toLeft": true,
...
@@ -2516,16 +2600,16 @@
...
@@ -2516,16 +2600,16 @@
"_name": "clound_6",
"_name": "clound_6",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
5
"__id__": 3
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
58
"__id__":
60
},
},
{
{
"__id__":
59
"__id__":
61
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2581,7 +2665,7 @@
...
@@ -2581,7 +2665,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
7
"__id__": 5
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2613,7 +2697,7 @@
...
@@ -2613,7 +2697,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
7
"__id__": 5
9
},
},
"_enabled": true,
"_enabled": true,
"toLeft": true,
"toLeft": true,
...
@@ -2624,7 +2708,7 @@
...
@@ -2624,7 +2708,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
5
"__id__": 3
7
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -2655,22 +2739,22 @@
...
@@ -2655,22 +2739,22 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 6
2
"__id__": 6
4
},
},
{
{
"__id__": 9
1
"__id__": 9
3
},
},
{
{
"__id__": 9
2
"__id__": 9
4
},
},
{
{
"__id__": 11
0
"__id__": 11
2
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
7
"__id__": 12
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2726,20 +2810,20 @@
...
@@ -2726,20 +2810,20 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
1
"__id__": 6
3
},
},
"_children": [
"_children": [
{
{
"__id__": 6
3
"__id__": 6
5
},
},
{
{
"__id__": 8
5
"__id__": 8
7
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
0
"__id__": 9
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2795,12 +2879,9 @@
...
@@ -2795,12 +2879,9 @@
"_name": "fish",
"_name": "fish",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
2
"__id__": 6
4
},
},
"_children": [
"_children": [
{
"__id__": 64
},
{
{
"__id__": 66
"__id__": 66
},
},
...
@@ -2827,12 +2908,15 @@
...
@@ -2827,12 +2908,15 @@
},
},
{
{
"__id__": 82
"__id__": 82
},
{
"__id__": 84
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
4
"__id__": 8
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2888,13 +2972,13 @@
...
@@ -2888,13 +2972,13 @@
"_name": "fish_1",
"_name": "fish_1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 6
5
"__id__": 6
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2950,7 +3034,7 @@
...
@@ -2950,7 +3034,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
4
"__id__": 6
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2990,13 +3074,13 @@
...
@@ -2990,13 +3074,13 @@
"_name": "fish_2",
"_name": "fish_2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 6
7
"__id__": 6
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3052,7 +3136,7 @@
...
@@ -3052,7 +3136,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
6
"__id__": 6
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3092,13 +3176,13 @@
...
@@ -3092,13 +3176,13 @@
"_name": "fish_3",
"_name": "fish_3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
69
"__id__":
71
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3154,7 +3238,7 @@
...
@@ -3154,7 +3238,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
68
"__id__":
70
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3194,13 +3278,13 @@
...
@@ -3194,13 +3278,13 @@
"_name": "fish_4",
"_name": "fish_4",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 7
1
"__id__": 7
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3256,7 +3340,7 @@
...
@@ -3256,7 +3340,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
0
"__id__": 7
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3296,13 +3380,13 @@
...
@@ -3296,13 +3380,13 @@
"_name": "fish_5",
"_name": "fish_5",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 7
3
"__id__": 7
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3358,7 +3442,7 @@
...
@@ -3358,7 +3442,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
2
"__id__": 7
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3398,13 +3482,13 @@
...
@@ -3398,13 +3482,13 @@
"_name": "fish_6",
"_name": "fish_6",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 7
5
"__id__": 7
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3460,7 +3544,7 @@
...
@@ -3460,7 +3544,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
4
"__id__": 7
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3500,13 +3584,13 @@
...
@@ -3500,13 +3584,13 @@
"_name": "fish_7",
"_name": "fish_7",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 7
7
"__id__": 7
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3562,7 +3646,7 @@
...
@@ -3562,7 +3646,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
6
"__id__": 7
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3602,13 +3686,13 @@
...
@@ -3602,13 +3686,13 @@
"_name": "fish_8",
"_name": "fish_8",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
79
"__id__":
81
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3664,7 +3748,7 @@
...
@@ -3664,7 +3748,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
78
"__id__":
80
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3704,13 +3788,13 @@
...
@@ -3704,13 +3788,13 @@
"_name": "fish_9",
"_name": "fish_9",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 8
1
"__id__": 8
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3766,7 +3850,7 @@
...
@@ -3766,7 +3850,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
0
"__id__": 8
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3806,13 +3890,13 @@
...
@@ -3806,13 +3890,13 @@
"_name": "fish_10",
"_name": "fish_10",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
3
"__id__": 6
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 8
3
"__id__": 8
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3868,7 +3952,7 @@
...
@@ -3868,7 +3952,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
2
"__id__": 8
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3908,7 +3992,7 @@
...
@@ -3908,7 +3992,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
3
"__id__": 6
5
},
},
"_enabled": false,
"_enabled": false,
"_materials": [
"_materials": [
...
@@ -3940,14 +4024,14 @@
...
@@ -3940,14 +4024,14 @@
"_name": "layout_text",
"_name": "layout_text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
2
"__id__": 6
4
},
},
"_children": [
"_children": [
{
{
"__id__": 8
6
"__id__": 8
8
},
},
{
{
"__id__":
88
"__id__":
90
}
}
],
],
"_active": true,
"_active": true,
...
@@ -4005,13 +4089,13 @@
...
@@ -4005,13 +4089,13 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 8
5
"__id__": 8
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
7
"__id__": 8
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4067,7 +4151,7 @@
...
@@ -4067,7 +4151,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
6
"__id__": 8
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4099,13 +4183,13 @@
...
@@ -4099,13 +4183,13 @@
"_name": "text",
"_name": "text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 8
5
"__id__": 8
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
89
"__id__":
91
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4161,7 +4245,7 @@
...
@@ -4161,7 +4245,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
88
"__id__":
90
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4196,7 +4280,7 @@
...
@@ -4196,7 +4280,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
2
"__id__": 6
4
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -4257,7 +4341,7 @@
...
@@ -4257,7 +4341,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 6
2
"__id__": 6
4
},
},
"_id": "a1Avh4LwBKJKeCLMrv0hnM"
"_id": "a1Avh4LwBKJKeCLMrv0hnM"
},
},
...
@@ -4266,7 +4350,7 @@
...
@@ -4266,7 +4350,7 @@
"_name": "layout_fish",
"_name": "layout_fish",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
1
"__id__": 6
3
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
...
@@ -4324,21 +4408,25 @@
...
@@ -4324,21 +4408,25 @@
"_name": "boat_left",
"_name": "boat_left",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
1
"__id__": 6
3
},
},
"_children": [
"_children": [
{
{
"__id__": 9
3
"__id__": 9
5
},
},
{
{
"__id__": 9
6
"__id__": 9
8
},
},
{
{
"__id__": 10
7
"__id__": 10
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [
{
"__id__": 111
}
],
"_prefab": null,
"_prefab": null,
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4392,16 +4480,16 @@
...
@@ -4392,16 +4480,16 @@
"_name": "net",
"_name": "net",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
4
"__id__": 9
6
},
},
{
{
"__id__": 9
5
"__id__": 9
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4457,7 +4545,7 @@
...
@@ -4457,7 +4545,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
3
"__id__": 9
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4489,7 +4577,7 @@
...
@@ -4489,7 +4577,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
3
"__id__": 9
5
},
},
"_enabled": true,
"_enabled": true,
"firstUp": true,
"firstUp": true,
...
@@ -4500,23 +4588,20 @@
...
@@ -4500,23 +4588,20 @@
"_name": "boat",
"_name": "boat",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
4
},
},
"_children": [
"_children": [
{
{
"__id__": 9
7
"__id__": 9
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 104
"__id__": 106
},
{
"__id__": 105
},
},
{
{
"__id__": 10
6
"__id__": 10
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4572,17 +4657,17 @@
...
@@ -4572,17 +4657,17 @@
"_name": "voice",
"_name": "voice",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
6
"__id__": 9
8
},
},
"_children": [
"_children": [
{
"__id__": 98
},
{
{
"__id__": 100
"__id__": 100
},
},
{
{
"__id__": 102
"__id__": 102
},
{
"__id__": 104
}
}
],
],
"_active": false,
"_active": false,
...
@@ -4640,13 +4725,13 @@
...
@@ -4640,13 +4725,13 @@
"_name": "v1",
"_name": "v1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
7
"__id__": 9
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
99
"__id__":
101
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4702,7 +4787,7 @@
...
@@ -4702,7 +4787,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
98
"__id__":
100
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4734,13 +4819,13 @@
...
@@ -4734,13 +4819,13 @@
"_name": "v2",
"_name": "v2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
7
"__id__": 9
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
1
"__id__": 10
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4796,7 +4881,7 @@
...
@@ -4796,7 +4881,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
0
"__id__": 10
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4828,13 +4913,13 @@
...
@@ -4828,13 +4913,13 @@
"_name": "v3",
"_name": "v3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
7
"__id__": 9
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
3
"__id__": 10
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4890,7 +4975,7 @@
...
@@ -4890,7 +4975,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
2
"__id__": 10
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4922,7 +5007,7 @@
...
@@ -4922,7 +5007,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
6
"__id__": 9
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4957,23 +5042,12 @@
...
@@ -4957,23 +5042,12 @@
"_N$enableBatch": false,
"_N$enableBatch": false,
"_id": "5fq4xKqYNBEbv7MY1sGAfS"
"_id": "5fq4xKqYNBEbv7MY1sGAfS"
},
},
{
"__type__": "4937eUd+rxKz6DH1tW86Giw",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 96
},
"_enabled": true,
"firstUp": true,
"_id": "bf7MI9pkZOybiez2lni1Rc"
},
{
{
"__type__": "cc.Button",
"__type__": "cc.Button",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
6
"__id__": 9
8
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -5034,7 +5108,7 @@
...
@@ -5034,7 +5108,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 9
6
"__id__": 9
8
},
},
"_id": "22jYvkMwtPYqNNI2jFKpz8"
"_id": "22jYvkMwtPYqNNI2jFKpz8"
},
},
...
@@ -5043,16 +5117,16 @@
...
@@ -5043,16 +5117,16 @@
"_name": "text",
"_name": "text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
2
"__id__": 9
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
8
"__id__": 10
9
},
},
{
{
"__id__": 1
09
"__id__": 1
10
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5066,8 +5140,8 @@
...
@@ -5066,8 +5140,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width":
56.36
,
"width":
60.31
,
"height": 11
1
.1
"height": 11
3
.1
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -5108,7 +5182,7 @@
...
@@ -5108,7 +5182,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
7
"__id__": 10
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5118,8 +5192,8 @@
...
@@ -5118,8 +5192,8 @@
],
],
"_srcBlendFactor": 770,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_dstBlendFactor": 771,
"_string": "
a
",
"_string": "
d
",
"_N$string": "
a
",
"_N$string": "
d
",
"_fontSize": 85,
"_fontSize": 85,
"_lineHeight": 85,
"_lineHeight": 85,
"_enableWrapText": true,
"_enableWrapText": true,
...
@@ -5129,7 +5203,7 @@
...
@@ -5129,7 +5203,7 @@
"_isSystemFontUsed": false,
"_isSystemFontUsed": false,
"_spacingX": 0,
"_spacingX": 0,
"_batchAsBitmap": false,
"_batchAsBitmap": false,
"_styleFlags":
0
,
"_styleFlags":
1
,
"_underlineHeight": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$verticalAlign": 1,
...
@@ -5143,7 +5217,7 @@
...
@@ -5143,7 +5217,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
7
"__id__": 10
8
},
},
"_enabled": true,
"_enabled": true,
"_color": {
"_color": {
...
@@ -5153,29 +5227,44 @@
...
@@ -5153,29 +5227,44 @@
"b": 255,
"b": 255,
"a": 255
"a": 255
},
},
"_width":
2
,
"_width":
3
,
"_id": "c5nRbhxOpHX48eAq7TrYmP"
"_id": "c5nRbhxOpHX48eAq7TrYmP"
},
},
{
"__type__": "4937eUd+rxKz6DH1tW86Giw",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 94
},
"_enabled": true,
"firstUp": true,
"_id": "f48qRx9pRPwaku3a1Z0m91"
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "boat_right",
"_name": "boat_right",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
1
"__id__": 6
3
},
},
"_children": [
"_children": [
{
{
"__id__": 11
1
"__id__": 11
3
},
},
{
{
"__id__": 11
4
"__id__": 11
6
},
},
{
{
"__id__": 12
4
"__id__": 12
5
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [
{
"__id__": 128
}
],
"_prefab": null,
"_prefab": null,
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5229,16 +5318,16 @@
...
@@ -5229,16 +5318,16 @@
"_name": "net",
"_name": "net",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
0
"__id__": 11
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
2
"__id__": 11
4
},
},
{
{
"__id__": 11
3
"__id__": 11
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5294,7 +5383,7 @@
...
@@ -5294,7 +5383,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
1
"__id__": 11
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5326,7 +5415,7 @@
...
@@ -5326,7 +5415,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
1
"__id__": 11
3
},
},
"_enabled": true,
"_enabled": true,
"firstUp": false,
"firstUp": false,
...
@@ -5337,20 +5426,17 @@
...
@@ -5337,20 +5426,17 @@
"_name": "boat",
"_name": "boat",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
0
"__id__": 11
2
},
},
"_children": [
"_children": [
{
{
"__id__": 11
5
"__id__": 11
7
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 122
"__id__": 124
},
{
"__id__": 123
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5406,17 +5492,17 @@
...
@@ -5406,17 +5492,17 @@
"_name": "voice",
"_name": "voice",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
4
"__id__": 11
6
},
},
"_children": [
"_children": [
{
"__id__": 116
},
{
{
"__id__": 118
"__id__": 118
},
},
{
{
"__id__": 120
"__id__": 120
},
{
"__id__": 122
}
}
],
],
"_active": false,
"_active": false,
...
@@ -5474,13 +5560,13 @@
...
@@ -5474,13 +5560,13 @@
"_name": "v1",
"_name": "v1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
5
"__id__": 11
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
7
"__id__": 11
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5536,7 +5622,7 @@
...
@@ -5536,7 +5622,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
6
"__id__": 11
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5568,13 +5654,13 @@
...
@@ -5568,13 +5654,13 @@
"_name": "v2",
"_name": "v2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
5
"__id__": 11
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
19
"__id__": 1
21
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5630,7 +5716,7 @@
...
@@ -5630,7 +5716,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
18
"__id__": 1
20
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5662,13 +5748,13 @@
...
@@ -5662,13 +5748,13 @@
"_name": "v3",
"_name": "v3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
5
"__id__": 11
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
1
"__id__": 12
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5724,7 +5810,7 @@
...
@@ -5724,7 +5810,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
0
"__id__": 12
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5756,7 +5842,7 @@
...
@@ -5756,7 +5842,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
4
"__id__": 11
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5791,32 +5877,21 @@
...
@@ -5791,32 +5877,21 @@
"_N$enableBatch": false,
"_N$enableBatch": false,
"_id": "c1CERwS0NLY4OaFVuqtQ29"
"_id": "c1CERwS0NLY4OaFVuqtQ29"
},
},
{
"__type__": "4937eUd+rxKz6DH1tW86Giw",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 114
},
"_enabled": true,
"firstUp": false,
"_id": "b8FAi+qhxENrUThXcQ8XU6"
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "text",
"_name": "text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
0
"__id__": 11
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
5
"__id__": 12
6
},
},
{
{
"__id__": 12
6
"__id__": 12
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5830,8 +5905,8 @@
...
@@ -5830,8 +5905,8 @@
},
},
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width":
56.36
,
"width":
60.31
,
"height": 11
1
.1
"height": 11
3
.1
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -5872,7 +5947,7 @@
...
@@ -5872,7 +5947,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
4
"__id__": 12
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5882,8 +5957,8 @@
...
@@ -5882,8 +5957,8 @@
],
],
"_srcBlendFactor": 770,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_dstBlendFactor": 771,
"_string": "
a
",
"_string": "
d
",
"_N$string": "
a
",
"_N$string": "
d
",
"_fontSize": 85,
"_fontSize": 85,
"_lineHeight": 85,
"_lineHeight": 85,
"_enableWrapText": true,
"_enableWrapText": true,
...
@@ -5893,7 +5968,7 @@
...
@@ -5893,7 +5968,7 @@
"_isSystemFontUsed": false,
"_isSystemFontUsed": false,
"_spacingX": 0,
"_spacingX": 0,
"_batchAsBitmap": false,
"_batchAsBitmap": false,
"_styleFlags":
0
,
"_styleFlags":
1
,
"_underlineHeight": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$verticalAlign": 1,
...
@@ -5907,7 +5982,7 @@
...
@@ -5907,7 +5982,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
4
"__id__": 12
5
},
},
"_enabled": true,
"_enabled": true,
"_color": {
"_color": {
...
@@ -5917,15 +5992,26 @@
...
@@ -5917,15 +5992,26 @@
"b": 255,
"b": 255,
"a": 255
"a": 255
},
},
"_width":
2
,
"_width":
3
,
"_id": "b7Q6RcacJHWZZ4dQ5k5qe+"
"_id": "b7Q6RcacJHWZZ4dQ5k5qe+"
},
},
{
"__type__": "4937eUd+rxKz6DH1tW86Giw",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 112
},
"_enabled": true,
"firstUp": false,
"_id": "aaKwAN4y5L67Jmt+9kZi7b"
},
{
{
"__type__": "cc.Widget",
"__type__": "cc.Widget",
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
1
"__id__": 6
3
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -5958,7 +6044,7 @@
...
@@ -5958,7 +6044,7 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
29
"__id__": 1
31
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6014,7 +6100,7 @@
...
@@ -6014,7 +6100,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
28
"__id__": 1
30
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -6045,16 +6131,16 @@
...
@@ -6045,16 +6131,16 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 13
1
"__id__": 13
3
},
},
{
{
"__id__": 13
3
"__id__": 13
5
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 13
5
"__id__": 13
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6110,13 +6196,13 @@
...
@@ -6110,13 +6196,13 @@
"_name": "touch",
"_name": "touch",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 13
0
"__id__": 13
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
2
"__id__": 13
4
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6172,7 +6258,7 @@
...
@@ -6172,7 +6258,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
1
"__id__": 13
3
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -6240,13 +6326,13 @@
...
@@ -6240,13 +6326,13 @@
"_name": "label",
"_name": "label",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 13
0
"__id__": 13
2
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
4
"__id__": 13
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6302,7 +6388,7 @@
...
@@ -6302,7 +6388,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
3
"__id__": 13
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6335,7 +6421,7 @@
...
@@ -6335,7 +6421,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
0
"__id__": 13
2
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6373,7 +6459,7 @@
...
@@ -6373,7 +6459,7 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 13
7
"__id__": 13
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -6429,7 +6515,7 @@
...
@@ -6429,7 +6515,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 13
6
"__id__": 13
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6465,23 +6551,23 @@
...
@@ -6465,23 +6551,23 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 1
39
"__id__": 1
41
},
},
{
{
"__id__": 14
3
"__id__": 14
5
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 16
0
"__id__": 16
2
},
},
{
{
"__id__": 16
1
"__id__": 16
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 16
2
"__id__": 16
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6535,20 +6621,20 @@
...
@@ -6535,20 +6621,20 @@
"_name": "label_title",
"_name": "label_title",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
38
"__id__": 1
40
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 14
0
"__id__": 14
2
},
},
{
{
"__id__": 14
1
"__id__": 14
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 14
2
"__id__": 14
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6602,7 +6688,7 @@
...
@@ -6602,7 +6688,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
39
"__id__": 1
41
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6635,7 +6721,7 @@
...
@@ -6635,7 +6721,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
39
"__id__": 1
41
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -6660,7 +6746,7 @@
...
@@ -6660,7 +6746,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -6673,21 +6759,21 @@
...
@@ -6673,21 +6759,21 @@
"_name": "layout_mouse",
"_name": "layout_mouse",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
38
"__id__": 1
40
},
},
"_children": [
"_children": [
{
{
"__id__": 14
4
"__id__": 14
6
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
58
"__id__": 1
60
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
59
"__id__": 1
61
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6741,26 +6827,26 @@
...
@@ -6741,26 +6827,26 @@
"_name": "img",
"_name": "img",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
3
"__id__": 14
5
},
},
"_children": [
"_children": [
{
{
"__id__": 14
5
"__id__": 14
7
},
},
{
{
"__id__": 1
48
"__id__": 1
50
},
},
{
{
"__id__": 15
1
"__id__": 15
3
},
},
{
{
"__id__": 15
4
"__id__": 15
6
}
}
],
],
"_active": false,
"_active": false,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 15
7
"__id__": 15
9
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6814,17 +6900,17 @@
...
@@ -6814,17 +6900,17 @@
"_name": "star_bg",
"_name": "star_bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
4
"__id__": 14
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 14
6
"__id__": 14
8
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 14
7
"__id__": 14
9
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6878,7 +6964,7 @@
...
@@ -6878,7 +6964,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
5
"__id__": 14
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -6908,7 +6994,7 @@
...
@@ -6908,7 +6994,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -6921,17 +7007,17 @@
...
@@ -6921,17 +7007,17 @@
"_name": "star",
"_name": "star",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
4
"__id__": 14
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
49
"__id__": 1
51
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 15
0
"__id__": 15
2
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -6985,7 +7071,7 @@
...
@@ -6985,7 +7071,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
48
"__id__": 1
50
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7015,7 +7101,7 @@
...
@@ -7015,7 +7101,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -7028,17 +7114,17 @@
...
@@ -7028,17 +7114,17 @@
"_name": "icon_bigstar",
"_name": "icon_bigstar",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
4
"__id__": 14
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 15
2
"__id__": 15
4
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 15
3
"__id__": 15
5
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7092,7 +7178,7 @@
...
@@ -7092,7 +7178,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
1
"__id__": 15
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7122,7 +7208,7 @@
...
@@ -7122,7 +7208,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -7135,17 +7221,17 @@
...
@@ -7135,17 +7221,17 @@
"_name": "star_wrong",
"_name": "star_wrong",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 14
4
"__id__": 14
6
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 15
5
"__id__": 15
7
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 15
6
"__id__": 15
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7199,7 +7285,7 @@
...
@@ -7199,7 +7285,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 15
4
"__id__": 15
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7229,7 +7315,7 @@
...
@@ -7229,7 +7315,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -7240,7 +7326,7 @@
...
@@ -7240,7 +7326,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -7253,7 +7339,7 @@
...
@@ -7253,7 +7339,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 14
3
"__id__": 14
5
},
},
"_enabled": true,
"_enabled": true,
"position": {
"position": {
...
@@ -7272,7 +7358,7 @@
...
@@ -7272,7 +7358,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -7285,7 +7371,7 @@
...
@@ -7285,7 +7371,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
38
"__id__": 1
40
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7317,7 +7403,7 @@
...
@@ -7317,7 +7403,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
38
"__id__": 1
40
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -7342,7 +7428,7 @@
...
@@ -7342,7 +7428,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
38
"__id__": 1
40
},
},
"asset": {
"asset": {
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
"__uuid__": "95e7414b-cea3-4467-bc48-5fd920880222"
...
@@ -7359,26 +7445,26 @@
...
@@ -7359,26 +7445,26 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 16
4
"__id__": 16
6
},
},
{
{
"__id__": 1
69
"__id__": 1
71
},
},
{
{
"__id__": 17
2
"__id__": 17
4
},
},
{
{
"__id__": 17
6
"__id__": 17
8
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 18
0
"__id__": 18
2
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 18
1
"__id__": 18
3
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7432,23 +7518,23 @@
...
@@ -7432,23 +7518,23 @@
"_name": "New Sprite(Splash)",
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 16
3
"__id__": 16
5
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 16
5
"__id__": 16
7
},
},
{
{
"__id__": 16
6
"__id__": 16
8
},
},
{
{
"__id__": 16
7
"__id__": 16
9
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
68
"__id__": 1
70
},
},
"_opacity": 175,
"_opacity": 175,
"_color": {
"_color": {
...
@@ -7502,7 +7588,7 @@
...
@@ -7502,7 +7588,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
4
"__id__": 16
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7534,7 +7620,7 @@
...
@@ -7534,7 +7620,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
4
"__id__": 16
6
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -7561,7 +7647,7 @@
...
@@ -7561,7 +7647,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
4
"__id__": 16
6
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -7627,7 +7713,7 @@
...
@@ -7627,7 +7713,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 16
3
"__id__": 16
5
},
},
"asset": {
"asset": {
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
...
@@ -7640,17 +7726,17 @@
...
@@ -7640,17 +7726,17 @@
"_name": "finish_db",
"_name": "finish_db",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 16
3
"__id__": 16
5
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 17
0
"__id__": 17
2
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 17
1
"__id__": 17
3
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7704,7 +7790,7 @@
...
@@ -7704,7 +7790,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
69
"__id__": 1
71
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7713,22 +7799,26 @@
...
@@ -7713,22 +7799,26 @@
}
}
],
],
"_armatureName": "armatureName",
"_armatureName": "armatureName",
"_animationName": "
newAnimation
",
"_animationName": "",
"_preCacheMode": 0,
"_preCacheMode": 0,
"_cacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"playTimes": 1,
"premultipliedAlpha": false,
"premultipliedAlpha": false,
"_armatureKey": "
22811935-2d29-4691-95e6-cacb5785b3db#6f19b067-5f5b-4e5e-bdff-940bee2dbe18
",
"_armatureKey": "
d088e9e5-3c27-428e-a756-cbbe0c73995f#49d12efd-7a30-40da-a2f4-04d502ea426d
",
"_accTime": 0,
"_accTime": 0,
"_playCount": 0,
"_playCount": 0,
"_frameCache": null,
"_frameCache": null,
"_curFrame": null,
"_curFrame": null,
"_playing": false,
"_playing": false,
"_armatureCache": null,
"_armatureCache": null,
"_N$dragonAsset": null,
"_N$dragonAsset": {
"_N$dragonAtlasAsset": null,
"__uuid__": "d088e9e5-3c27-428e-a756-cbbe0c73995f"
},
"_N$dragonAtlasAsset": {
"__uuid__": "49d12efd-7a30-40da-a2f4-04d502ea426d"
},
"_N$_defaultArmatureIndex": 0,
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex":
1
,
"_N$_animationIndex":
0
,
"_N$_defaultCacheMode": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$debugBones": false,
...
@@ -7738,7 +7828,7 @@
...
@@ -7738,7 +7828,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 16
3
"__id__": 16
5
},
},
"asset": {
"asset": {
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
...
@@ -7751,20 +7841,20 @@
...
@@ -7751,20 +7841,20 @@
"_name": "btn_again",
"_name": "btn_again",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 16
3
"__id__": 16
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 17
3
"__id__": 17
5
},
},
{
{
"__id__": 17
4
"__id__": 17
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 17
5
"__id__": 17
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7818,7 +7908,7 @@
...
@@ -7818,7 +7908,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
2
"__id__": 17
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -7850,7 +7940,7 @@
...
@@ -7850,7 +7940,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
2
"__id__": 17
4
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -7916,7 +8006,7 @@
...
@@ -7916,7 +8006,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 16
3
"__id__": 16
5
},
},
"asset": {
"asset": {
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
...
@@ -7929,20 +8019,20 @@
...
@@ -7929,20 +8019,20 @@
"_name": "btn_next",
"_name": "btn_next",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 16
3
"__id__": 16
5
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 17
7
"__id__": 17
9
},
},
{
{
"__id__": 1
78
"__id__": 1
80
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
79
"__id__": 1
81
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -7996,7 +8086,7 @@
...
@@ -7996,7 +8086,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
6
"__id__": 17
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8028,7 +8118,7 @@
...
@@ -8028,7 +8118,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 17
6
"__id__": 17
8
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -8094,7 +8184,7 @@
...
@@ -8094,7 +8184,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 16
3
"__id__": 16
5
},
},
"asset": {
"asset": {
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
...
@@ -8107,7 +8197,7 @@
...
@@ -8107,7 +8197,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 16
3
"__id__": 16
5
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -8132,7 +8222,7 @@
...
@@ -8132,7 +8222,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 16
3
"__id__": 16
5
},
},
"asset": {
"asset": {
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
"__uuid__": "4e3ba6ba-17d6-4285-beb3-d5f8c90cc1f1"
...
@@ -8149,20 +8239,20 @@
...
@@ -8149,20 +8239,20 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 18
3
"__id__": 18
5
},
},
{
{
"__id__": 1
88
"__id__": 1
90
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 19
1
"__id__": 19
3
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 19
2
"__id__": 19
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8216,23 +8306,23 @@
...
@@ -8216,23 +8306,23 @@
"_name": "New Sprite(Splash)",
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 18
2
"__id__": 18
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 18
4
"__id__": 18
6
},
},
{
{
"__id__": 18
5
"__id__": 18
7
},
},
{
{
"__id__": 18
6
"__id__": 18
8
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 18
7
"__id__": 18
9
},
},
"_opacity": 110,
"_opacity": 110,
"_color": {
"_color": {
...
@@ -8286,7 +8376,7 @@
...
@@ -8286,7 +8376,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
3
"__id__": 18
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8318,7 +8408,7 @@
...
@@ -8318,7 +8408,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
3
"__id__": 18
5
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -8386,7 +8476,7 @@
...
@@ -8386,7 +8476,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
3
"__id__": 18
5
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -8411,7 +8501,7 @@
...
@@ -8411,7 +8501,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 18
2
"__id__": 18
4
},
},
"asset": {
"asset": {
"__uuid__": "424614db-81ce-4c87-bc56-e9bb460b2aaa"
"__uuid__": "424614db-81ce-4c87-bc56-e9bb460b2aaa"
...
@@ -8424,17 +8514,17 @@
...
@@ -8424,17 +8514,17 @@
"_name": "start_ske",
"_name": "start_ske",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 18
2
"__id__": 18
4
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
89
"__id__": 1
91
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 19
0
"__id__": 19
2
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -8488,7 +8578,7 @@
...
@@ -8488,7 +8578,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
88
"__id__": 1
90
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -8522,7 +8612,7 @@
...
@@ -8522,7 +8612,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 18
2
"__id__": 18
4
},
},
"asset": {
"asset": {
"__uuid__": "424614db-81ce-4c87-bc56-e9bb460b2aaa"
"__uuid__": "424614db-81ce-4c87-bc56-e9bb460b2aaa"
...
@@ -8535,7 +8625,7 @@
...
@@ -8535,7 +8625,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 18
2
"__id__": 18
4
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -8560,7 +8650,7 @@
...
@@ -8560,7 +8650,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 18
2
"__id__": 18
4
},
},
"asset": {
"asset": {
"__uuid__": "424614db-81ce-4c87-bc56-e9bb460b2aaa"
"__uuid__": "424614db-81ce-4c87-bc56-e9bb460b2aaa"
...
@@ -8621,10 +8711,10 @@
...
@@ -8621,10 +8711,10 @@
},
},
"_enabled": true,
"_enabled": true,
"layout_start": {
"layout_start": {
"__id__": 18
2
"__id__": 18
4
},
},
"layout_finish": {
"layout_finish": {
"__id__": 16
3
"__id__": 16
5
},
},
"_id": "eaTVUpqahPfZeO9+sUI7RP"
"_id": "eaTVUpqahPfZeO9+sUI7RP"
}
}
...
...
assets/ngt7_fish/scene/ngt7_fish.ts
View file @
3faa109b
...
@@ -193,31 +193,38 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -193,31 +193,38 @@ export default class SceneComponent extends MyCocosSceneComponent {
let
fishNode
=
pg
.
view
.
find
(
item
,
`fish/fish_
${
i
}
`
)
let
fishNode
=
pg
.
view
.
find
(
item
,
`fish/fish_
${
i
}
`
)
fishNode
.
active
=
i
==
count
fishNode
.
active
=
i
==
count
}
}
item
.
active
=
false
;
//左往右
//左往右
if
(
Math
.
random
()
<
0.5
)
{
if
(
Math
.
random
()
<
0.5
)
{
item
.
x
=
-
(
1920
/
2
+
Math
.
random
()
*
200
)
item
.
x
=
-
(
1920
/
2
+
Math
.
random
()
*
200
)
item
.
y
=
-
315
-
Math
.
random
()
*
150
;
item
.
y
=
-
315
-
Math
.
random
()
*
150
;
item
.
scaleX
=
-
1
;
item
.
scaleX
=
-
1
;
text
.
scaleX
=
-
1
;
text
.
scaleX
=
-
1
;
cc
.
tween
(
item
).
repeatForever
(
cc
.
tween
().
by
(
7
+
Math
.
random
()
*
8
,
{
x
:
1920
+
400
}).
call
(()
=>
{
this
.
scheduleOnce
(()
=>
{
item
.
scaleX
=
-
item
.
scaleX
;
item
.
active
=
true
;
text
.
scaleX
=
-
text
.
scaleX
;
cc
.
tween
(
item
).
repeatForever
(
cc
.
tween
().
by
(
21
+
(
data
.
id
%
10
),
{
x
:
1920
+
400
}).
call
(()
=>
{
}).
by
(
7
+
Math
.
random
()
*
8
,
{
x
:
-
1920
-
400
}).
call
(()
=>
{
item
.
scaleX
=
-
item
.
scaleX
;
item
.
scaleX
=
-
item
.
scaleX
;
text
.
scaleX
=
-
text
.
scaleX
;
text
.
scaleX
=
-
text
.
scaleX
;
}).
by
(
7
+
Math
.
random
()
*
8
,
{
x
:
-
1920
-
400
}).
call
(()
=>
{
})).
start
();
item
.
scaleX
=
-
item
.
scaleX
;
text
.
scaleX
=
-
text
.
scaleX
;
})).
start
();
},
data
.
id
%
10
)
}
else
{
}
else
{
item
.
x
=
1920
/
2
+
Math
.
random
()
*
200
item
.
x
=
1920
/
2
+
Math
.
random
()
*
200
item
.
y
=
-
315
-
Math
.
random
()
*
150
;
item
.
y
=
-
315
-
Math
.
random
()
*
150
;
item
.
scaleX
=
1
;
item
.
scaleX
=
1
;
text
.
scaleX
=
1
;
text
.
scaleX
=
1
;
cc
.
tween
(
item
).
repeatForever
(
cc
.
tween
().
by
(
7
+
Math
.
random
()
*
8
,
{
x
:
-
1920
-
400
}).
call
(()
=>
{
this
.
scheduleOnce
(()
=>
{
item
.
scaleX
=
-
item
.
scaleX
;
item
.
active
=
true
;
text
.
scaleX
=
-
text
.
scaleX
;
cc
.
tween
(
item
).
repeatForever
(
cc
.
tween
().
by
(
21
+
(
data
.
id
%
10
),
{
x
:
-
1920
-
400
}).
call
(()
=>
{
}).
by
(
7
+
Math
.
random
()
*
8
,
{
x
:
1920
+
400
}).
call
(()
=>
{
item
.
scaleX
=
-
item
.
scaleX
;
item
.
scaleX
=
-
item
.
scaleX
;
text
.
scaleX
=
-
text
.
scaleX
;
text
.
scaleX
=
-
text
.
scaleX
;
}).
by
(
7
+
Math
.
random
()
*
8
,
{
x
:
1920
+
400
}).
call
(()
=>
{
})).
start
();
item
.
scaleX
=
-
item
.
scaleX
;
text
.
scaleX
=
-
text
.
scaleX
;
})).
start
();
},
data
.
id
%
10
)
}
}
item
.
on
(
cc
.
Node
.
EventType
.
TOUCH_START
,
this
.
onItemTouchStart
,
this
);
item
.
on
(
cc
.
Node
.
EventType
.
TOUCH_START
,
this
.
onItemTouchStart
,
this
);
item
.
on
(
cc
.
Node
.
EventType
.
TOUCH_MOVE
,
this
.
onItemTouchMove
,
this
);
item
.
on
(
cc
.
Node
.
EventType
.
TOUCH_MOVE
,
this
.
onItemTouchMove
,
this
);
...
@@ -239,6 +246,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -239,6 +246,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
let
data
:
Option
=
target
.
data
;
let
data
:
Option
=
target
.
data
;
this
.
setTouchPos
(
e
);
this
.
setTouchPos
(
e
);
this
.
touching
=
data
;
this
.
touching
=
data
;
this
.
playLocalAudio
(
"
fish
"
)
}
}
onItemTouchMove
(
e
)
{
onItemTouchMove
(
e
)
{
let
target
:
cc
.
Node
=
e
.
target
;
let
target
:
cc
.
Node
=
e
.
target
;
...
@@ -264,19 +272,24 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -264,19 +272,24 @@ export default class SceneComponent extends MyCocosSceneComponent {
let
currentRect
=
null
;
let
currentRect
=
null
;
if
(
rect
.
intersects
(
leftRect
))
{
if
(
rect
.
intersects
(
leftRect
))
{
isRight
=
!!
Game
.
getIns
().
boatLeft
.
isChild
(
data
);
isRight
=
!!
Game
.
getIns
().
boatLeft
.
isChild
(
data
);
Game
.
getIns
().
boatLeft
.
setRight
(
data
);
isRight
&&
Game
.
getIns
().
boatLeft
.
setRight
(
data
);
currentRect
=
leftRect
;
currentRect
=
leftRect
;
}
else
if
(
rect
.
intersects
(
rightRect
))
{
}
else
if
(
rect
.
intersects
(
rightRect
))
{
isRight
=
!!
Game
.
getIns
().
boatRight
.
isChild
(
data
);
isRight
=
!!
Game
.
getIns
().
boatRight
.
isChild
(
data
);
Game
.
getIns
().
boatRight
.
setRight
(
data
);
isRight
&&
Game
.
getIns
().
boatRight
.
setRight
(
data
);
currentRect
=
rightRect
;
currentRect
=
rightRect
;
}
}
if
(
!
currentRect
)
{
if
(
!
currentRect
)
{
this
.
touching
=
null
;
this
.
playLocalAudio
(
'
error
'
)
this
.
playLocalAudio
(
'
error
'
).
then
(()
=>
{
if
(
target
.
x
>
0
)
{
target
.
runAction
(
cc
.
jumpBy
(
1
,
cc
.
v2
(
1300
,
-
1000
),
1000
,
1
))
}
else
{
target
.
runAction
(
cc
.
jumpBy
(
1
,
cc
.
v2
(
-
1300
,
-
1000
),
1000
,
1
))
}
this
.
scheduleOnce
(()
=>
{
this
.
touching
=
null
;
this
.
touching
=
null
;
this
.
updateItem
(
target
,
data
);
this
.
updateItem
(
target
,
data
);
})
}
,
1.5
)
return
;
return
;
}
}
if
(
isRight
)
{
if
(
isRight
)
{
...
@@ -309,10 +322,16 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -309,10 +322,16 @@ export default class SceneComponent extends MyCocosSceneComponent {
item
.
off
(
cc
.
Node
.
EventType
.
TOUCH_CANCEL
,
this
.
onItemTouchCancel
,
this
);
item
.
off
(
cc
.
Node
.
EventType
.
TOUCH_CANCEL
,
this
.
onItemTouchCancel
,
this
);
pg
.
event
.
emit
(
'
mouse_05_add
'
)
pg
.
event
.
emit
(
'
mouse_05_add
'
)
}
else
{
}
else
{
this
.
playLocalAudio
(
'
error
'
).
then
(()
=>
{
this
.
playLocalAudio
(
'
error
'
)
if
(
target
.
x
>
0
)
{
target
.
runAction
(
cc
.
jumpBy
(
1
,
cc
.
v2
(
1300
,
-
1000
),
1000
,
1
))
}
else
{
target
.
runAction
(
cc
.
jumpBy
(
1
,
cc
.
v2
(
-
1300
,
-
1000
),
1000
,
1
))
}
this
.
scheduleOnce
(()
=>
{
this
.
touching
=
null
;
this
.
touching
=
null
;
this
.
updateItem
(
target
,
data
);
this
.
updateItem
(
target
,
data
);
})
}
,
1.5
)
}
}
//判断是否结束了
//判断是否结束了
if
(
Game
.
getIns
().
boatLeft
.
isAllRight
()
&&
Game
.
getIns
().
boatRight
.
isAllRight
())
{
if
(
Game
.
getIns
().
boatLeft
.
isAllRight
()
&&
Game
.
getIns
().
boatRight
.
isAllRight
())
{
...
...
assets/ngt7_fish/textures/public/ani.meta
0 → 100644
View file @
3faa109b
{
"ver": "1.1.2",
"uuid": "87c961cf-8a25-4fa5-88ae-daf7791bdc45",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
assets/ngt7_fish/textures/public/ani/结束动画2_ske.json
0 → 100644
View file @
3faa109b
{
"frameRate"
:
24
,
"name"
:
"结束动画2"
,
"version"
:
"5.5"
,
"compatibleVersion"
:
"5.5"
,
"armature"
:[{
"type"
:
"Armature"
,
"frameRate"
:
24
,
"name"
:
"armatureName"
,
"aabb"
:{
"x"
:
-558
,
"y"
:
-540
,
"width"
:
1117
,
"height"
:
1080
},
"bone"
:[{
"name"
:
"root"
},{
"length"
:
155
,
"name"
:
"光"
,
"parent"
:
"root"
},{
"length"
:
40
,
"name"
:
"F"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-194.5
,
"y"
:
1.5
}},{
"length"
:
44
,
"name"
:
"I"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-123.5
,
"y"
:
1.5
}},{
"length"
:
44
,
"name"
:
"N"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-45
,
"y"
:
15
}},{
"length"
:
35
,
"name"
:
"i_0"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
34.5
,
"y"
:
1.5
}},{
"length"
:
48
,
"name"
:
"S"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
97
,
"y"
:
16
}},{
"length"
:
50
,
"name"
:
"H"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
190.5
,
"y"
:
2.5
}},{
"length"
:
43
,
"name"
:
"黄烟花"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
391.2976
,
"y"
:
-81.0298
,
"scX"
:
0.9
,
"scY"
:
0.9
}},{
"length"
:
43
,
"name"
:
"黄烟花1"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-415.1732
,
"y"
:
-159.7887
,
"scX"
:
1.2
,
"scY"
:
1.2
}},{
"length"
:
65
,
"name"
:
"粉烟花"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
114.3111
,
"y"
:
-271.2002
}},{
"length"
:
65
,
"name"
:
"粉烟花1"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-270.2977
,
"y"
:
188.2344
}},{
"length"
:
44
,
"name"
:
"蓝条"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
276.071
,
"y"
:
-92.2809
,
"skX"
:
81.084
,
"skY"
:
81.084
,
"scX"
:
-1
,
"scY"
:
0.75
}},{
"length"
:
44
,
"name"
:
"蓝条1"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
42.4812
,
"y"
:
-167.7422
,
"skX"
:
28.5551
,
"skY"
:
28.5551
,
"scX"
:
-1.3
}},{
"length"
:
44
,
"name"
:
"蓝条2"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-260.4436
,
"y"
:
-146.7482
,
"skX"
:
-65.7899
,
"skY"
:
-65.7899
,
"scX"
:
1.5
}},{
"length"
:
44
,
"name"
:
"蓝条3"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-212.6307
,
"y"
:
111.1071
,
"skX"
:
-121.9077
,
"skY"
:
-121.9077
,
"scY"
:
0.5
}},{
"length"
:
39
,
"name"
:
"花1"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
107.3
,
"y"
:
-235.6
,
"skX"
:
-0.2912
,
"skY"
:
-0.2912
}},{
"length"
:
38
,
"name"
:
"花2"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
289
,
"y"
:
-48.2
,
"skX"
:
0.6031
,
"skY"
:
0.6031
}},{
"length"
:
38
,
"name"
:
"花21"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-97.2332
,
"y"
:
-205.2909
,
"skX"
:
0.6031
,
"skY"
:
0.6031
,
"scX"
:
1.4
,
"scY"
:
1.4
}},{
"length"
:
39
,
"name"
:
"花12"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-354.57
,
"y"
:
-176.95
,
"skX"
:
-31.19
,
"skY"
:
-31.19
,
"scX"
:
0.85
,
"scY"
:
0.85
}}],
"slot"
:[{
"name"
:
"光"
,
"parent"
:
"光"
},{
"name"
:
"黄点点"
,
"parent"
:
"root"
},{
"name"
:
"蓝圈圈"
,
"parent"
:
"root"
},{
"name"
:
"点点"
,
"parent"
:
"root"
},{
"name"
:
"黄圈圈"
,
"parent"
:
"root"
},{
"name"
:
"花31"
,
"parent"
:
"花1"
},{
"name"
:
"花32"
,
"parent"
:
"花1"
},{
"name"
:
"花33"
,
"parent"
:
"花1"
},{
"name"
:
"花34"
,
"parent"
:
"花1"
},{
"name"
:
"花35"
,
"parent"
:
"花1"
},{
"name"
:
"花36"
,
"parent"
:
"花1"
},{
"name"
:
"花37"
,
"parent"
:
"花1"
},{
"name"
:
"花38"
,
"parent"
:
"花1"
},{
"name"
:
"花39"
,
"parent"
:
"花1"
},{
"name"
:
"花310"
,
"parent"
:
"花1"
},{
"name"
:
"花311"
,
"parent"
:
"花1"
},{
"name"
:
"花312"
,
"parent"
:
"花1"
},{
"name"
:
"花313"
,
"parent"
:
"花1"
},{
"name"
:
"花11"
,
"parent"
:
"花2"
},{
"name"
:
"花12"
,
"parent"
:
"花2"
},{
"name"
:
"花13"
,
"parent"
:
"花2"
},{
"name"
:
"花14"
,
"parent"
:
"花2"
},{
"name"
:
"花15"
,
"parent"
:
"花2"
},{
"name"
:
"花16"
,
"parent"
:
"花2"
},{
"name"
:
"花17"
,
"parent"
:
"花2"
},{
"name"
:
"圆点桔3"
,
"parent"
:
"root"
},{
"name"
:
"圆点黄5"
,
"parent"
:
"root"
},{
"name"
:
"圆点桔2"
,
"parent"
:
"root"
},{
"name"
:
"圆点黄4"
,
"parent"
:
"root"
},{
"name"
:
"圆点黄3"
,
"parent"
:
"root"
},{
"name"
:
"圆点桔1"
,
"parent"
:
"root"
},{
"name"
:
"圆点黄2"
,
"parent"
:
"root"
},{
"name"
:
"圆点黄1"
,
"parent"
:
"root"
},{
"name"
:
"圆点蓝1"
,
"parent"
:
"root"
},{
"name"
:
"圆点蓝2"
,
"parent"
:
"root"
},{
"name"
:
"圆点蓝3"
,
"parent"
:
"root"
},{
"name"
:
"f"
,
"parent"
:
"F"
},{
"name"
:
"i"
,
"parent"
:
"I"
},{
"name"
:
"n"
,
"parent"
:
"N"
},{
"name"
:
"i_0"
,
"parent"
:
"i_0"
},{
"name"
:
"s"
,
"parent"
:
"S"
},{
"name"
:
"h"
,
"parent"
:
"H"
},{
"name"
:
"黄烟花1"
,
"parent"
:
"黄烟花"
},{
"name"
:
"黄烟花11"
,
"parent"
:
"黄烟花1"
},{
"name"
:
"粉烟花1"
,
"parent"
:
"粉烟花"
},{
"name"
:
"粉烟花11"
,
"parent"
:
"粉烟花1"
},{
"displayIndex"
:
4
,
"name"
:
"蓝条11"
,
"parent"
:
"蓝条"
},{
"displayIndex"
:
4
,
"name"
:
"蓝条12"
,
"parent"
:
"蓝条1"
},{
"displayIndex"
:
4
,
"name"
:
"蓝条13"
,
"parent"
:
"蓝条2"
},{
"displayIndex"
:
4
,
"name"
:
"蓝条14"
,
"parent"
:
"蓝条3"
},{
"name"
:
"花111"
,
"parent"
:
"花21"
},{
"name"
:
"花121"
,
"parent"
:
"花21"
},{
"name"
:
"花131"
,
"parent"
:
"花21"
},{
"name"
:
"花141"
,
"parent"
:
"花21"
},{
"name"
:
"花151"
,
"parent"
:
"花21"
},{
"name"
:
"花161"
,
"parent"
:
"花21"
},{
"name"
:
"花171"
,
"parent"
:
"花21"
},{
"name"
:
"花315"
,
"parent"
:
"花12"
},{
"name"
:
"花322"
,
"parent"
:
"花12"
},{
"name"
:
"花332"
,
"parent"
:
"花12"
},{
"name"
:
"花342"
,
"parent"
:
"花12"
},{
"name"
:
"花352"
,
"parent"
:
"花12"
},{
"name"
:
"花362"
,
"parent"
:
"花12"
},{
"name"
:
"花372"
,
"parent"
:
"花12"
},{
"name"
:
"花382"
,
"parent"
:
"花12"
},{
"name"
:
"花392"
,
"parent"
:
"花12"
},{
"name"
:
"花3102"
,
"parent"
:
"花12"
},{
"name"
:
"花3112"
,
"parent"
:
"花12"
},{
"name"
:
"花3122"
,
"parent"
:
"花12"
},{
"name"
:
"花3132"
,
"parent"
:
"花12"
},{
"name"
:
"f2"
,
"parent"
:
"F"
},{
"name"
:
"h2"
,
"parent"
:
"H"
},{
"name"
:
"i2"
,
"parent"
:
"I"
},{
"name"
:
"i2_0"
,
"parent"
:
"i_0"
},{
"name"
:
"n2"
,
"parent"
:
"N"
},{
"name"
:
"s2"
,
"parent"
:
"S"
}],
"skin"
:[{
"slot"
:[{
"name"
:
"花34"
,
"display"
:[{
"name"
:
"花34"
,
"transform"
:{
"x"
:
15.16
,
"y"
:
7.68
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"圆点黄1"
,
"display"
:[{
"name"
:
"圆点黄1"
,
"transform"
:{
"x"
:
207
,
"y"
:
-96
}}]},{
"name"
:
"h2"
,
"display"
:[{
"name"
:
"h2"
}]},{
"name"
:
"花131"
,
"display"
:[{
"name"
:
"花13"
,
"transform"
:{
"x"
:
-0.69
,
"y"
:
-18.29
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"蓝条11"
,
"display"
:[{
"name"
:
"蓝条1"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
69.5
},
"path"
:
"蓝条1_1"
},{
"name"
:
"蓝条13"
,
"transform"
:{
"x"
:
1
,
"y"
:
-62.5
}},{
"name"
:
"蓝条11"
,
"transform"
:{
"x"
:
1
,
"y"
:
-51.5
}},{
"name"
:
"蓝条9"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-13
}},{
"name"
:
"蓝条7"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
10
}},{
"name"
:
"蓝条5"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
19
}},{
"name"
:
"蓝条3"
,
"transform"
:{
"x"
:
-2
,
"y"
:
42.5
},
"path"
:
"蓝条3_1"
},{
"name"
:
"蓝条2"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
56.5
},
"path"
:
"蓝条2_1"
},{
"name"
:
"蓝条4"
,
"transform"
:{
"y"
:
32
},
"path"
:
"蓝条4_1"
},{
"name"
:
"蓝条6"
,
"transform"
:{
"x"
:
-1
,
"y"
:
14.5
}},{
"name"
:
"蓝条8"
,
"transform"
:{
"x"
:
2
,
"y"
:
3.5
}},{
"name"
:
"蓝条10"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-41.5
}},{
"name"
:
"蓝条12"
,
"transform"
:{
"x"
:
2
,
"y"
:
-58
}}]},{
"name"
:
"i_0"
,
"display"
:[{
"name"
:
"i_0"
}]},{
"name"
:
"花311"
,
"display"
:[{
"name"
:
"花311"
,
"transform"
:{
"x"
:
-17.76
,
"y"
:
-6.99
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花16"
,
"display"
:[{
"name"
:
"花16"
,
"transform"
:{
"x"
:
15.91
,
"y"
:
-8.97
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花392"
,
"display"
:[{
"name"
:
"花39"
,
"transform"
:{
"x"
:
-4.93
,
"y"
:
25.58
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"圆点黄2"
,
"display"
:[{
"name"
:
"圆点黄2"
,
"transform"
:{
"x"
:
-91
,
"y"
:
-104
}}]},{
"name"
:
"圆点桔1"
,
"display"
:[{
"name"
:
"圆点桔1"
,
"transform"
:{
"x"
:
213
,
"y"
:
108
}}]},{
"name"
:
"f"
,
"display"
:[{
"name"
:
"f"
}]},{
"name"
:
"粉烟花11"
,
"display"
:[{
"name"
:
"粉烟花1"
,
"transform"
:{
"x"
:
-7
,
"y"
:
-3.5
},
"path"
:
"粉烟花1_1"
},{
"name"
:
"粉烟花18"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
},
"path"
:
"粉烟花18_1"
},{
"name"
:
"粉烟花16"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-5.5
},
"path"
:
"粉烟花16_1"
},{
"name"
:
"粉烟花14"
,
"transform"
:{
"x"
:
-2.5
,
"y"
:
-5.5
},
"path"
:
"粉烟花14_1"
},{
"name"
:
"粉烟花12"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
},
"path"
:
"粉烟花12_1"
},{
"name"
:
"粉烟花10"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-3.5
},
"path"
:
"粉烟花10_1"
},{
"name"
:
"粉烟花8"
,
"transform"
:{
"x"
:
-5
,
"y"
:
1.5
},
"path"
:
"粉烟花8_1"
},{
"name"
:
"粉烟花6"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-1
},
"path"
:
"粉烟花6_1"
},{
"name"
:
"粉烟花4"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-3
},
"path"
:
"粉烟花4_1"
},{
"name"
:
"粉烟花2"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3.5
},
"path"
:
"粉烟花2_1"
},{
"name"
:
"粉烟花3"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3
},
"path"
:
"粉烟花3_1"
},{
"name"
:
"粉烟花5"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
-1.5
},
"path"
:
"粉烟花5_1"
},{
"name"
:
"粉烟花7"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
1
},
"path"
:
"粉烟花7_1"
},{
"name"
:
"粉烟花9"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-2
},
"path"
:
"粉烟花9_1"
},{
"name"
:
"粉烟花11"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-8
},
"path"
:
"粉烟花11_1"
},{
"name"
:
"粉烟花13"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
},
"path"
:
"粉烟花13_1"
},{
"name"
:
"粉烟花15"
,
"transform"
:{
"x"
:
-4
,
"y"
:
-6
},
"path"
:
"粉烟花15_1"
},{
"name"
:
"粉烟花17"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
},
"path"
:
"粉烟花17_1"
}]},{
"name"
:
"圆点桔3"
,
"display"
:[{
"name"
:
"圆点桔3"
,
"transform"
:{
"x"
:
81.5
,
"y"
:
-156.5
}}]},{
"name"
:
"花322"
,
"display"
:[{
"name"
:
"花32"
,
"transform"
:{
"x"
:
16.28
,
"y"
:
-15.82
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"黄烟花11"
,
"display"
:[{
"name"
:
"黄烟花1"
,
"transform"
:{
"x"
:
-7
,
"y"
:
-3.5
}},{
"name"
:
"黄烟花18"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
}},{
"name"
:
"黄烟花14"
,
"transform"
:{
"x"
:
-2.5
,
"y"
:
-5.5
}},{
"name"
:
"黄烟花10"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-3.5
}},{
"name"
:
"黄烟花8"
,
"transform"
:{
"x"
:
-5
,
"y"
:
1.5
}},{
"name"
:
"黄烟花6"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-1
}},{
"name"
:
"黄烟花4"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-3
}},{
"name"
:
"黄烟花2"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3.5
}},{
"name"
:
"黄烟花3"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3
}},{
"name"
:
"黄烟花5"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
-1.5
}},{
"name"
:
"黄烟花7"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
1
}},{
"name"
:
"黄烟花9"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-2
}},{
"name"
:
"黄烟花11"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-8
}},{
"name"
:
"黄烟花13"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
}},{
"name"
:
"黄烟花15"
,
"transform"
:{
"x"
:
-4
,
"y"
:
-6
}},{
"name"
:
"黄烟花17"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
}},{
"name"
:
"黄烟花12"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
}},{
"name"
:
"黄烟花16"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-5.5
}}]},{
"name"
:
"花15"
,
"display"
:[{
"name"
:
"花15"
,
"transform"
:{
"x"
:
-12.56
,
"y"
:
-5.17
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花33"
,
"display"
:[{
"name"
:
"花33"
,
"transform"
:{
"x"
:
-14.36
,
"y"
:
12.53
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花32"
,
"display"
:[{
"name"
:
"花32"
,
"transform"
:{
"x"
:
16.28
,
"y"
:
-15.82
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"黄烟花1"
,
"display"
:[{
"name"
:
"黄烟花1"
,
"transform"
:{
"x"
:
-7
,
"y"
:
-3.5
}},{
"name"
:
"黄烟花18"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
}},{
"name"
:
"黄烟花14"
,
"transform"
:{
"x"
:
-2.5
,
"y"
:
-5.5
}},{
"name"
:
"黄烟花10"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-3.5
}},{
"name"
:
"黄烟花8"
,
"transform"
:{
"x"
:
-5
,
"y"
:
1.5
}},{
"name"
:
"黄烟花6"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-1
}},{
"name"
:
"黄烟花4"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-3
}},{
"name"
:
"黄烟花2"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3.5
}},{
"name"
:
"黄烟花3"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3
}},{
"name"
:
"黄烟花5"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
-1.5
}},{
"name"
:
"黄烟花7"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
1
}},{
"name"
:
"黄烟花9"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-2
}},{
"name"
:
"黄烟花11"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-8
}},{
"name"
:
"黄烟花13"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
}},{
"name"
:
"黄烟花15"
,
"transform"
:{
"x"
:
-4
,
"y"
:
-6
}},{
"name"
:
"黄烟花17"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
}},{
"name"
:
"黄烟花12"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
}},{
"name"
:
"黄烟花16"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-5.5
}}]},{
"name"
:
"花3132"
,
"display"
:[{
"name"
:
"花313"
,
"transform"
:{
"x"
:
4.36
,
"y"
:
-32.38
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花141"
,
"display"
:[{
"name"
:
"花14"
,
"transform"
:{
"x"
:
-14.94
,
"y"
:
5.86
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花151"
,
"display"
:[{
"name"
:
"花15"
,
"transform"
:{
"x"
:
-12.56
,
"y"
:
-5.17
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"n"
,
"display"
:[{
"name"
:
"n"
}]},{
"name"
:
"花161"
,
"display"
:[{
"name"
:
"花16"
,
"transform"
:{
"x"
:
15.91
,
"y"
:
-8.97
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"圆点黄3"
,
"display"
:[{
"name"
:
"圆点黄3"
,
"transform"
:{
"x"
:
-171
,
"y"
:
-162
}}]},{
"name"
:
"f2"
,
"display"
:[{
"name"
:
"f2"
}]},{
"name"
:
"蓝圈圈"
,
"display"
:[{
"name"
:
"蓝圈圈"
,
"transform"
:{
"x"
:
-336
,
"y"
:
-9
}}]},{
"name"
:
"圆点桔2"
,
"display"
:[{
"name"
:
"圆点桔2"
,
"transform"
:{
"x"
:
-255.5
,
"y"
:
106.5
}}]},{
"name"
:
"花39"
,
"display"
:[{
"name"
:
"花39"
,
"transform"
:{
"x"
:
-4.93
,
"y"
:
25.58
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"圆点黄4"
,
"display"
:[{
"name"
:
"圆点黄4"
,
"transform"
:{
"x"
:
-109
,
"y"
:
106
}}]},{
"name"
:
"圆点蓝3"
,
"display"
:[{
"name"
:
"圆点蓝3"
,
"transform"
:{
"x"
:
-351
,
"y"
:
114
}}]},{
"name"
:
"蓝条12"
,
"display"
:[{
"name"
:
"蓝条1"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
69.5
},
"path"
:
"蓝条1_2"
},{
"name"
:
"蓝条13"
,
"transform"
:{
"x"
:
1
,
"y"
:
-62.5
},
"path"
:
"蓝条13_1"
},{
"name"
:
"蓝条11"
,
"transform"
:{
"x"
:
1
,
"y"
:
-51.5
},
"path"
:
"蓝条11_1"
},{
"name"
:
"蓝条9"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-13
},
"path"
:
"蓝条9_1"
},{
"name"
:
"蓝条7"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
10
},
"path"
:
"蓝条7_1"
},{
"name"
:
"蓝条5"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
19
},
"path"
:
"蓝条5_1"
},{
"name"
:
"蓝条3"
,
"transform"
:{
"x"
:
-2
,
"y"
:
42.5
},
"path"
:
"蓝条3_2"
},{
"name"
:
"蓝条2"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
56.5
},
"path"
:
"蓝条2_2"
},{
"name"
:
"蓝条4"
,
"transform"
:{
"y"
:
32
},
"path"
:
"蓝条4_2"
},{
"name"
:
"蓝条6"
,
"transform"
:{
"x"
:
-1
,
"y"
:
14.5
},
"path"
:
"蓝条6_1"
},{
"name"
:
"蓝条8"
,
"transform"
:{
"x"
:
2
,
"y"
:
3.5
},
"path"
:
"蓝条8_1"
},{
"name"
:
"蓝条10"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-41.5
},
"path"
:
"蓝条10_1"
},{
"name"
:
"蓝条12"
,
"transform"
:{
"x"
:
2
,
"y"
:
-58
},
"path"
:
"蓝条12_1"
}]},{
"name"
:
"花362"
,
"display"
:[{
"name"
:
"花36"
,
"transform"
:{
"x"
:
-31.32
,
"y"
:
3.44
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花31"
,
"display"
:[{
"name"
:
"花31"
,
"transform"
:{
"x"
:
-0.3
,
"y"
:
-0.4
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花3122"
,
"display"
:[{
"name"
:
"花312"
,
"transform"
:{
"x"
:
-5.21
,
"y"
:
-18.43
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"s2"
,
"display"
:[{
"name"
:
"s2"
}]},{
"name"
:
"蓝条13"
,
"display"
:[{
"name"
:
"蓝条1"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
69.5
},
"path"
:
"蓝条1_3"
},{
"name"
:
"蓝条13"
,
"transform"
:{
"x"
:
1
,
"y"
:
-62.5
},
"path"
:
"蓝条13_2"
},{
"name"
:
"蓝条11"
,
"transform"
:{
"x"
:
1
,
"y"
:
-51.5
},
"path"
:
"蓝条11_2"
},{
"name"
:
"蓝条9"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-13
},
"path"
:
"蓝条9_2"
},{
"name"
:
"蓝条7"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
10
},
"path"
:
"蓝条7_2"
},{
"name"
:
"蓝条5"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
19
},
"path"
:
"蓝条5_2"
},{
"name"
:
"蓝条3"
,
"transform"
:{
"x"
:
-2
,
"y"
:
42.5
},
"path"
:
"蓝条3_3"
},{
"name"
:
"蓝条2"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
56.5
},
"path"
:
"蓝条2_3"
},{
"name"
:
"蓝条4"
,
"transform"
:{
"y"
:
32
},
"path"
:
"蓝条4_3"
},{
"name"
:
"蓝条6"
,
"transform"
:{
"x"
:
-1
,
"y"
:
14.5
},
"path"
:
"蓝条6_2"
},{
"name"
:
"蓝条8"
,
"transform"
:{
"x"
:
2
,
"y"
:
3.5
},
"path"
:
"蓝条8_2"
},{
"name"
:
"蓝条10"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-41.5
},
"path"
:
"蓝条10_2"
},{
"name"
:
"蓝条12"
,
"transform"
:{
"x"
:
2
,
"y"
:
-58
},
"path"
:
"蓝条12_2"
}]},{
"name"
:
"花310"
,
"display"
:[{
"name"
:
"花310"
,
"transform"
:{
"x"
:
4.13
,
"y"
:
13.62
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"黄圈圈"
,
"display"
:[{
"name"
:
"黄圈圈"
,
"transform"
:{
"x"
:
-148
,
"y"
:
186
}}]},{
"name"
:
"h"
,
"display"
:[{
"name"
:
"h"
}]},{
"name"
:
"花315"
,
"display"
:[{
"name"
:
"花31"
,
"transform"
:{
"x"
:
-0.3
,
"y"
:
-0.4
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花12"
,
"display"
:[{
"name"
:
"花12"
,
"transform"
:{
"x"
:
1.22
,
"y"
:
20.69
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"圆点蓝2"
,
"display"
:[{
"name"
:
"圆点蓝2"
,
"transform"
:{
"x"
:
189
,
"y"
:
-161
}}]},{
"name"
:
"花14"
,
"display"
:[{
"name"
:
"花14"
,
"transform"
:{
"x"
:
-14.94
,
"y"
:
5.86
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"黄点点"
,
"display"
:[{
"name"
:
"黄点点"
,
"transform"
:{
"x"
:
-344
,
"y"
:
-7.5
}}]},{
"name"
:
"花3112"
,
"display"
:[{
"name"
:
"花311"
,
"transform"
:{
"x"
:
-17.76
,
"y"
:
-6.99
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花38"
,
"display"
:[{
"name"
:
"花38"
,
"transform"
:{
"x"
:
21.1
,
"y"
:
20.21
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花11"
,
"display"
:[{
"name"
:
"花11"
,
"transform"
:{
"y"
:
0.2
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花352"
,
"display"
:[{
"name"
:
"花35"
,
"transform"
:{
"x"
:
26.72
,
"y"
:
-3.26
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"点点"
,
"display"
:[{
"name"
:
"点点"
,
"transform"
:{
"x"
:
-159.5
,
"y"
:
187.5
}}]},{
"name"
:
"s"
,
"display"
:[{
"name"
:
"s"
}]},{
"name"
:
"花36"
,
"display"
:[{
"name"
:
"花36"
,
"transform"
:{
"x"
:
-31.32
,
"y"
:
3.44
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"n2"
,
"display"
:[{
"name"
:
"n2"
}]},{
"name"
:
"花313"
,
"display"
:[{
"name"
:
"花313"
,
"transform"
:{
"x"
:
4.36
,
"y"
:
-32.38
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"蓝条14"
,
"display"
:[{
"name"
:
"蓝条1"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
69.5
},
"path"
:
"蓝条1_4"
},{
"name"
:
"蓝条13"
,
"transform"
:{
"x"
:
1
,
"y"
:
-62.5
},
"path"
:
"蓝条13_3"
},{
"name"
:
"蓝条11"
,
"transform"
:{
"x"
:
1
,
"y"
:
-51.5
},
"path"
:
"蓝条11_3"
},{
"name"
:
"蓝条9"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-13
},
"path"
:
"蓝条9_3"
},{
"name"
:
"蓝条7"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
10
},
"path"
:
"蓝条7_3"
},{
"name"
:
"蓝条5"
,
"transform"
:{
"x"
:
-0.5
,
"y"
:
19
},
"path"
:
"蓝条5_3"
},{
"name"
:
"蓝条3"
,
"transform"
:{
"x"
:
-2
,
"y"
:
42.5
},
"path"
:
"蓝条3_4"
},{
"name"
:
"蓝条2"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
56.5
},
"path"
:
"蓝条2_4"
},{
"name"
:
"蓝条4"
,
"transform"
:{
"y"
:
32
},
"path"
:
"蓝条4_4"
},{
"name"
:
"蓝条6"
,
"transform"
:{
"x"
:
-1
,
"y"
:
14.5
},
"path"
:
"蓝条6_3"
},{
"name"
:
"蓝条8"
,
"transform"
:{
"x"
:
2
,
"y"
:
3.5
},
"path"
:
"蓝条8_3"
},{
"name"
:
"蓝条10"
,
"transform"
:{
"x"
:
5.5
,
"y"
:
-41.5
},
"path"
:
"蓝条10_3"
},{
"name"
:
"蓝条12"
,
"transform"
:{
"x"
:
2
,
"y"
:
-58
},
"path"
:
"蓝条12_3"
}]},{
"name"
:
"i"
,
"display"
:[{
"name"
:
"i"
}]},{
"name"
:
"粉烟花1"
,
"display"
:[{
"name"
:
"粉烟花1"
,
"transform"
:{
"x"
:
-7
,
"y"
:
-3.5
}},{
"name"
:
"粉烟花18"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
}},{
"name"
:
"粉烟花16"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-5.5
}},{
"name"
:
"粉烟花14"
,
"transform"
:{
"x"
:
-2.5
,
"y"
:
-5.5
}},{
"name"
:
"粉烟花12"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
}},{
"name"
:
"粉烟花10"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-3.5
}},{
"name"
:
"粉烟花8"
,
"transform"
:{
"x"
:
-5
,
"y"
:
1.5
}},{
"name"
:
"粉烟花6"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-1
}},{
"name"
:
"粉烟花4"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-3
}},{
"name"
:
"粉烟花2"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3.5
}},{
"name"
:
"粉烟花3"
,
"transform"
:{
"x"
:
-7.5
,
"y"
:
-3
}},{
"name"
:
"粉烟花5"
,
"transform"
:{
"x"
:
-4.5
,
"y"
:
-1.5
}},{
"name"
:
"粉烟花7"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
1
}},{
"name"
:
"粉烟花9"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-2
}},{
"name"
:
"粉烟花11"
,
"transform"
:{
"x"
:
-6
,
"y"
:
-8
}},{
"name"
:
"粉烟花13"
,
"transform"
:{
"x"
:
-2
,
"y"
:
-5.5
}},{
"name"
:
"粉烟花15"
,
"transform"
:{
"x"
:
-4
,
"y"
:
-6
}},{
"name"
:
"粉烟花17"
,
"transform"
:{
"x"
:
-5.5
,
"y"
:
-6
}}]},{
"name"
:
"花3102"
,
"display"
:[{
"name"
:
"花310"
,
"transform"
:{
"x"
:
4.13
,
"y"
:
13.62
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花37"
,
"display"
:[{
"name"
:
"花37"
,
"transform"
:{
"x"
:
-23.19
,
"y"
:
-21.02
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花332"
,
"display"
:[{
"name"
:
"花33"
,
"transform"
:{
"x"
:
-14.36
,
"y"
:
12.53
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花13"
,
"display"
:[{
"name"
:
"花13"
,
"transform"
:{
"x"
:
-0.69
,
"y"
:
-18.29
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"光"
,
"display"
:[{
"name"
:
"光"
,
"transform"
:{
"x"
:
0.5
}}]},{
"name"
:
"花17"
,
"display"
:[{
"name"
:
"花17"
,
"transform"
:{
"x"
:
16.07
,
"y"
:
7.03
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花171"
,
"display"
:[{
"name"
:
"花17"
,
"transform"
:{
"x"
:
16.07
,
"y"
:
7.03
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"圆点蓝1"
,
"display"
:[{
"name"
:
"圆点蓝1"
,
"transform"
:{
"x"
:
-40
,
"y"
:
179
}}]},{
"name"
:
"花312"
,
"display"
:[{
"name"
:
"花312"
,
"transform"
:{
"x"
:
-5.21
,
"y"
:
-18.43
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花111"
,
"display"
:[{
"name"
:
"花11"
,
"transform"
:{
"y"
:
0.2
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花372"
,
"display"
:[{
"name"
:
"花37"
,
"transform"
:{
"x"
:
-23.19
,
"y"
:
-21.02
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"圆点黄5"
,
"display"
:[{
"name"
:
"圆点黄5"
,
"transform"
:{
"x"
:
90.5
,
"y"
:
133.5
}}]},{
"name"
:
"花35"
,
"display"
:[{
"name"
:
"花35"
,
"transform"
:{
"x"
:
26.72
,
"y"
:
-3.26
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"i2"
,
"display"
:[{
"name"
:
"i2"
}]},{
"name"
:
"i2_0"
,
"display"
:[{
"name"
:
"i2_0"
}]},{
"name"
:
"花121"
,
"display"
:[{
"name"
:
"花12"
,
"transform"
:{
"x"
:
1.22
,
"y"
:
20.69
,
"skX"
:
-0.6
,
"skY"
:
-0.6
}}]},{
"name"
:
"花342"
,
"display"
:[{
"name"
:
"花34"
,
"transform"
:{
"x"
:
15.16
,
"y"
:
7.68
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]},{
"name"
:
"花382"
,
"display"
:[{
"name"
:
"花38"
,
"transform"
:{
"x"
:
21.1
,
"y"
:
20.21
,
"skX"
:
0.29
,
"skY"
:
0.29
}}]}]}],
"animation"
:[{
"duration"
:
90
,
"playTimes"
:
0
,
"name"
:
"newAnimation"
,
"bone"
:[{
"name"
:
"光"
,
"rotateFrame"
:[{
"duration"
:
90
,
"tweenEasing"
:
0
,
"clockwise"
:
2
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
0.5
,
"y"
:
0.5
},{
"duration"
:
82
}]},{
"name"
:
"F"
,
"scaleFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
1.2
,
"y"
:
1.2
},{
"duration"
:
75
}]},{
"name"
:
"I"
,
"scaleFrame"
:[{
"duration"
:
13
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
1.2
,
"y"
:
1.2
},{
"duration"
:
72
}]},{
"name"
:
"N"
,
"scaleFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
1.2
,
"y"
:
1.2
},{
"duration"
:
69
}]},{
"name"
:
"i_0"
,
"scaleFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
1.2
,
"y"
:
1.2
},{
"duration"
:
66
}]},{
"name"
:
"S"
,
"scaleFrame"
:[{
"duration"
:
22
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
1.2
,
"y"
:
1.2
},{
"duration"
:
63
}]},{
"name"
:
"H"
,
"scaleFrame"
:[{
"duration"
:
25
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.01
,
"y"
:
0.01
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
1.2
,
"y"
:
1.2
},{
"duration"
:
60
}]}],
"slot"
:[{
"name"
:
"光"
,
"colorFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
67
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"黄点点"
,
"colorFrame"
:[{
"duration"
:
28
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
20
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"蓝圈圈"
,
"colorFrame"
:[{
"duration"
:
24
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"点点"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"黄圈圈"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花31"
,
"colorFrame"
:[{
"duration"
:
13
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
30
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花32"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花33"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花34"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花35"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花36"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花37"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花38"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花39"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花310"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花311"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花312"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花313"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花11"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花12"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花13"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花14"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花15"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花16"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花17"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点桔3"
,
"colorFrame"
:[{
"duration"
:
24
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点黄5"
,
"colorFrame"
:[{
"duration"
:
13
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
35
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点桔2"
,
"colorFrame"
:[{
"duration"
:
21
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点黄4"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
36
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点黄3"
,
"colorFrame"
:[{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
16
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点桔1"
,
"colorFrame"
:[{
"duration"
:
34
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
14
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点黄2"
,
"colorFrame"
:[{
"duration"
:
23
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
25
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点黄1"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点蓝1"
,
"colorFrame"
:[{
"duration"
:
17
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
31
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点蓝2"
,
"colorFrame"
:[{
"duration"
:
33
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"圆点蓝3"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
32
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
36
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"f"
,
"colorFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
65
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"i"
,
"colorFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
62
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"n"
,
"colorFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
59
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"i_0"
,
"colorFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
56
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"s"
,
"colorFrame"
:[{
"duration"
:
21
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
53
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"h"
,
"colorFrame"
:[{
"duration"
:
24
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
50
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
0
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"黄烟花1"
,
"displayFrame"
:[{
"duration"
:
25
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
8
},{
"value"
:
6
},{
"value"
:
9
},{
"value"
:
5
},{
"value"
:
10
},{
"value"
:
4
},{
"value"
:
11
},{
"value"
:
3
},{
"value"
:
12
},{
"value"
:
16
},{
"value"
:
13
},{
"value"
:
2
},{
"value"
:
14
},{
"value"
:
17
},{
"value"
:
15
},{
"value"
:
1
},{
"duration"
:
19
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
8
},{
"value"
:
6
},{
"value"
:
9
},{
"value"
:
5
},{
"value"
:
10
},{
"value"
:
4
},{
"value"
:
11
},{
"value"
:
3
},{
"value"
:
12
},{
"value"
:
16
},{
"value"
:
13
},{
"value"
:
2
},{
"value"
:
14
},{
"value"
:
17
},{
"value"
:
15
},{
"value"
:
1
},{
"duration"
:
10
,
"value"
:
-1
}]},{
"name"
:
"黄烟花11"
,
"displayFrame"
:[{
"duration"
:
28
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
8
},{
"value"
:
6
},{
"value"
:
9
},{
"value"
:
5
},{
"value"
:
10
},{
"value"
:
4
},{
"value"
:
11
},{
"value"
:
3
},{
"value"
:
12
},{
"value"
:
16
},{
"value"
:
13
},{
"value"
:
2
},{
"value"
:
14
},{
"value"
:
17
},{
"value"
:
15
},{
"value"
:
1
},{
"duration"
:
19
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
8
},{
"value"
:
6
},{
"value"
:
9
},{
"value"
:
5
},{
"value"
:
10
},{
"value"
:
4
},{
"value"
:
11
},{
"value"
:
3
},{
"value"
:
12
},{
"value"
:
16
},{
"value"
:
13
},{
"value"
:
2
},{
"value"
:
14
},{
"value"
:
17
},{
"value"
:
15
},{
"value"
:
1
},{
"duration"
:
7
,
"value"
:
-1
}]},{
"name"
:
"粉烟花1"
,
"displayFrame"
:[{
"duration"
:
31
,
"value"
:
-1
},{},{
"value"
:
9
},{
"value"
:
10
},{
"value"
:
8
},{
"value"
:
11
},{
"value"
:
7
},{
"value"
:
12
},{
"value"
:
6
},{
"value"
:
13
},{
"value"
:
5
},{
"value"
:
14
},{
"value"
:
4
},{
"value"
:
15
},{
"value"
:
3
},{
"value"
:
16
},{
"value"
:
2
},{
"value"
:
17
},{
"value"
:
1
},{
"duration"
:
19
,
"value"
:
-1
},{},{
"value"
:
9
},{
"value"
:
10
},{
"value"
:
8
},{
"value"
:
11
},{
"value"
:
7
},{
"value"
:
12
},{
"value"
:
6
},{
"value"
:
13
},{
"value"
:
5
},{
"value"
:
14
},{
"value"
:
4
},{
"value"
:
15
},{
"value"
:
3
},{
"value"
:
16
},{
"value"
:
2
},{
"value"
:
17
},{
"value"
:
1
},{
"duration"
:
4
,
"value"
:
-1
}]},{
"name"
:
"粉烟花11"
,
"displayFrame"
:[{
"duration"
:
29
,
"value"
:
-1
},{},{
"value"
:
9
},{
"value"
:
10
},{
"value"
:
8
},{
"value"
:
11
},{
"value"
:
7
},{
"value"
:
12
},{
"value"
:
6
},{
"value"
:
13
},{
"value"
:
5
},{
"value"
:
14
},{
"value"
:
4
},{
"value"
:
15
},{
"value"
:
3
},{
"value"
:
16
},{
"value"
:
2
},{
"value"
:
17
},{
"value"
:
1
},{
"duration"
:
19
,
"value"
:
-1
},{},{
"value"
:
9
},{
"value"
:
10
},{
"value"
:
8
},{
"value"
:
11
},{
"value"
:
7
},{
"value"
:
12
},{
"value"
:
6
},{
"value"
:
13
},{
"value"
:
5
},{
"value"
:
14
},{
"value"
:
4
},{
"value"
:
15
},{
"value"
:
3
},{
"value"
:
16
},{
"value"
:
2
},{
"value"
:
17
},{
"value"
:
1
},{
"duration"
:
6
,
"value"
:
-1
}]},{
"name"
:
"蓝条11"
,
"displayFrame"
:[{
"duration"
:
11
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
24
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
29
,
"value"
:
-1
}]},{
"name"
:
"蓝条12"
,
"displayFrame"
:[{
"duration"
:
16
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
24
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"蓝条13"
,
"displayFrame"
:[{
"duration"
:
14
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
24
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
26
,
"value"
:
-1
}]},{
"name"
:
"蓝条14"
,
"displayFrame"
:[{
"duration"
:
15
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
24
,
"value"
:
-1
},{},{
"value"
:
7
},{
"value"
:
6
},{
"value"
:
8
},{
"value"
:
5
},{
"value"
:
9
},{
"value"
:
4
},{
"value"
:
10
},{
"value"
:
3
},{
"value"
:
11
},{
"value"
:
2
},{
"value"
:
12
},{
"value"
:
1
},{
"duration"
:
25
,
"value"
:
-1
}]},{
"name"
:
"花111"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花121"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花131"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花141"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花151"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花161"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花171"
,
"colorFrame"
:[{
"duration"
:
20
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花315"
,
"colorFrame"
:[{
"duration"
:
14
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
29
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花322"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花332"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花342"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花352"
,
"colorFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花362"
,
"colorFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花372"
,
"colorFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花382"
,
"colorFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花392"
,
"colorFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花3102"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花3112"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花3122"
,
"colorFrame"
:[{
"duration"
:
16
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"花3132"
,
"colorFrame"
:[{
"duration"
:
19
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
27
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
24
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"f2"
,
"colorFrame"
:[{
"duration"
:
35
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"duration"
:
43
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"h2"
,
"colorFrame"
:[{
"duration"
:
60
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"duration"
:
18
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"i2"
,
"colorFrame"
:[{
"duration"
:
40
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"duration"
:
38
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"i2_0"
,
"colorFrame"
:[{
"duration"
:
50
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"duration"
:
28
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"n2"
,
"colorFrame"
:[{
"duration"
:
45
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"duration"
:
33
,
"value"
:{
"aM"
:
0
}}]},{
"name"
:
"s2"
,
"colorFrame"
:[{
"duration"
:
55
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"value"
:{
"aM"
:
0
}},{
"duration"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"duration"
:
23
,
"value"
:{
"aM"
:
0
}}]}]}],
"defaultActions"
:[{
"gotoAndPlay"
:
"newAnimation"
}]}]}
\ No newline at end of file
assets/ngt7_fish/textures/public/ani/结束动画2_ske.json.meta
0 → 100644
View file @
3faa109b
{
"ver": "1.0.1",
"uuid": "d088e9e5-3c27-428e-a756-cbbe0c73995f",
"subMetas": {}
}
\ No newline at end of file
assets/ngt7_fish/textures/public/ani/结束动画2_tex.json
0 → 100644
View file @
3faa109b
{
"width"
:
2048
,
"imagePath"
:
"结束动画2_tex.png"
,
"height"
:
2048
,
"name"
:
"结束动画2"
,
"SubTexture"
:[{
"width"
:
1117
,
"y"
:
1
,
"height"
:
1080
,
"name"
:
"光"
,
"x"
:
1
},{
"width"
:
54
,
"y"
:
575
,
"height"
:
57
,
"name"
:
"黄点点"
,
"x"
:
1488
},{
"width"
:
30
,
"y"
:
523
,
"height"
:
30
,
"name"
:
"蓝圈圈"
,
"x"
:
1754
},{
"width"
:
75
,
"y"
:
132
,
"height"
:
79
,
"name"
:
"点点"
,
"x"
:
1465
},{
"width"
:
42
,
"y"
:
584
,
"height"
:
42
,
"name"
:
"黄圈圈"
,
"x"
:
1818
},{
"width"
:
6
,
"y"
:
734
,
"height"
:
6
,
"name"
:
"花31"
,
"x"
:
1989
},{
"width"
:
15
,
"y"
:
760
,
"height"
:
15
,
"name"
:
"花32"
,
"x"
:
1961
},{
"width"
:
16
,
"y"
:
777
,
"height"
:
14
,
"name"
:
"花33"
,
"x"
:
1961
},{
"width"
:
11
,
"y"
:
564
,
"height"
:
8
,
"name"
:
"花34"
,
"x"
:
1855
},{
"width"
:
8
,
"y"
:
572
,
"height"
:
4
,
"name"
:
"花35"
,
"x"
:
2027
},{
"width"
:
8
,
"y"
:
572
,
"height"
:
4
,
"name"
:
"花36"
,
"x"
:
2037
},{
"width"
:
10
,
"y"
:
432
,
"height"
:
7
,
"name"
:
"花37"
,
"x"
:
1421
},{
"width"
:
7
,
"y"
:
213
,
"height"
:
5
,
"name"
:
"花38"
,
"x"
:
1480
},{
"width"
:
5
,
"y"
:
432
,
"height"
:
8
,
"name"
:
"花39"
,
"x"
:
1433
},{
"width"
:
7
,
"y"
:
722
,
"height"
:
8
,
"name"
:
"花310"
,
"x"
:
1919
},{
"width"
:
13
,
"y"
:
213
,
"height"
:
5
,
"name"
:
"花311"
,
"x"
:
1465
},{
"width"
:
8
,
"y"
:
422
,
"height"
:
14
,
"name"
:
"花312"
,
"x"
:
2004
},{
"width"
:
5
,
"y"
:
628
,
"height"
:
10
,
"name"
:
"花313"
,
"x"
:
1854
},{
"width"
:
6
,
"y"
:
726
,
"height"
:
6
,
"name"
:
"花11"
,
"x"
:
1989
},{
"width"
:
6
,
"y"
:
353
,
"height"
:
19
,
"name"
:
"花12"
,
"x"
:
1217
},{
"width"
:
7
,
"y"
:
673
,
"height"
:
19
,
"name"
:
"花13"
,
"x"
:
1990
},{
"width"
:
10
,
"y"
:
432
,
"height"
:
7
,
"name"
:
"花14"
,
"x"
:
1409
},{
"width"
:
9
,
"y"
:
694
,
"height"
:
5
,
"name"
:
"花15"
,
"x"
:
1990
},{
"width"
:
10
,
"y"
:
574
,
"height"
:
8
,
"name"
:
"花16"
,
"x"
:
1855
},{
"width"
:
14
,
"y"
:
576
,
"height"
:
6
,
"name"
:
"花17"
,
"x"
:
1754
},{
"width"
:
19
,
"y"
:
519
,
"height"
:
19
,
"name"
:
"圆点桔3"
,
"x"
:
1386
},{
"width"
:
19
,
"y"
:
555
,
"height"
:
19
,
"name"
:
"圆点黄5"
,
"x"
:
1754
},{
"width"
:
19
,
"y"
:
705
,
"height"
:
19
,
"name"
:
"圆点桔2"
,
"x"
:
1976
},{
"width"
:
12
,
"y"
:
744
,
"height"
:
12
,
"name"
:
"圆点黄4"
,
"x"
:
2007
},{
"width"
:
12
,
"y"
:
753
,
"height"
:
12
,
"name"
:
"圆点黄3"
,
"x"
:
2021
},{
"width"
:
12
,
"y"
:
758
,
"height"
:
12
,
"name"
:
"圆点桔1"
,
"x"
:
2007
},{
"width"
:
16
,
"y"
:
717
,
"height"
:
16
,
"name"
:
"圆点黄2"
,
"x"
:
2023
},{
"width"
:
16
,
"y"
:
744
,
"height"
:
16
,
"name"
:
"圆点黄1"
,
"x"
:
1989
},{
"width"
:
16
,
"y"
:
628
,
"height"
:
16
,
"name"
:
"圆点蓝1"
,
"x"
:
1818
},{
"width"
:
16
,
"y"
:
735
,
"height"
:
16
,
"name"
:
"圆点蓝2"
,
"x"
:
2023
},{
"width"
:
16
,
"y"
:
628
,
"height"
:
16
,
"name"
:
"圆点蓝3"
,
"x"
:
1836
},{
"width"
:
101
,
"y"
:
1
,
"height"
:
129
,
"name"
:
"f"
,
"x"
:
1441
},{
"width"
:
49
,
"y"
:
670
,
"height"
:
131
,
"name"
:
"i"
,
"x"
:
1290
},{
"width"
:
108
,
"y"
:
243
,
"height"
:
104
,
"name"
:
"n"
,
"x"
:
1227
},{
"width"
:
49
,
"y"
:
442
,
"height"
:
131
,
"name"
:
"i_0"
,
"x"
:
1493
},{
"width"
:
80
,
"y"
:
330
,
"height"
:
106
,
"name"
:
"s"
,
"x"
:
1796
},{
"width"
:
107
,
"y"
:
1
,
"height"
:
129
,
"name"
:
"h"
,
"x"
:
1229
},{
"width"
:
66
,
"y"
:
516
,
"height"
:
76
,
"name"
:
"黄烟花5"
,
"x"
:
1868
},{
"width"
:
113
,
"y"
:
132
,
"height"
:
109
,
"name"
:
"黄烟花15"
,
"x"
:
1120
},{
"width"
:
82
,
"y"
:
464
,
"height"
:
101
,
"name"
:
"黄烟花9"
,
"x"
:
1302
},{
"width"
:
62
,
"y"
:
646
,
"height"
:
60
,
"name"
:
"黄烟花2"
,
"x"
:
1818
},{
"width"
:
83
,
"y"
:
465
,
"height"
:
113
,
"name"
:
"黄烟花11"
,
"x"
:
1120
},{
"width"
:
80
,
"y"
:
670
,
"height"
:
85
,
"name"
:
"黄烟花7"
,
"x"
:
1120
},{
"width"
:
116
,
"y"
:
1
,
"height"
:
108
,
"name"
:
"黄烟花16"
,
"x"
:
1544
},{
"width"
:
116
,
"y"
:
111
,
"height"
:
107
,
"name"
:
"黄烟花17"
,
"x"
:
1544
},{
"width"
:
95
,
"y"
:
330
,
"height"
:
110
,
"name"
:
"黄烟花12"
,
"x"
:
1447
},{
"width"
:
82
,
"y"
:
330
,
"height"
:
104
,
"name"
:
"黄烟花10"
,
"x"
:
1628
},{
"width"
:
76
,
"y"
:
756
,
"height"
:
77
,
"name"
:
"黄烟花6"
,
"x"
:
1202
},{
"width"
:
106
,
"y"
:
220
,
"height"
:
108
,
"name"
:
"黄烟花14"
,
"x"
:
1465
},{
"width"
:
116
,
"y"
:
111
,
"height"
:
107
,
"name"
:
"黄烟花18"
,
"x"
:
1662
},{
"width"
:
105
,
"y"
:
243
,
"height"
:
108
,
"name"
:
"黄烟花13"
,
"x"
:
1120
},{
"width"
:
59
,
"y"
:
835
,
"height"
:
54
,
"name"
:
"黄烟花1"
,
"x"
:
1198
},{
"width"
:
83
,
"y"
:
666
,
"height"
:
88
,
"name"
:
"黄烟花8"
,
"x"
:
1205
},{
"width"
:
63
,
"y"
:
516
,
"height"
:
65
,
"name"
:
"黄烟花4"
,
"x"
:
1936
},{
"width"
:
62
,
"y"
:
523
,
"height"
:
61
,
"name"
:
"黄烟花3"
,
"x"
:
1626
},{
"width"
:
83
,
"y"
:
349
,
"height"
:
113
,
"name"
:
"粉烟花11"
,
"x"
:
1324
},{
"width"
:
105
,
"y"
:
220
,
"height"
:
108
,
"name"
:
"粉烟花13"
,
"x"
:
1789
},{
"width"
:
82
,
"y"
:
330
,
"height"
:
104
,
"name"
:
"粉烟花10"
,
"x"
:
1544
},{
"width"
:
62
,
"y"
:
584
,
"height"
:
60
,
"name"
:
"粉烟花2"
,
"x"
:
1754
},{
"width"
:
59
,
"y"
:
803
,
"height"
:
54
,
"name"
:
"粉烟花1"
,
"x"
:
1280
},{
"width"
:
62
,
"y"
:
523
,
"height"
:
61
,
"name"
:
"粉烟花3"
,
"x"
:
1690
},{
"width"
:
95
,
"y"
:
353
,
"height"
:
110
,
"name"
:
"粉烟花12"
,
"x"
:
1120
},{
"width"
:
66
,
"y"
:
438
,
"height"
:
76
,
"name"
:
"粉烟花5"
,
"x"
:
1936
},{
"width"
:
82
,
"y"
:
567
,
"height"
:
101
,
"name"
:
"粉烟花9"
,
"x"
:
1302
},{
"width"
:
116
,
"y"
:
110
,
"height"
:
107
,
"name"
:
"粉烟花17"
,
"x"
:
1898
},{
"width"
:
83
,
"y"
:
576
,
"height"
:
88
,
"name"
:
"粉烟花8"
,
"x"
:
1205
},{
"width"
:
116
,
"y"
:
111
,
"height"
:
107
,
"name"
:
"粉烟花18"
,
"x"
:
1780
},{
"width"
:
106
,
"y"
:
220
,
"height"
:
108
,
"name"
:
"粉烟花14"
,
"x"
:
1573
},{
"width"
:
80
,
"y"
:
436
,
"height"
:
85
,
"name"
:
"粉烟花7"
,
"x"
:
1708
},{
"width"
:
116
,
"y"
:
1
,
"height"
:
108
,
"name"
:
"粉烟花16"
,
"x"
:
1780
},{
"width"
:
76
,
"y"
:
757
,
"height"
:
77
,
"name"
:
"粉烟花6"
,
"x"
:
1120
},{
"width"
:
113
,
"y"
:
132
,
"height"
:
109
,
"name"
:
"粉烟花15"
,
"x"
:
1350
},{
"width"
:
63
,
"y"
:
583
,
"height"
:
65
,
"name"
:
"粉烟花4"
,
"x"
:
1936
},{
"width"
:
82
,
"y"
:
330
,
"height"
:
104
,
"name"
:
"粉烟花10_1"
,
"x"
:
1712
},{
"width"
:
59
,
"y"
:
859
,
"height"
:
54
,
"name"
:
"粉烟花1_1"
,
"x"
:
1280
},{
"width"
:
113
,
"y"
:
132
,
"height"
:
109
,
"name"
:
"粉烟花15_1"
,
"x"
:
1235
},{
"width"
:
83
,
"y"
:
580
,
"height"
:
88
,
"name"
:
"粉烟花8_1"
,
"x"
:
1120
},{
"width"
:
116
,
"y"
:
1
,
"height"
:
107
,
"name"
:
"粉烟花17_1"
,
"x"
:
1898
},{
"width"
:
62
,
"y"
:
544
,
"height"
:
61
,
"name"
:
"粉烟花3_1"
,
"x"
:
1544
},{
"width"
:
106
,
"y"
:
220
,
"height"
:
108
,
"name"
:
"粉烟花14_1"
,
"x"
:
1681
},{
"width"
:
82
,
"y"
:
442
,
"height"
:
101
,
"name"
:
"粉烟花9_1"
,
"x"
:
1409
},{
"width"
:
95
,
"y"
:
349
,
"height"
:
110
,
"name"
:
"粉烟花12_1"
,
"x"
:
1227
},{
"width"
:
116
,
"y"
:
1
,
"height"
:
108
,
"name"
:
"粉烟花16_1"
,
"x"
:
1662
},{
"width"
:
105
,
"y"
:
328
,
"height"
:
108
,
"name"
:
"粉烟花13_1"
,
"x"
:
1896
},{
"width"
:
83
,
"y"
:
461
,
"height"
:
113
,
"name"
:
"粉烟花11_1"
,
"x"
:
1217
},{
"width"
:
76
,
"y"
:
438
,
"height"
:
77
,
"name"
:
"粉烟花6_1"
,
"x"
:
1790
},{
"width"
:
80
,
"y"
:
436
,
"height"
:
85
,
"name"
:
"粉烟花7_1"
,
"x"
:
1626
},{
"width"
:
116
,
"y"
:
219
,
"height"
:
107
,
"name"
:
"粉烟花18_1"
,
"x"
:
1898
},{
"width"
:
62
,
"y"
:
646
,
"height"
:
60
,
"name"
:
"粉烟花2_1"
,
"x"
:
1754
},{
"width"
:
63
,
"y"
:
517
,
"height"
:
65
,
"name"
:
"粉烟花4_1"
,
"x"
:
1790
},{
"width"
:
66
,
"y"
:
438
,
"height"
:
76
,
"name"
:
"粉烟花5_1"
,
"x"
:
1868
},{
"width"
:
21
,
"y"
:
578
,
"height"
:
137
,
"name"
:
"蓝条6"
,
"x"
:
2024
},{
"width"
:
14
,
"y"
:
733
,
"height"
:
53
,
"name"
:
"蓝条2_1"
,
"x"
:
1919
},{
"width"
:
12
,
"y"
:
544
,
"height"
:
104
,
"name"
:
"蓝条9"
,
"x"
:
1608
},{
"width"
:
8
,
"y"
:
756
,
"height"
:
21
,
"name"
:
"蓝条1_1"
,
"x"
:
1280
},{
"width"
:
11
,
"y"
:
717
,
"height"
:
25
,
"name"
:
"蓝条13"
,
"x"
:
2010
},{
"width"
:
11
,
"y"
:
733
,
"height"
:
30
,
"name"
:
"蓝条12"
,
"x"
:
1935
},{
"width"
:
17
,
"y"
:
650
,
"height"
:
81
,
"name"
:
"蓝条3_1"
,
"x"
:
1929
},{
"width"
:
21
,
"y"
:
891
,
"height"
:
102
,
"name"
:
"蓝条4_1"
,
"x"
:
1211
},{
"width"
:
22
,
"y"
:
594
,
"height"
:
126
,
"name"
:
"蓝条5"
,
"x"
:
1905
},{
"width"
:
11
,
"y"
:
517
,
"height"
:
45
,
"name"
:
"蓝条11"
,
"x"
:
1855
},{
"width"
:
17
,
"y"
:
670
,
"height"
:
131
,
"name"
:
"蓝条8"
,
"x"
:
1365
},{
"width"
:
12
,
"y"
:
843
,
"height"
:
53
,
"name"
:
"蓝条10"
,
"x"
:
1919
},{
"width"
:
22
,
"y"
:
147
,
"height"
:
144
,
"name"
:
"蓝条7"
,
"x"
:
2016
},{
"width"
:
12
,
"y"
:
650
,
"height"
:
53
,
"name"
:
"蓝条10_1"
,
"x"
:
1976
},{
"width"
:
17
,
"y"
:
964
,
"height"
:
81
,
"name"
:
"蓝条3_2"
,
"x"
:
1166
},{
"width"
:
11
,
"y"
:
555
,
"height"
:
25
,
"name"
:
"蓝条13_1"
,
"x"
:
1775
},{
"width"
:
22
,
"y"
:
836
,
"height"
:
126
,
"name"
:
"蓝条5_1"
,
"x"
:
1168
},{
"width"
:
17
,
"y"
:
439
,
"height"
:
131
,
"name"
:
"蓝条8_1"
,
"x"
:
2027
},{
"width"
:
12
,
"y"
:
722
,
"height"
:
104
,
"name"
:
"蓝条9_1"
,
"x"
:
1905
},{
"width"
:
11
,
"y"
:
756
,
"height"
:
30
,
"name"
:
"蓝条12_1"
,
"x"
:
1948
},{
"width"
:
14
,
"y"
:
788
,
"height"
:
53
,
"name"
:
"蓝条2_2"
,
"x"
:
1919
},{
"width"
:
22
,
"y"
:
293
,
"height"
:
144
,
"name"
:
"蓝条7_1"
,
"x"
:
2016
},{
"width"
:
21
,
"y"
:
439
,
"height"
:
137
,
"name"
:
"蓝条6_1"
,
"x"
:
2004
},{
"width"
:
21
,
"y"
:
964
,
"height"
:
102
,
"name"
:
"蓝条4_2"
,
"x"
:
1120
},{
"width"
:
8
,
"y"
:
779
,
"height"
:
21
,
"name"
:
"蓝条1_2"
,
"x"
:
1280
},{
"width"
:
11
,
"y"
:
594
,
"height"
:
45
,
"name"
:
"蓝条11_1"
,
"x"
:
1862
},{
"width"
:
12
,
"y"
:
650
,
"height"
:
53
,
"name"
:
"蓝条10_2"
,
"x"
:
1962
},{
"width"
:
11
,
"y"
:
328
,
"height"
:
45
,
"name"
:
"蓝条11_2"
,
"x"
:
2003
},{
"width"
:
17
,
"y"
:
349
,
"height"
:
81
,
"name"
:
"蓝条3_3"
,
"x"
:
1428
},{
"width"
:
17
,
"y"
:
891
,
"height"
:
131
,
"name"
:
"蓝条8_2"
,
"x"
:
1192
},{
"width"
:
11
,
"y"
:
717
,
"height"
:
25
,
"name"
:
"蓝条13_2"
,
"x"
:
1997
},{
"width"
:
22
,
"y"
:
836
,
"height"
:
126
,
"name"
:
"蓝条5_2"
,
"x"
:
1120
},{
"width"
:
21
,
"y"
:
578
,
"height"
:
137
,
"name"
:
"蓝条6_2"
,
"x"
:
2001
},{
"width"
:
8
,
"y"
:
650
,
"height"
:
21
,
"name"
:
"蓝条1_3"
,
"x"
:
1990
},{
"width"
:
21
,
"y"
:
891
,
"height"
:
102
,
"name"
:
"蓝条4_3"
,
"x"
:
1234
},{
"width"
:
22
,
"y"
:
1
,
"height"
:
144
,
"name"
:
"蓝条7_2"
,
"x"
:
2016
},{
"width"
:
11
,
"y"
:
765
,
"height"
:
30
,
"name"
:
"蓝条12_2"
,
"x"
:
1935
},{
"width"
:
14
,
"y"
:
243
,
"height"
:
53
,
"name"
:
"蓝条2_3"
,
"x"
:
1447
},{
"width"
:
12
,
"y"
:
330
,
"height"
:
104
,
"name"
:
"蓝条9_2"
,
"x"
:
1878
},{
"width"
:
21
,
"y"
:
594
,
"height"
:
137
,
"name"
:
"蓝条6_3"
,
"x"
:
1882
},{
"width"
:
11
,
"y"
:
375
,
"height"
:
45
,
"name"
:
"蓝条11_3"
,
"x"
:
2003
},{
"width"
:
21
,
"y"
:
964
,
"height"
:
102
,
"name"
:
"蓝条4_4"
,
"x"
:
1143
},{
"width"
:
11
,
"y"
:
726
,
"height"
:
25
,
"name"
:
"蓝条13_3"
,
"x"
:
1976
},{
"width"
:
8
,
"y"
:
753
,
"height"
:
21
,
"name"
:
"蓝条1_4"
,
"x"
:
1978
},{
"width"
:
14
,
"y"
:
464
,
"height"
:
53
,
"name"
:
"蓝条2_4"
,
"x"
:
1386
},{
"width"
:
17
,
"y"
:
349
,
"height"
:
81
,
"name"
:
"蓝条3_4"
,
"x"
:
1409
},{
"width"
:
22
,
"y"
:
836
,
"height"
:
126
,
"name"
:
"蓝条5_3"
,
"x"
:
1144
},{
"width"
:
22
,
"y"
:
670
,
"height"
:
144
,
"name"
:
"蓝条7_3"
,
"x"
:
1341
},{
"width"
:
11
,
"y"
:
298
,
"height"
:
30
,
"name"
:
"蓝条12_3"
,
"x"
:
1447
},{
"width"
:
12
,
"y"
:
705
,
"height"
:
53
,
"name"
:
"蓝条10_3"
,
"x"
:
1962
},{
"width"
:
12
,
"y"
:
650
,
"height"
:
104
,
"name"
:
"蓝条9_3"
,
"x"
:
1948
},{
"width"
:
17
,
"y"
:
835
,
"height"
:
131
,
"name"
:
"蓝条8_3"
,
"x"
:
1259
},{
"width"
:
101
,
"y"
:
1
,
"height"
:
129
,
"name"
:
"f2"
,
"x"
:
1338
},{
"width"
:
107
,
"y"
:
1
,
"height"
:
129
,
"name"
:
"h2"
,
"x"
:
1120
},{
"width"
:
49
,
"y"
:
545
,
"height"
:
131
,
"name"
:
"i2"
,
"x"
:
1437
},{
"width"
:
49
,
"y"
:
545
,
"height"
:
131
,
"name"
:
"i2_0"
,
"x"
:
1386
},{
"width"
:
108
,
"y"
:
243
,
"height"
:
104
,
"name"
:
"n2"
,
"x"
:
1337
},{
"width"
:
80
,
"y"
:
436
,
"height"
:
106
,
"name"
:
"s2"
,
"x"
:
1544
}]}
\ No newline at end of file
assets/ngt7_fish/textures/public/ani/结束动画2_tex.json.meta
0 → 100644
View file @
3faa109b
{
"ver": "1.0.1",
"uuid": "49d12efd-7a30-40da-a2f4-04d502ea426d",
"subMetas": {}
}
\ No newline at end of file
assets/ngt7_fish/textures/public/ani/结束动画2_tex.png
0 → 100644
View file @
3faa109b
835 KB
assets/ngt7_fish/textures/public/ani/结束动画2_tex.png.meta
0 → 100644
View file @
3faa109b
{
"ver": "2.3.5",
"uuid": "5656ade1-312c-4df3-9eaf-6e72650f53d8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2048,
"height": 2048,
"platformSettings": {},
"subMetas": {
"结束动画2_tex": {
"ver": "1.0.4",
"uuid": "5851015c-6d6e-4165-b82e-aa25cfa5c037",
"rawTextureUuid": "5656ade1-312c-4df3-9eaf-6e72650f53d8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 483,
"trimX": 1,
"trimY": 1,
"width": 2044,
"height": 1080,
"rawWidth": 2048,
"rawHeight": 2048,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
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