Commit 4d671167 authored by WangFan's avatar WangFan

修复部分显示效果

parent 0fa4f01c
...@@ -19,16 +19,19 @@ ...@@ -19,16 +19,19 @@
"_children": [ "_children": [
{ {
"__id__": 2 "__id__": 2
},
{
"__id__": 33
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 33 "__id__": 38
} }
], ],
"_prefab": { "_prefab": {
"__id__": 34 "__id__": 39
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -107,7 +110,7 @@ ...@@ -107,7 +110,7 @@
"__id__": 20 "__id__": 20
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 32 "__id__": 32
...@@ -1226,6 +1229,175 @@ ...@@ -1226,6 +1229,175 @@
"fileId": "7cG7U7lH9Ie5/sK83LZUCP", "fileId": "7cG7U7lH9Ie5/sK83LZUCP",
"sync": false "sync": false
}, },
{
"__type__": "cc.Node",
"_name": "res",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 34
}
],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 37
},
"_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": ""
},
{
"__type__": "cc.Node",
"_name": "ending",
"_objFlags": 0,
"_parent": {
"__id__": 33
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 35
}
],
"_prefab": {
"__id__": 36
},
"_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": ""
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 34
},
"_enabled": true,
"_clip": {
"__uuid__": "78fa786c-cb39-47d2-a4a8-c6325aa156bb"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "f9vxaSJK5EpYuRQDkXL09t",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "4cGmarm1NKC6LGDcWWF/bS",
"sync": false
},
{ {
"__type__": "8aa900+eYBD775dNwfvQqgE", "__type__": "8aa900+eYBD775dNwfvQqgE",
"_name": "", "_name": "",
......
...@@ -14,8 +14,10 @@ export default class LayerEnding extends cc.Component { ...@@ -14,8 +14,10 @@ export default class LayerEnding extends cc.Component {
private layer_center: cc.Node; private layer_center: cc.Node;
private replay_btn: cc.Node; private replay_btn: cc.Node;
private next_btn: cc.Node; private next_btn: cc.Node;
private res:cc.Node;
onLoad() { onLoad() {
this.layer_center = pg.view.find(this.node, "layer_center") this.layer_center = pg.view.find(this.node, "layer_center")
this.res= pg.view.find(this.node,"res")
pg.view.visible(this.layer_center, false); pg.view.visible(this.layer_center, false);
this.replay_btn = pg.view.find(this.layer_center, "replay_btn") this.replay_btn = pg.view.find(this.layer_center, "replay_btn")
this.next_btn = pg.view.find(this.layer_center, "next_btn") this.next_btn = pg.view.find(this.layer_center, "next_btn")
...@@ -26,9 +28,10 @@ export default class LayerEnding extends cc.Component { ...@@ -26,9 +28,10 @@ export default class LayerEnding extends cc.Component {
}) })
} }
showLayer(data) { showLayer(data) {
let ending = pg.view.find(this.res,"ending")
pg.audio.playLocalAudio(ending)
pg.view.visible(this.layer_center, true) pg.view.visible(this.layer_center, true)
pg.view.setString(pg.view.find(this.layer_center, 'finish_box/coin_num'), 'X' + data.coin); pg.view.setString(pg.view.find(this.layer_center, 'finish_box/coin_num'), 'X' + data.coin);
let finish_cat = pg.view.find(this.layer_center, "finish_cat") let finish_cat = pg.view.find(this.layer_center, "finish_cat")
pg.view.playDBAnimation(finish_cat, "finish", 1); pg.view.playDBAnimation(finish_cat, "finish", 1);
let bg_light = pg.view.find(this.layer_center, "bg_light") let bg_light = pg.view.find(this.layer_center, "bg_light")
......
{
"ver": "1.1.2",
"uuid": "d05ee77e-7d87-4d5a-b953-c0d649f3ed2e",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "78fa786c-cb39-47d2-a4a8-c6325aa156bb",
"downloadMode": 0,
"duration": 4.04898,
"subMetas": {}
}
\ No newline at end of file
...@@ -81,22 +81,22 @@ ...@@ -81,22 +81,22 @@
"__id__": 84 "__id__": 84
}, },
{ {
"__id__": 118 "__id__": 105
}, },
{ {
"__id__": 139 "__id__": 121
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 155 "__id__": 160
}, },
{ {
"__id__": 156 "__id__": 161
}, },
{ {
"__id__": 157 "__id__": 162
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -3437,7 +3437,7 @@ ...@@ -3437,7 +3437,7 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 81.9, "width": 0,
"height": 88.2 "height": 88.2
}, },
"_anchorPoint": { "_anchorPoint": {
...@@ -3489,8 +3489,8 @@ ...@@ -3489,8 +3489,8 @@
], ],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_string": "10", "_string": "",
"_N$string": "10", "_N$string": "",
"_fontSize": 70, "_fontSize": 70,
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
...@@ -4000,7 +4000,7 @@ ...@@ -4000,7 +4000,7 @@
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "layer_ending_hy17_hds", "_name": "layer_back_hy17_hds",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 2
...@@ -4008,16 +4008,22 @@ ...@@ -4008,16 +4008,22 @@
"_children": [ "_children": [
{ {
"__id__": 85 "__id__": 85
},
{
"__id__": 90
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 116 "__id__": 102
},
{
"__id__": 103
} }
], ],
"_prefab": { "_prefab": {
"__id__": 117 "__id__": 104
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4029,8 +4035,8 @@ ...@@ -4029,8 +4035,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 1920,
"height": 0 "height": 1080
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4064,42 +4070,30 @@ ...@@ -4064,42 +4070,30 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "7eAmMAqa9EAZUzeHURRs2D" "_id": "86+2LZ5yFJdYc8noxLXZZc"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "layer_center", "_name": "btn_back",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 84 "__id__": 84
}, },
"_children": [ "_children": [],
"_active": true,
"_components": [
{ {
"__id__": 86 "__id__": 86
}, },
{ {
"__id__": 89 "__id__": 87
},
{
"__id__": 91
},
{
"__id__": 94
},
{
"__id__": 97
},
{
"__id__": 100
}, },
{ {
"__id__": 103 "__id__": 88
} }
], ],
"_active": false,
"_components": [],
"_prefab": { "_prefab": {
"__id__": 115 "__id__": 89
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4111,72 +4105,8 @@ ...@@ -4111,72 +4105,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 189,
"height": 0 "height": 117
},
"_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": "f5KC0nFvxBRprckbExAaOO"
},
{
"__type__": "cc.Node",
"_name": "gray_cover",
"_objFlags": 0,
"_parent": {
"__id__": 85
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 87
}
],
"_prefab": {
"__id__": 88
},
"_opacity": 102,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 3000,
"height": 3000
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4187,8 +4117,8 @@ ...@@ -4187,8 +4117,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-0.508, -804.917,
1.574, 439.747,
0, 0,
0, 0,
0, 0,
...@@ -4210,14 +4140,14 @@ ...@@ -4210,14 +4140,14 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "1dIiMS/T1CerRb2cwIHFXE" "_id": "21YHtxQk5BXrq6QcXidteH"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 86 "__id__": 85
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -4228,10 +4158,10 @@ ...@@ -4228,10 +4158,10 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" "__uuid__": "92327074-92fd-4d4a-a8aa-32f7ed514ab1"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 0, "_sizeMode": 1,
"_fillType": 0, "_fillType": 0,
"_fillCenter": { "_fillCenter": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4242,7 +4172,102 @@ ...@@ -4242,7 +4172,102 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "68YkoP99NKjaI89TfP3Geu" "_id": "c3bqF0RjRILKCBZFAa/4aq"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 85
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 0,
"transition": 0,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_N$normalSprite": null,
"_N$pressedSprite": null,
"pressedSprite": null,
"_N$hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": null,
"_id": "13zYQXNMhLRJ3fftkccK4B"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 85
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 60.58299999999997,
"_right": 0,
"_top": 41.752999999999986,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "f9dcRi2RNGkLa4h3Cpoy/G"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -4250,23 +4275,37 @@ ...@@ -4250,23 +4275,37 @@
"__id__": 84 "__id__": 84
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "1cfNdHF9FH3KbwZyC/Rw6p", "fileId": "61ulP3c3dDLb+4SfgnWK1F",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "layer_middle", "_name": "img_npc_voice",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 85 "__id__": 84
}, },
"_children": [], "_children": [
{
"__id__": 91
},
{
"__id__": 94
},
{
"__id__": 97
}
],
"_active": true, "_active": true,
"_components": [], "_components": [
{
"__id__": 100
}
],
"_prefab": { "_prefab": {
"__id__": 90 "__id__": 101
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4290,8 +4329,8 @@ ...@@ -4290,8 +4329,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, -638.532,
0, 437.61,
0, 0,
0, 0,
0, 0,
...@@ -4313,25 +4352,14 @@ ...@@ -4313,25 +4352,14 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "57mqIUWyRMb6W9+O9yxtNc" "_id": "b023TwkgNOPp47O5HFOfLa"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "05udCU1VdI/agyYkkywj7D",
"sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "replay_btn", "_name": "p1",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 85 "__id__": 90
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
...@@ -4353,8 +4381,8 @@ ...@@ -4353,8 +4381,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 153, "width": 68,
"height": 153 "height": 70
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4365,8 +4393,8 @@ ...@@ -4365,8 +4393,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-500.013, -10.611,
-340.145, 0,
0, 0,
0, 0,
0, 0,
...@@ -4388,7 +4416,7 @@ ...@@ -4388,7 +4416,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "d8Hogu6fFIErHeJd+mHecQ" "_id": "07EIp9sT9LA6Bca+SjQani"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -4406,7 +4434,7 @@ ...@@ -4406,7 +4434,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1b782eab-25d2-4314-b83a-258f7e4d7ea4" "__uuid__": "5d214bcc-ae6a-48b2-8e3e-693089d66911"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -4420,7 +4448,7 @@ ...@@ -4420,7 +4448,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "85Rnk2+AJKU5eOFvwJrteP" "_id": "08LbWFKOxL/IJzbOE/fH5W"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -4428,20 +4456,20 @@ ...@@ -4428,20 +4456,20 @@
"__id__": 84 "__id__": 84
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "64JkLZPOJB45Eawytu4dgS", "fileId": "eeSSmA+sZKe4zFitN7jaL3",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "bg_light", "_name": "p2",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 85 "__id__": 90
}, },
"_children": [], "_children": [],
"_active": true, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 95 "__id__": 95
...@@ -4460,8 +4488,8 @@ ...@@ -4460,8 +4488,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1104, "width": 84,
"height": 1109 "height": 70
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4472,8 +4500,8 @@ ...@@ -4472,8 +4500,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, -2.806,
0, -0.005,
0, 0,
0, 0,
0, 0,
...@@ -4495,7 +4523,7 @@ ...@@ -4495,7 +4523,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "d0ufcp3klBhrfmN14DlMXY" "_id": "3faLXcUixNlbhxFfTrfWGe"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -4513,7 +4541,7 @@ ...@@ -4513,7 +4541,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "25fb3f92-bcc7-4131-9799-223ffe697b15" "__uuid__": "008bbd55-b1e7-4e82-bf54-f6cf40ebb738"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -4527,7 +4555,7 @@ ...@@ -4527,7 +4555,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "54WZL5CPJN87MfHuvv/k2P" "_id": "31u8Fet3BIrbCdKxH+nsKA"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -4535,20 +4563,20 @@ ...@@ -4535,20 +4563,20 @@
"__id__": 84 "__id__": 84
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "06ZiT3YYpCj6mdNSxdYMvD", "fileId": "29QTrf+y1JVa+D/t6K2NFr",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "finish_cat", "_name": "p3",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 85 "__id__": 90
}, },
"_children": [], "_children": [],
"_active": true, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 98 "__id__": 98
...@@ -4567,8 +4595,8 @@ ...@@ -4567,8 +4595,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 512, "width": 95,
"height": 497.77919520611704 "height": 70
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4579,8 +4607,8 @@ ...@@ -4579,8 +4607,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
2.8,
0, 0,
-214.645,
0, 0,
0, 0,
0, 0,
...@@ -4602,10 +4630,10 @@ ...@@ -4602,10 +4630,10 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "99ORosNsZHm5L0GLAHfQEY" "_id": "ef3MbGdktKO68ALiSd9EMW"
}, },
{ {
"__type__": "dragonBones.ArmatureDisplay", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
...@@ -4617,32 +4645,24 @@ ...@@ -4617,32 +4645,24 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
} }
], ],
"_armatureName": "Armature", "_srcBlendFactor": 770,
"_animationName": "", "_dstBlendFactor": 771,
"_preCacheMode": 0, "_spriteFrame": {
"_cacheMode": 0, "__uuid__": "603d0882-deba-4173-8432-b9da5e547d20"
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "a3fdb391-e9ad-464d-ad51-2698de2b38e1#c9537625-dbfc-4d95-a3b3-d3d672dc93e6",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "a3fdb391-e9ad-464d-ad51-2698de2b38e1"
}, },
"_N$dragonAtlasAsset": { "_type": 0,
"__uuid__": "c9537625-dbfc-4d95-a3b3-d3d672dc93e6" "_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
}, },
"_N$_defaultArmatureIndex": 0, "_fillStart": 0,
"_N$_animationIndex": 0, "_fillRange": 0,
"_N$_defaultCacheMode": 0, "_isTrimmedMode": true,
"_N$timeScale": 1, "_atlas": null,
"_N$debugBones": false, "_id": "f2kLeqp0NKwZIatWdXeEx1"
"_N$enableBatch": false,
"_id": "45Ny1sXjpOgLYKQcVwgc0B"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -4650,28 +4670,118 @@ ...@@ -4650,28 +4670,118 @@
"__id__": 84 "__id__": 84
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "15OJA0Q/JIlJbDN8f4ukZN", "fileId": "4anvaDTjZFOb9U0HkCAMR2",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 90
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 321.46799999999996,
"_right": 0,
"_top": 102.38999999999999,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "99QYWVEEtAWqwVuuB4W5Yc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "fft5aHS35DjoYobvKkISue",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 84
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "ebCV5coOBMRY9mzGhX5spG"
},
{
"__type__": "7ab71itR/hJz4giCFo5yFB1",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 84
},
"_enabled": true,
"_id": "83Pdr6PU9BUoRB9BwC31cQ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "next_btn", "_name": "res",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 85 "__id__": 2
}, },
"_children": [], "_children": [
"_active": true,
"_components": [
{ {
"__id__": 101 "__id__": 106
},
{
"__id__": 109
},
{
"__id__": 112
} }
], ],
"_prefab": { "_active": false,
"__id__": 102 "_components": [],
}, "_prefab": null,
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -4682,8 +4792,8 @@ ...@@ -4682,8 +4792,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 153, "width": 0,
"height": 153 "height": 0
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4694,8 +4804,8 @@ ...@@ -4694,8 +4804,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
500.013, 0,
-343.546, 0,
0, 0,
0, 0,
0, 0,
...@@ -4717,78 +4827,23 @@ ...@@ -4717,78 +4827,23 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "13fR5ihv9Cb5uGUBmoyKHU" "_id": "0aAzbH6R1E+6AmGRrkKa5O"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Node",
"_name": "", "_name": "font",
"_objFlags": 0, "_objFlags": 0,
"node": { "_parent": {
"__id__": 100 "__id__": 105
}, },
"_enabled": true, "_children": [
"_materials": [
{ {
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" "__id__": 107
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9cddc7ee-9ccf-4dd5-86a6-94b3a5d69135"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "aeSNEGePtMeI7/sXO1KQzT"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "e68b5eJphElLrpxtQEdyxG",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "finish_box",
"_objFlags": 0,
"_parent": {
"__id__": 85
},
"_children": [
{
"__id__": 104
},
{
"__id__": 107
},
{
"__id__": 110
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [],
{ "_prefab": null,
"__id__": 113
}
],
"_prefab": {
"__id__": 114
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -4799,8 +4854,8 @@ ...@@ -4799,8 +4854,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 714, "width": 0,
"height": 166 "height": 0
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4812,7 +4867,7 @@ ...@@ -4812,7 +4867,7 @@
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 0,
-204, 0,
0, 0,
0, 0,
0, 0,
...@@ -4834,37 +4889,35 @@ ...@@ -4834,37 +4889,35 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "e1L8BULfxJsqf4nrfEcuNB" "_id": "9bLfcYeeNKrr524vzWchiM"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "result_text", "_name": "BRLNSDB",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 103 "__id__": 106
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 105 "__id__": 108
} }
], ],
"_prefab": { "_prefab": null,
"__id__": 106
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 252, "g": 255,
"b": 232, "b": 255,
"a": 255 "a": 255
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 221.4, "width": 0,
"height": 56.7 "height": 0
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4875,8 +4928,8 @@ ...@@ -4875,8 +4928,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-88, 0,
10, 0,
0, 0,
0, 0,
0, 0,
...@@ -4898,71 +4951,116 @@ ...@@ -4898,71 +4951,116 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "7eeFQvTYtPM6dSi/H7KjbD" "_id": "cfMLGsq0BMhJARv+ySMAxS"
}, },
{ {
"__type__": "cc.Label", "__type__": "cc.Label",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 104 "__id__": 107
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [],
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_string": "恭喜你获得", "_string": "",
"_N$string": "恭喜你获得", "_N$string": "",
"_fontSize": 45, "_fontSize": 40,
"_lineHeight": 45, "_lineHeight": 40,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "e76aff25-445c-4315-8509-23d42bef3d57" "__uuid__": "c551970e-b095-45f3-9f1d-25cde8b8deb1"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
"_batchAsBitmap": false, "_batchAsBitmap": false,
"_styleFlags": 1, "_styleFlags": 0,
"_underlineHeight": 0, "_underlineHeight": 0,
"_N$horizontalAlign": 1, "_N$horizontalAlign": 0,
"_N$verticalAlign": 1, "_N$verticalAlign": 0,
"_N$fontFamily": "Arial", "_N$fontFamily": "Arial",
"_N$overflow": 0, "_N$overflow": 0,
"_N$cacheMode": 0, "_N$cacheMode": 0,
"_id": "7cy2T+PCBMU4K4PsRmybrP" "_id": "9bNHNPu5lC7rQYyr8ai/sY"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.Node",
"root": { "_name": "img",
"__id__": 84 "_objFlags": 0,
"_parent": {
"__id__": 105
}, },
"asset": { "_children": [
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" {
"__id__": 110
}
],
"_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
}, },
"fileId": "eaTaVhDcBEkqwz8ACtP7x3", "_contentSize": {
"sync": false "__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": "53LUHHG2pEr79fyrvazXJs"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "coin", "_name": "icon",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 103 "__id__": 109
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 108 "__id__": 111
} }
], ],
"_prefab": { "_prefab": null,
"__id__": 109
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -4973,8 +5071,8 @@ ...@@ -4973,8 +5071,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 67, "width": 138,
"height": 70 "height": 141
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -4985,8 +5083,8 @@ ...@@ -4985,8 +5083,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
83, 0,
10, 0,
0, 0,
0, 0,
0, 0,
...@@ -5008,25 +5106,21 @@ ...@@ -5008,25 +5106,21 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "b7WvpTH7ZHVZx8x1AlCfK9" "_id": "1blU2OArJIfoC9XfupGxJG"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 107 "__id__": 110
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [],
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "4c1488d1-d283-4f03-864e-742eedadf6d9" "__uuid__": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -5040,60 +5134,56 @@ ...@@ -5040,60 +5134,56 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "93z0jcdBpI6Z0WUMMTZQwX" "_id": "03GEWUEZJGyKormWgIWCtM"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.Node",
"root": { "_name": "audio",
"__id__": 84 "_objFlags": 0,
"_parent": {
"__id__": 105
}, },
"asset": { "_children": [
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" {
"__id__": 113
}, },
"fileId": "13IYbTThlC5rDXn6k7swYV", {
"sync": false "__id__": 115
}, },
{ {
"__type__": "cc.Node", "__id__": 117
"_name": "coin_num",
"_objFlags": 0,
"_parent": {
"__id__": 103
}, },
"_children": [],
"_active": true,
"_components": [
{ {
"__id__": 111 "__id__": 119
} }
], ],
"_prefab": { "_active": true,
"__id__": 112 "_components": [],
}, "_prefab": null,
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 252, "g": 255,
"b": 232, "b": 255,
"a": 255 "a": 255
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 55.04, "width": 0,
"height": 56.7 "height": 0
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
"x": 0, "x": 0.5,
"y": 0.5 "y": 0.5
}, },
"_trs": { "_trs": {
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
130.345, 0,
10, 0,
0, 0,
0, 0,
0, 0,
...@@ -5115,154 +5205,104 @@ ...@@ -5115,154 +5205,104 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "02rSaZxsJP8JR65yVhaPOG" "_id": "d9f+b0lmZGSJJae6zrADhp"
}, },
{ {
"__type__": "cc.Label", "__type__": "cc.Node",
"_name": "", "_name": "btn",
"_objFlags": 0, "_objFlags": 0,
"node": { "_parent": {
"__id__": 110 "__id__": 112
}, },
"_enabled": true, "_children": [],
"_materials": [ "_active": true,
{ "_components": [
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "X5",
"_N$string": "X5",
"_fontSize": 45,
"_lineHeight": 45,
"_enableWrapText": true,
"_N$file": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 1,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "9daHFeeMBG2YS5CCdRY6R6"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "52Z0lpksxE1JprOrhHgdow",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 103
},
"_enabled": true,
"_materials": [
{ {
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" "__id__": 114
} }
], ],
"_srcBlendFactor": 770, "_prefab": null,
"_dstBlendFactor": 771, "_opacity": 255,
"_spriteFrame": { "_color": {
"__uuid__": "3180f64c-6ecd-455f-8a3d-3be96921ca7b" "__type__": "cc.Color",
}, "r": 255,
"_type": 0, "g": 255,
"_sizeMode": 1, "b": 255,
"_fillType": 0, "a": 255
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6atDmmq1RIiqpP9EadC/yu"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
}, },
"asset": { "_contentSize": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__type__": "cc.Size",
"width": 0,
"height": 0
}, },
"fileId": "911Shrt8NB/ZWFA9u7l/SL", "_anchorPoint": {
"sync": false "__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
}, },
{ "_trs": {
"__type__": "cc.PrefabInfo", "__type__": "TypedArray",
"root": { "ctor": "Float64Array",
"__id__": 84 "array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}, },
"asset": { "_eulerAngles": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}, },
"fileId": "7cG7U7lH9Ie5/sK83LZUCP", "_skewX": 0,
"sync": false "_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "e87DSaFCVJfb2PAUkf4/o7"
}, },
{ {
"__type__": "8aa900+eYBD775dNwfvQqgE", "__type__": "cc.AudioSource",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 84 "__id__": 113
}, },
"_enabled": true, "_enabled": true,
"_id": "cfHFUZnfJNHbbpeiyDx+Ym" "_clip": {
}, "__uuid__": "f0680ae0-c079-45ef-abd7-9e63d90b982b"
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 84
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
}, },
"fileId": "", "_volume": 1,
"sync": false "_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "dey05oKrBIspvsDa6pOIQz"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "layer_back_hy17_hds", "_name": "show",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 112
},
"_children": [
{
"__id__": 119
}, },
{ "_children": [],
"__id__": 124
}
],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 136 "__id__": 116
},
{
"__id__": 137
} }
], ],
"_prefab": { "_prefab": null,
"__id__": 138
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -5273,8 +5313,8 @@ ...@@ -5273,8 +5313,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1920, "width": 0,
"height": 1080 "height": 0
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -5308,31 +5348,42 @@ ...@@ -5308,31 +5348,42 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "86+2LZ5yFJdYc8noxLXZZc" "_id": "20k+CzJMFG4oN/fub0R6Qs"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 115
},
"_enabled": true,
"_clip": {
"__uuid__": "1cd6e449-075c-4865-8675-8a8ade389e36"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "cfiik2a4dOs4S6pqyQVPCp"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "btn_back", "_name": "coin",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 118 "__id__": 112
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 120 "__id__": 118
},
{
"__id__": 121
},
{
"__id__": 122
} }
], ],
"_prefab": { "_prefab": null,
"__id__": 123
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -5343,8 +5394,8 @@ ...@@ -5343,8 +5394,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 189, "width": 0,
"height": 117 "height": 0
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -5355,8 +5406,8 @@ ...@@ -5355,8 +5406,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-804.917, 0,
439.747, 0,
0, 0,
0, 0,
0, 0,
...@@ -5378,172 +5429,213 @@ ...@@ -5378,172 +5429,213 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "21YHtxQk5BXrq6QcXidteH" "_id": "64ozQcUuNN1KmZigunHnJG"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.AudioSource",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 119 "__id__": 117
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_clip": {
{ "__uuid__": "df0d8c54-ea16-46f8-83fd-eb29764a4e1e"
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "92327074-92fd-4d4a-a8aa-32f7ed514ab1"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
}, },
"_fillStart": 0, "_volume": 1,
"_fillRange": 0, "_mute": false,
"_isTrimmedMode": true, "_loop": false,
"_atlas": null, "_firstlyEnabled": true,
"_id": "c3bqF0RjRILKCBZFAa/4aq" "playOnLoad": false,
"preload": false,
"_id": "83KlD//C5CPoNZDG9T+bk/"
}, },
{ {
"__type__": "cc.Button", "__type__": "cc.Node",
"_name": "", "_name": "over",
"_objFlags": 0, "_objFlags": 0,
"node": { "_parent": {
"__id__": 119 "__id__": 112
}, },
"_enabled": true, "_children": [],
"_normalMaterial": null, "_active": true,
"_grayMaterial": null, "_components": [
"duration": 0.1, {
"zoomScale": 1.2, "__id__": 120
"clickEvents": [], }
"_N$interactable": true, ],
"_N$enableAutoGrayEffect": false, "_prefab": null,
"_N$transition": 0, "_opacity": 255,
"transition": 0, "_color": {
"_N$normalColor": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 255,
"b": 255, "b": 255,
"a": 255 "a": 255
}, },
"_N$pressedColor": { "_contentSize": {
"__type__": "cc.Color", "__type__": "cc.Size",
"r": 211, "width": 0,
"g": 211, "height": 0
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
}, },
"_N$hoverColor": { "_anchorPoint": {
"__type__": "cc.Color", "__type__": "cc.Vec2",
"r": 255, "x": 0.5,
"g": 255, "y": 0.5
"b": 255,
"a": 255
}, },
"hoverColor": { "_trs": {
"__type__": "cc.Color", "__type__": "TypedArray",
"r": 255, "ctor": "Float64Array",
"g": 255, "array": [
"b": 255, 0,
"a": 255 0,
0,
0,
0,
0,
1,
1,
1,
1
]
}, },
"_N$disabledColor": { "_eulerAngles": {
"__type__": "cc.Color", "__type__": "cc.Vec3",
"r": 124, "x": 0,
"g": 124, "y": 0,
"b": 124, "z": 0
"a": 255
}, },
"_N$normalSprite": null, "_skewX": 0,
"_N$pressedSprite": null, "_skewY": 0,
"pressedSprite": null, "_is3DNode": false,
"_N$hoverSprite": null, "_groupIndex": 0,
"hoverSprite": null, "groupIndex": 0,
"_N$disabledSprite": null, "_id": "26ZN/luEhEk4tGDWqJbzqB"
"_N$target": null,
"_id": "13zYQXNMhLRJ3fftkccK4B"
}, },
{ {
"__type__": "cc.Widget", "__type__": "cc.AudioSource",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 119 "__id__": 119
}, },
"_enabled": true, "_enabled": true,
"alignMode": 1, "_clip": {
"_target": null, "__uuid__": "1d2a489f-fbf4-4f48-948b-c1849cb5e4e9"
"_alignFlags": 9, },
"_left": 60.58299999999997, "_volume": 1,
"_right": 0, "_mute": false,
"_top": 41.752999999999986, "_loop": false,
"_bottom": 0, "_firstlyEnabled": true,
"_verticalCenter": 0, "playOnLoad": false,
"_horizontalCenter": 0, "preload": false,
"_isAbsLeft": true, "_id": "50ODJ0g1lBVIZKJY1p+c0/"
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "f9dcRi2RNGkLa4h3Cpoy/G"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.Node",
"root": { "_name": "layer_ending_hy17_hds",
"__id__": 118 "_objFlags": 0,
"_parent": {
"__id__": 2
}, },
"asset": { "_children": [
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d" {
"__id__": 122
}, },
"fileId": "61ulP3c3dDLb+4SfgnWK1F", {
"sync": false "__id__": 153
}
],
"_active": true,
"_components": [
{
"__id__": 158
}
],
"_prefab": {
"__id__": 159
},
"_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": "9fL1jTKw9Kb7LHcyXN52XS"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "img_npc_voice", "_name": "layer_center",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 118 "__id__": 121
}, },
"_children": [ "_children": [
{ {
"__id__": 125 "__id__": 123
},
{
"__id__": 126
}, },
{ {
"__id__": 128 "__id__": 128
}, },
{ {
"__id__": 131 "__id__": 131
} },
],
"_active": true,
"_components": [
{ {
"__id__": 134 "__id__": 134
},
{
"__id__": 137
},
{
"__id__": 140
} }
], ],
"_active": false,
"_components": [],
"_prefab": { "_prefab": {
"__id__": 135 "__id__": 152
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5567,8 +5659,8 @@ ...@@ -5567,8 +5659,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-638.532, 0,
437.61, 0,
0, 0,
0, 0,
0, 0,
...@@ -5590,37 +5682,37 @@ ...@@ -5590,37 +5682,37 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "b023TwkgNOPp47O5HFOfLa" "_id": "b4XpfIPKBA2r9HtDZ/K9aE"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "p1", "_name": "gray_cover",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 124 "__id__": 122
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 126 "__id__": 124
} }
], ],
"_prefab": { "_prefab": {
"__id__": 127 "__id__": 125
}, },
"_opacity": 255, "_opacity": 102,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 0,
"g": 255, "g": 0,
"b": 255, "b": 0,
"a": 255 "a": 255
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 68, "width": 3000,
"height": 70 "height": 3000
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -5631,8 +5723,8 @@ ...@@ -5631,8 +5723,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-10.611, -0.508,
0, 1.574,
0, 0,
0, 0,
0, 0,
...@@ -5654,14 +5746,14 @@ ...@@ -5654,14 +5746,14 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "07EIp9sT9LA6Bca+SjQani" "_id": "e5iQffh+dJfaV64RMrHAQd"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 125 "__id__": 123
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -5672,10 +5764,10 @@ ...@@ -5672,10 +5764,10 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "5d214bcc-ae6a-48b2-8e3e-693089d66911" "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 0,
"_fillType": 0, "_fillType": 0,
"_fillCenter": { "_fillCenter": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -5686,28 +5778,99 @@ ...@@ -5686,28 +5778,99 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "08LbWFKOxL/IJzbOE/fH5W" "_id": "f5k6x9Z6BJ9bzNRUFCZ2Nn"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 121
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "1cfNdHF9FH3KbwZyC/Rw6p",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layer_middle",
"_objFlags": 0,
"_parent": {
"__id__": 122
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 127
},
"_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": "b5u8UeL49Lka8ER0e7nCKF"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 118 "__id__": 121
}, },
"asset": { "asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
}, },
"fileId": "eeSSmA+sZKe4zFitN7jaL3", "fileId": "05udCU1VdI/agyYkkywj7D",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "p2", "_name": "replay_btn",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 124 "__id__": 122
}, },
"_children": [], "_children": [],
"_active": false, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 129 "__id__": 129
...@@ -5726,8 +5889,8 @@ ...@@ -5726,8 +5889,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 84, "width": 153,
"height": 70 "height": 153
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -5738,8 +5901,8 @@ ...@@ -5738,8 +5901,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-2.806, -500.013,
-0.005, -340.145,
0, 0,
0, 0,
0, 0,
...@@ -5761,7 +5924,7 @@ ...@@ -5761,7 +5924,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "3faLXcUixNlbhxFfTrfWGe" "_id": "c9JBeSLHtIV4mjMYlfRdWn"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -5779,7 +5942,7 @@ ...@@ -5779,7 +5942,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "008bbd55-b1e7-4e82-bf54-f6cf40ebb738" "__uuid__": "1b782eab-25d2-4314-b83a-258f7e4d7ea4"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -5793,28 +5956,28 @@ ...@@ -5793,28 +5956,28 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "31u8Fet3BIrbCdKxH+nsKA" "_id": "b2zhLcjRNGU7bpFf63AAW+"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 118 "__id__": 121
}, },
"asset": { "asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
}, },
"fileId": "29QTrf+y1JVa+D/t6K2NFr", "fileId": "64JkLZPOJB45Eawytu4dgS",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "p3", "_name": "bg_light",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 124 "__id__": 122
}, },
"_children": [], "_children": [],
"_active": false, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 132 "__id__": 132
...@@ -5833,8 +5996,8 @@ ...@@ -5833,8 +5996,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 95, "width": 1104,
"height": 70 "height": 1109
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -5845,7 +6008,7 @@ ...@@ -5845,7 +6008,7 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
2.8, 0,
0, 0,
0, 0,
0, 0,
...@@ -5868,7 +6031,7 @@ ...@@ -5868,7 +6031,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "ef3MbGdktKO68ALiSd9EMW" "_id": "99+pyVu2lDJrKTN62mofwQ"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -5886,7 +6049,7 @@ ...@@ -5886,7 +6049,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "603d0882-deba-4173-8432-b9da5e547d20" "__uuid__": "25fb3f92-bcc7-4131-9799-223ffe697b15"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -5900,126 +6063,36 @@ ...@@ -5900,126 +6063,36 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "f2kLeqp0NKwZIatWdXeEx1" "_id": "66kRmcXJtM87HxJ6vaQ+eH"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 118
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "4anvaDTjZFOb9U0HkCAMR2",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 124
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 321.46799999999996,
"_right": 0,
"_top": 102.38999999999999,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "99QYWVEEtAWqwVuuB4W5Yc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 118
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "fft5aHS35DjoYobvKkISue",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 118
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "ebCV5coOBMRY9mzGhX5spG"
},
{
"__type__": "7ab71itR/hJz4giCFo5yFB1",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 118
},
"_enabled": true,
"_id": "83Pdr6PU9BUoRB9BwC31cQ"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 118 "__id__": 121
}, },
"asset": { "asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
}, },
"fileId": "", "fileId": "06ZiT3YYpCj6mdNSxdYMvD",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "res", "_name": "finish_cat",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 122
},
"_children": [
{
"__id__": 140
},
{
"__id__": 143
}, },
"_children": [],
"_active": true,
"_components": [
{ {
"__id__": 146 "__id__": 135
} }
], ],
"_active": false, "_prefab": {
"_components": [], "__id__": 136
"_prefab": null, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -6030,8 +6103,8 @@ ...@@ -6030,8 +6103,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 512,
"height": 0 "height": 497.77919520611704
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -6043,7 +6116,7 @@ ...@@ -6043,7 +6116,7 @@
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 0,
0, -214.645,
0, 0,
0, 0,
0, 0,
...@@ -6065,85 +6138,76 @@ ...@@ -6065,85 +6138,76 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "0aAzbH6R1E+6AmGRrkKa5O" "_id": "c2p8aSr55IJb/HV6r7uU0U"
}, },
{ {
"__type__": "cc.Node", "__type__": "dragonBones.ArmatureDisplay",
"_name": "font", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "node": {
"__id__": 139 "__id__": 134
}, },
"_children": [ "_enabled": true,
"_materials": [
{ {
"__id__": 141 "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
} }
], ],
"_active": true, "_armatureName": "Armature",
"_components": [], "_animationName": "",
"_prefab": null, "_preCacheMode": 0,
"_opacity": 255, "_cacheMode": 0,
"_color": { "playTimes": -1,
"__type__": "cc.Color", "premultipliedAlpha": false,
"r": 255, "_armatureKey": "a3fdb391-e9ad-464d-ad51-2698de2b38e1#c9537625-dbfc-4d95-a3b3-d3d672dc93e6",
"g": 255, "_accTime": 0,
"b": 255, "_playCount": 0,
"a": 255 "_frameCache": null,
}, "_curFrame": null,
"_contentSize": { "_playing": false,
"__type__": "cc.Size", "_armatureCache": null,
"width": 0, "_N$dragonAsset": {
"height": 0 "__uuid__": "a3fdb391-e9ad-464d-ad51-2698de2b38e1"
}, },
"_anchorPoint": { "_N$dragonAtlasAsset": {
"__type__": "cc.Vec2", "__uuid__": "c9537625-dbfc-4d95-a3b3-d3d672dc93e6"
"x": 0.5,
"y": 0.5
}, },
"_trs": { "_N$_defaultArmatureIndex": 0,
"__type__": "TypedArray", "_N$_animationIndex": 0,
"ctor": "Float64Array", "_N$_defaultCacheMode": 0,
"array": [ "_N$timeScale": 1,
0, "_N$debugBones": false,
0, "_N$enableBatch": false,
0, "_id": "f0mphN5Q9C67Dg9BlSNkl0"
0,
0,
0,
1,
1,
1,
1
]
}, },
"_eulerAngles": { {
"__type__": "cc.Vec3", "__type__": "cc.PrefabInfo",
"x": 0, "root": {
"y": 0, "__id__": 121
"z": 0
}, },
"_skewX": 0, "asset": {
"_skewY": 0, "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"_is3DNode": false, },
"_groupIndex": 0, "fileId": "15OJA0Q/JIlJbDN8f4ukZN",
"groupIndex": 0, "sync": false
"_id": "9bLfcYeeNKrr524vzWchiM"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "BRLNSDB", "_name": "next_btn",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 140 "__id__": 122
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 142 "__id__": 138
} }
], ],
"_prefab": null, "_prefab": {
"__id__": 139
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -6154,8 +6218,8 @@ ...@@ -6154,8 +6218,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 153,
"height": 0 "height": 153
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -6166,8 +6230,8 @@ ...@@ -6166,8 +6230,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 500.013,
0, -343.546,
0, 0,
0, 0,
0, 0,
...@@ -6189,54 +6253,78 @@ ...@@ -6189,54 +6253,78 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "cfMLGsq0BMhJARv+ySMAxS" "_id": "2f2F0IOYpPt6u56E+mOpIv"
}, },
{ {
"__type__": "cc.Label", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 141 "__id__": 137
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_string": "", "_spriteFrame": {
"_N$string": "", "__uuid__": "9cddc7ee-9ccf-4dd5-86a6-94b3a5d69135"
"_fontSize": 40,
"_lineHeight": 40,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "c551970e-b095-45f3-9f1d-25cde8b8deb1"
}, },
"_isSystemFontUsed": false, "_type": 0,
"_spacingX": 0, "_sizeMode": 1,
"_batchAsBitmap": false, "_fillType": 0,
"_styleFlags": 0, "_fillCenter": {
"_underlineHeight": 0, "__type__": "cc.Vec2",
"_N$horizontalAlign": 0, "x": 0,
"_N$verticalAlign": 0, "y": 0
"_N$fontFamily": "Arial", },
"_N$overflow": 0, "_fillStart": 0,
"_N$cacheMode": 0, "_fillRange": 0,
"_id": "9bNHNPu5lC7rQYyr8ai/sY" "_isTrimmedMode": true,
"_atlas": null,
"_id": "7eQdLtpaBORK8CVVOytHvI"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 121
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "e68b5eJphElLrpxtQEdyxG",
"sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "img", "_name": "finish_box",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 139 "__id__": 122
}, },
"_children": [ "_children": [
{
"__id__": 141
},
{ {
"__id__": 144 "__id__": 144
},
{
"__id__": 147
} }
], ],
"_active": true, "_active": true,
"_components": [], "_components": [
"_prefab": null, {
"__id__": 150
}
],
"_prefab": {
"__id__": 151
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -6247,8 +6335,8 @@ ...@@ -6247,8 +6335,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 714,
"height": 0 "height": 166
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -6260,7 +6348,7 @@ ...@@ -6260,7 +6348,7 @@
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 0,
0, -204,
0, 0,
0, 0,
0, 0,
...@@ -6282,35 +6370,37 @@ ...@@ -6282,35 +6370,37 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "53LUHHG2pEr79fyrvazXJs" "_id": "101GENU0dFO49FItrNeKa0"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "icon", "_name": "result_text",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 143 "__id__": 140
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 145 "__id__": 142
} }
], ],
"_prefab": null, "_prefab": {
"__id__": 143
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 252,
"b": 255, "b": 232,
"a": 255 "a": 255
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 138, "width": 221.4,
"height": 141 "height": 56.7
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -6321,8 +6411,8 @@ ...@@ -6321,8 +6411,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, -88,
0, 10,
0, 0,
0, 0,
0, 0,
...@@ -6344,60 +6434,71 @@ ...@@ -6344,60 +6434,71 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "1blU2OArJIfoC9XfupGxJG" "_id": "ec2tYkMttAO4jkxatVoX6/"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Label",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 144 "__id__": 141
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_string": "恭喜你获得",
"__uuid__": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a" "_N$string": "恭喜你获得",
}, "_fontSize": 45,
"_type": 0, "_lineHeight": 45,
"_sizeMode": 1, "_enableWrapText": true,
"_fillType": 0, "_N$file": {
"_fillCenter": { "__uuid__": "e76aff25-445c-4315-8509-23d42bef3d57"
"__type__": "cc.Vec2",
"x": 0,
"y": 0
}, },
"_fillStart": 0, "_isSystemFontUsed": false,
"_fillRange": 0, "_spacingX": 0,
"_isTrimmedMode": true, "_batchAsBitmap": false,
"_atlas": null, "_styleFlags": 1,
"_id": "03GEWUEZJGyKormWgIWCtM" "_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "24CmND7kxBgqr36GpDbkli"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.PrefabInfo",
"_name": "audio", "root": {
"_objFlags": 0, "__id__": 121
"_parent": {
"__id__": 139
}, },
"_children": [ "asset": {
{ "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__id__": 147
}, },
{ "fileId": "eaTaVhDcBEkqwz8ACtP7x3",
"__id__": 149 "sync": false
}, },
{ {
"__id__": 151 "__type__": "cc.Node",
"_name": "coin",
"_objFlags": 0,
"_parent": {
"__id__": 140
}, },
"_children": [],
"_active": true,
"_components": [
{ {
"__id__": 153 "__id__": 145
} }
], ],
"_active": true, "_prefab": {
"_components": [], "__id__": 146
"_prefab": null, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -6408,8 +6509,8 @@ ...@@ -6408,8 +6509,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 67,
"height": 0 "height": 70
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -6420,8 +6521,8 @@ ...@@ -6420,8 +6521,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 83,
0, 10,
0, 0,
0, 0,
0, 0,
...@@ -6443,14 +6544,57 @@ ...@@ -6443,14 +6544,57 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "d9f+b0lmZGSJJae6zrADhp" "_id": "f1jpy2TPFM3K5IKon4LN2W"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 144
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "4c1488d1-d283-4f03-864e-742eedadf6d9"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "b6qvDnrPpKbaC4jDeoCa7f"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 121
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "13IYbTThlC5rDXn6k7swYV",
"sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "btn", "_name": "coin_num",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 146 "__id__": 140
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
...@@ -6459,31 +6603,33 @@ ...@@ -6459,31 +6603,33 @@
"__id__": 148 "__id__": 148
} }
], ],
"_prefab": null, "_prefab": {
"__id__": 149
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 252,
"b": 255, "b": 232,
"a": 255 "a": 255
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 55.04,
"height": 0 "height": 56.7
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
"x": 0.5, "x": 0,
"y": 0.5 "y": 0.5
}, },
"_trs": { "_trs": {
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 130.345,
0, 10,
0, 0,
0, 0,
0, 0,
...@@ -6505,123 +6651,123 @@ ...@@ -6505,123 +6651,123 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "e87DSaFCVJfb2PAUkf4/o7" "_id": "d6I5Uy41RCOY5erKa8EEXt"
}, },
{ {
"__type__": "cc.AudioSource", "__type__": "cc.Label",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 147 "__id__": 147
}, },
"_enabled": true, "_enabled": true,
"_clip": { "_materials": [
"__uuid__": "f0680ae0-c079-45ef-abd7-9e63d90b982b" {
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "X5",
"_N$string": "X5",
"_fontSize": 45,
"_lineHeight": 45,
"_enableWrapText": true,
"_N$file": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 1,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "74sCIX9bNA7ZEJzPAylycB"
}, },
"_volume": 1, {
"_mute": false, "__type__": "cc.PrefabInfo",
"_loop": false, "root": {
"_firstlyEnabled": true, "__id__": 121
"playOnLoad": false, },
"preload": false, "asset": {
"_id": "dey05oKrBIspvsDa6pOIQz" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "52Z0lpksxE1JprOrhHgdow",
"sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Sprite",
"_name": "show", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "node": {
"__id__": 146 "__id__": 140
}, },
"_children": [], "_enabled": true,
"_active": true, "_materials": [
"_components": [
{ {
"__id__": 150 "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
} }
], ],
"_prefab": null, "_srcBlendFactor": 770,
"_opacity": 255, "_dstBlendFactor": 771,
"_color": { "_spriteFrame": {
"__type__": "cc.Color", "__uuid__": "3180f64c-6ecd-455f-8a3d-3be96921ca7b"
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
}, },
"_anchorPoint": { "_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
"x": 0.5, "x": 0,
"y": 0.5 "y": 0
}, },
"_trs": { "_fillStart": 0,
"__type__": "TypedArray", "_fillRange": 0,
"ctor": "Float64Array", "_isTrimmedMode": true,
"array": [ "_atlas": null,
0, "_id": "3b59DH0aBB3Ir8+Hqc5TsA"
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}, },
"_eulerAngles": { {
"__type__": "cc.Vec3", "__type__": "cc.PrefabInfo",
"x": 0, "root": {
"y": 0, "__id__": 121
"z": 0
}, },
"_skewX": 0, "asset": {
"_skewY": 0, "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"_is3DNode": false, },
"_groupIndex": 0, "fileId": "911Shrt8NB/ZWFA9u7l/SL",
"groupIndex": 0, "sync": false
"_id": "20k+CzJMFG4oN/fub0R6Qs"
}, },
{ {
"__type__": "cc.AudioSource", "__type__": "cc.PrefabInfo",
"_name": "", "root": {
"_objFlags": 0, "__id__": 121
"node": {
"__id__": 149
}, },
"_enabled": true, "asset": {
"_clip": { "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "1cd6e449-075c-4865-8675-8a8ade389e36"
}, },
"_volume": 1, "fileId": "7cG7U7lH9Ie5/sK83LZUCP",
"_mute": false, "sync": false
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "cfiik2a4dOs4S6pqyQVPCp"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "coin", "_name": "res",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 146 "__id__": 121
}, },
"_children": [], "_children": [
"_active": true,
"_components": [
{ {
"__id__": 152 "__id__": 154
} }
], ],
"_prefab": null, "_active": true,
"_components": [],
"_prefab": {
"__id__": 157
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -6667,42 +6813,25 @@ ...@@ -6667,42 +6813,25 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "64ozQcUuNN1KmZigunHnJG" "_id": "a2SLGghd5MepmB+CYcwfRq"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 151
},
"_enabled": true,
"_clip": {
"__uuid__": "df0d8c54-ea16-46f8-83fd-eb29764a4e1e"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "83KlD//C5CPoNZDG9T+bk/"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "over", "_name": "ending",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 146 "__id__": 153
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 154 "__id__": 155
} }
], ],
"_prefab": null, "_prefab": {
"__id__": 156
},
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
...@@ -6748,18 +6877,18 @@ ...@@ -6748,18 +6877,18 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "26ZN/luEhEk4tGDWqJbzqB" "_id": "6eXMJ8Y/dF9rbM/PVpT+S5"
}, },
{ {
"__type__": "cc.AudioSource", "__type__": "cc.AudioSource",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 153 "__id__": 154
}, },
"_enabled": true, "_enabled": true,
"_clip": { "_clip": {
"__uuid__": "1d2a489f-fbf4-4f48-948b-c1849cb5e4e9" "__uuid__": "78fa786c-cb39-47d2-a4a8-c6325aa156bb"
}, },
"_volume": 1, "_volume": 1,
"_mute": false, "_mute": false,
...@@ -6767,7 +6896,50 @@ ...@@ -6767,7 +6896,50 @@
"_firstlyEnabled": true, "_firstlyEnabled": true,
"playOnLoad": false, "playOnLoad": false,
"preload": false, "preload": false,
"_id": "50ODJ0g1lBVIZKJY1p+c0/" "_id": "e2+Ozd/QpOBKI0a7yDTpNB"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 121
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "f9vxaSJK5EpYuRQDkXL09t",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 121
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "4cGmarm1NKC6LGDcWWF/bS",
"sync": false
},
{
"__type__": "8aa900+eYBD775dNwfvQqgE",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 121
},
"_enabled": true,
"_id": "14JWQRWWhLs6H4AT7JgNhq"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 121
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "",
"sync": false
}, },
{ {
"__type__": "cc.Canvas", "__type__": "cc.Canvas",
......
...@@ -132,12 +132,18 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -132,12 +132,18 @@ export default class SceneComponent extends MyCocosSceneComponent {
} }
onTouchReplay() { onTouchReplay() {
this.playBtnAudio()
this.initGame() this.initGame()
} }
onTouchNext() { onTouchNext() {
this.playBtnAudio()
this.initGame() this.initGame()
} }
playBtnAudio(){
let btn_audio = pg.view.find(this.res,"audio/btn")
pg.audio.playLocalAudio(btn_audio)
}
//--------------------------------Record----------------------------- //--------------------------------Record-----------------------------
private letter: string; private letter: string;
......
...@@ -2,6 +2,8 @@ export const defaultData = ...@@ -2,6 +2,8 @@ export const defaultData =
{ {
"recordFlag": false, "title": "", "questionText": "", "questionTextAudio": "", "questions": [ "recordFlag": false, "title": "", "questionText": "", "questionTextAudio": "", "questions": [
{ "text": "apple", "time": 2 }, { "text": "apple", "time": 2 },
{ "text": "pear", "time": 2 },
{ "text": "pencil", "time": 2 },
{ "text": "While there is life there is hope", "time": 2 }], "bgAudio": "", "bgAudioName": "", "audioName": "" { "text": "While there is life there is hope", "time": 2 }], "bgAudio": "", "bgAudioName": "", "audioName": ""
} }
// { // {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment