Commit 08adcf58 authored by yu's avatar yu

1

parent e20a93eb
...@@ -11,6 +11,7 @@ const { ccclass, property } = cc._decorator; ...@@ -11,6 +11,7 @@ const { ccclass, property } = cc._decorator;
export default class LayerBack extends cc.Component { export default class LayerBack extends cc.Component {
private btn_back: cc.Node; private btn_back: cc.Node;
private img_npc_voice: cc.Node; private img_npc_voice: cc.Node;
private bg_forbid: cc.Node;
onLoad() { onLoad() {
this.initView(); this.initView();
this.initEvent(); this.initEvent();
...@@ -19,6 +20,7 @@ export default class LayerBack extends cc.Component { ...@@ -19,6 +20,7 @@ export default class LayerBack extends cc.Component {
initView() { initView() {
this.bg_forbid = pg.view.find(this, 'bg_forbid')
this.btn_back = pg.view.find(this, 'btn_back') this.btn_back = pg.view.find(this, 'btn_back')
this.label_title = pg.view.find(this, 'label_title') this.label_title = pg.view.find(this, 'label_title')
this.img_npc_voice = pg.view.find(this.label_title, 'img_npc_voice') this.img_npc_voice = pg.view.find(this.label_title, 'img_npc_voice')
...@@ -38,6 +40,7 @@ export default class LayerBack extends cc.Component { ...@@ -38,6 +40,7 @@ export default class LayerBack extends cc.Component {
pg.event.on('npc_layer_back_init', (data) => { pg.event.on('npc_layer_back_init', (data) => {
this.updateView(data); this.updateView(data);
if (!this.npcAudio) { if (!this.npcAudio) {
pg.view.visible(this.bg_forbid, false)
pg.event.emit('npc_voice_play_voice_end'); pg.event.emit('npc_voice_play_voice_end');
} else { } else {
this.playVoiceStart(); this.playVoiceStart();
...@@ -55,6 +58,7 @@ export default class LayerBack extends cc.Component { ...@@ -55,6 +58,7 @@ export default class LayerBack extends cc.Component {
this.schedule(this.playVoiceRunning, 0.3) this.schedule(this.playVoiceRunning, 0.3)
pg.audio.playAudioByUrl(this.npcAudio, () => { pg.audio.playAudioByUrl(this.npcAudio, () => {
this.playVoiceEnd(); this.playVoiceEnd();
pg.view.visible(this.bg_forbid, false)
pg.event.emit('npc_voice_play_voice_end') pg.event.emit('npc_voice_play_voice_end')
}, (audioId) => { }, (audioId) => {
this.audioId = audioId; this.audioId = audioId;
...@@ -87,3 +91,5 @@ export default class LayerBack extends cc.Component { ...@@ -87,3 +91,5 @@ export default class LayerBack extends cc.Component {
} }
...@@ -21,7 +21,8 @@ export default class LayerEnding extends cc.Component { ...@@ -21,7 +21,8 @@ export default class LayerEnding extends cc.Component {
pg.view.touchOn(this.replay_btn, this.onTouchReplay, this) pg.view.touchOn(this.replay_btn, this.onTouchReplay, this)
pg.view.touchOn(this.next_btn, this.onTouchNext, this) pg.view.touchOn(this.next_btn, this.onTouchNext, this)
pg.event.on('layer_ending_show', (data) => { pg.event.on('layer_ending_show', (data) => {
this.showLayer(data); // this.showLayer(data);
this.onTouchNext();
}) })
} }
showLayer(data) { showLayer(data) {
...@@ -44,14 +45,24 @@ export default class LayerEnding extends cc.Component { ...@@ -44,14 +45,24 @@ export default class LayerEnding extends cc.Component {
onTouchNext() { onTouchNext() {
pg.view.visible(this.layer_center, false) pg.view.visible(this.layer_center, false)
const middleLayer = cc.find('middleLayer'); const middleLayer = cc.find('middleLayer');
if (!middleLayer) return this.log("no middleLayer ");
const middleLayerComponent = middleLayer.getComponent('middleLayer'); const middleLayerComponent = middleLayer.getComponent('middleLayer');
const { index, length } = middleLayerComponent.getPageInfo(); // 返回 length:有多少页; index: 当前第几页(从0开始) const { index, length } = middleLayerComponent.getPageInfo(); // 返回 length:有多少页; index: 当前第几页(从0开始)
this.log("跳转到下一页 ");
if (index == length - 1) { if (index == length - 1) {
middleLayerComponent.goNextCross(); // 跳转到下一关卡 middleLayerComponent.goNextCross(); // 跳转到下一关卡
} else { } else {
middleLayerComponent.goNextPage(); // 跳转到下一页 middleLayerComponent.goNextPage(); // 跳转到下一页
} }
} }
log(str) {
const node = cc.find('middleLayer');
if (node) {
node.getComponent('middleLayer').log(str);
} else {
cc.log(str);
}
}
} }
// pg.event.emit('img_voice_play_voice_start')
// pg.event.emit('img_voice_play_voice_end')
import pg from "../../scene/tool/pg_hy02_paopao";
const { ccclass, property } = cc._decorator;
@ccclass
export default class Candy extends cc.Component {
@property(cc.Float)
private jumpHeight: number = 80;
@property(cc.Boolean)
private isHide: boolean = false;
onLoad() {
this.initView();
this.playVoiceStart();
}
initView() {
}
initEvent() {
// pg.event.on('img_voice_play_voice_start', () => {
// this.playVoiceStart();
// })
// pg.event.on('img_voice_play_voice_end', () => {
// })
}
private playVoiceCount: number;
playVoiceStart() {
this.node.children.forEach((ch, idx) => {
let x = ch.x;
let y = ch.y;
ch.x = 0;
ch.y = 0;
let ju = cc.jumpBy(0.5, cc.v2(x, y), this.jumpHeight, 1);
let call = cc.callFunc(() => {
if (idx == this.node.children.length - 1)
pg.event.emit("camdy_action_end", this.node);
if (this.isHide) this.node.active = !this.isHide;
})
// ch.runAction(ju);
cc.tween(ch).sequence(ju, call).start();
})
}
playVoiceRunning() {
}
}
{
"ver": "1.0.8",
"uuid": "28693845-7bc7-4258-b8e4-edc0125b4ead",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "31794732-3b0e-4ee4-9d36-bcf429614a2b",
"subMetas": {}
}
\ No newline at end of file
...@@ -90,22 +90,22 @@ ...@@ -90,22 +90,22 @@
"__id__": 56 "__id__": 56
}, },
{ {
"__id__": 73 "__id__": 77
}, },
{ {
"__id__": 95 "__id__": 99
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 134 "__id__": 138
}, },
{ {
"__id__": 135 "__id__": 139
}, },
{ {
"__id__": 136 "__id__": 140
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -2093,8 +2093,10 @@ ...@@ -2093,8 +2093,10 @@
"_fontSize": 75, "_fontSize": 75,
"_lineHeight": 85, "_lineHeight": 85,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": null, "_N$file": {
"_isSystemFontUsed": true, "__uuid__": "48969b30-fcda-4b40-958a-a59150c71e03"
},
"_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
"_batchAsBitmap": false, "_batchAsBitmap": false,
"_styleFlags": 0, "_styleFlags": 0,
...@@ -2713,15 +2715,18 @@ ...@@ -2713,15 +2715,18 @@
}, },
{ {
"__id__": 61 "__id__": 61
},
{
"__id__": 72
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 71 "__id__": 75
}, },
{ {
"__id__": 72 "__id__": 76
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -2983,6 +2988,9 @@ ...@@ -2983,6 +2988,9 @@
"_components": [ "_components": [
{ {
"__id__": 70 "__id__": 70
},
{
"__id__": 71
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -2997,7 +3005,7 @@ ...@@ -2997,7 +3005,7 @@
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 150.74, "width": 150.74,
"height": 63 "height": 50
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -3446,9 +3454,196 @@ ...@@ -3446,9 +3454,196 @@
"_N$verticalAlign": 1, "_N$verticalAlign": 1,
"_N$fontFamily": "Arial", "_N$fontFamily": "Arial",
"_N$overflow": 0, "_N$overflow": 0,
"_N$cacheMode": 0, "_N$cacheMode": 2,
"_id": "2dgZZlq5BHkIY+p4+7NMZS" "_id": "2dgZZlq5BHkIY+p4+7NMZS"
}, },
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 61
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 274.52700000000004,
"_right": 0,
"_top": 73.89999999999998,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "f1rtxvmQlHsrRPWEieg/zy"
},
{
"__type__": "cc.Node",
"_name": "bg_forbid",
"_objFlags": 0,
"_parent": {
"__id__": 56
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 73
},
{
"__id__": 74
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1920,
"height": 1080
},
"_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": "93v1OTrPZIaYYoYOsDJatH"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 72
},
"_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": "ab15uZn61PSJxzHVt+ND+8"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 72
},
"_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": "bds251lD9I+oJyyDEBCIrE"
},
{ {
"__type__": "cc.Widget", "__type__": "cc.Widget",
"_name": "", "_name": "",
...@@ -3495,20 +3690,20 @@ ...@@ -3495,20 +3690,20 @@
}, },
"_children": [ "_children": [
{ {
"__id__": 74 "__id__": 78
}, },
{ {
"__id__": 88 "__id__": 92
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 93 "__id__": 97
} }
], ],
"_prefab": { "_prefab": {
"__id__": 94 "__id__": 98
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -3562,26 +3757,26 @@ ...@@ -3562,26 +3757,26 @@
"_name": "layout_center", "_name": "layout_center",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 73 "__id__": 77
}, },
"_children": [ "_children": [
{ {
"__id__": 75 "__id__": 79
}, },
{ {
"__id__": 78 "__id__": 82
}, },
{ {
"__id__": 81 "__id__": 85
}, },
{ {
"__id__": 84 "__id__": 88
} }
], ],
"_active": false, "_active": false,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 87 "__id__": 91
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -3635,17 +3830,17 @@ ...@@ -3635,17 +3830,17 @@
"_name": "bg_gray", "_name": "bg_gray",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 74 "__id__": 78
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 76 "__id__": 80
} }
], ],
"_prefab": { "_prefab": {
"__id__": 77 "__id__": 81
}, },
"_opacity": 102, "_opacity": 102,
"_color": { "_color": {
...@@ -3699,7 +3894,7 @@ ...@@ -3699,7 +3894,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 75 "__id__": 79
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -3729,7 +3924,7 @@ ...@@ -3729,7 +3924,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -3742,17 +3937,17 @@ ...@@ -3742,17 +3937,17 @@
"_name": "aniNode1", "_name": "aniNode1",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 74 "__id__": 78
}, },
"_children": [], "_children": [],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 79 "__id__": 83
} }
], ],
"_prefab": { "_prefab": {
"__id__": 80 "__id__": 84
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -3806,7 +4001,7 @@ ...@@ -3806,7 +4001,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 78 "__id__": 82
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -3844,7 +4039,7 @@ ...@@ -3844,7 +4039,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -3857,17 +4052,17 @@ ...@@ -3857,17 +4052,17 @@
"_name": "aniNode2", "_name": "aniNode2",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 74 "__id__": 78
}, },
"_children": [], "_children": [],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 82 "__id__": 86
} }
], ],
"_prefab": { "_prefab": {
"__id__": 83 "__id__": 87
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -3921,7 +4116,7 @@ ...@@ -3921,7 +4116,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 81 "__id__": 85
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -3957,7 +4152,7 @@ ...@@ -3957,7 +4152,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -3970,17 +4165,17 @@ ...@@ -3970,17 +4165,17 @@
"_name": "aniNode3", "_name": "aniNode3",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 74 "__id__": 78
}, },
"_children": [], "_children": [],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 85 "__id__": 89
} }
], ],
"_prefab": { "_prefab": {
"__id__": 86 "__id__": 90
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4034,7 +4229,7 @@ ...@@ -4034,7 +4229,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 84 "__id__": 88
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -4072,7 +4267,7 @@ ...@@ -4072,7 +4267,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -4083,7 +4278,7 @@ ...@@ -4083,7 +4278,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -4096,17 +4291,17 @@ ...@@ -4096,17 +4291,17 @@
"_name": "res", "_name": "res",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 73 "__id__": 77
}, },
"_children": [ "_children": [
{ {
"__id__": 89 "__id__": 93
} }
], ],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 92 "__id__": 96
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4160,17 +4355,17 @@ ...@@ -4160,17 +4355,17 @@
"_name": "coin", "_name": "coin",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 88 "__id__": 92
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 90 "__id__": 94
} }
], ],
"_prefab": { "_prefab": {
"__id__": 91 "__id__": 95
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4224,7 +4419,7 @@ ...@@ -4224,7 +4419,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 89 "__id__": 93
}, },
"_enabled": true, "_enabled": true,
"_clip": { "_clip": {
...@@ -4241,7 +4436,7 @@ ...@@ -4241,7 +4436,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -4252,7 +4447,7 @@ ...@@ -4252,7 +4447,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -4265,7 +4460,7 @@ ...@@ -4265,7 +4460,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 73 "__id__": 77
}, },
"_enabled": true, "_enabled": true,
"_id": "d4ZdiH7OpDIZqWGFcXl+tf" "_id": "d4ZdiH7OpDIZqWGFcXl+tf"
...@@ -4273,7 +4468,7 @@ ...@@ -4273,7 +4468,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 73 "__id__": 77
}, },
"asset": { "asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747" "__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...@@ -4290,20 +4485,20 @@ ...@@ -4290,20 +4485,20 @@
}, },
"_children": [ "_children": [
{ {
"__id__": 96 "__id__": 100
}, },
{ {
"__id__": 127 "__id__": 131
} }
], ],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 132 "__id__": 136
} }
], ],
"_prefab": { "_prefab": {
"__id__": 133 "__id__": 137
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4357,35 +4552,35 @@ ...@@ -4357,35 +4552,35 @@
"_name": "layer_center", "_name": "layer_center",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 95 "__id__": 99
}, },
"_children": [ "_children": [
{ {
"__id__": 97 "__id__": 101
}, },
{ {
"__id__": 100 "__id__": 104
}, },
{ {
"__id__": 102 "__id__": 106
}, },
{ {
"__id__": 105 "__id__": 109
}, },
{ {
"__id__": 108 "__id__": 112
}, },
{ {
"__id__": 111 "__id__": 115
}, },
{ {
"__id__": 114 "__id__": 118
} }
], ],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 126 "__id__": 130
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4439,17 +4634,17 @@ ...@@ -4439,17 +4634,17 @@
"_name": "gray_cover", "_name": "gray_cover",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 98 "__id__": 102
} }
], ],
"_prefab": { "_prefab": {
"__id__": 99 "__id__": 103
}, },
"_opacity": 102, "_opacity": 102,
"_color": { "_color": {
...@@ -4503,7 +4698,7 @@ ...@@ -4503,7 +4698,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 97 "__id__": 101
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -4533,7 +4728,7 @@ ...@@ -4533,7 +4728,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -4546,13 +4741,13 @@ ...@@ -4546,13 +4741,13 @@
"_name": "layer_middle", "_name": "layer_middle",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 101 "__id__": 105
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4604,7 +4799,7 @@ ...@@ -4604,7 +4799,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -4617,17 +4812,17 @@ ...@@ -4617,17 +4812,17 @@
"_name": "replay_btn", "_name": "replay_btn",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 103 "__id__": 107
} }
], ],
"_prefab": { "_prefab": {
"__id__": 104 "__id__": 108
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4681,7 +4876,7 @@ ...@@ -4681,7 +4876,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 102 "__id__": 106
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -4711,7 +4906,7 @@ ...@@ -4711,7 +4906,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -4724,17 +4919,17 @@ ...@@ -4724,17 +4919,17 @@
"_name": "bg_light", "_name": "bg_light",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 106 "__id__": 110
} }
], ],
"_prefab": { "_prefab": {
"__id__": 107 "__id__": 111
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4788,7 +4983,7 @@ ...@@ -4788,7 +4983,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 105 "__id__": 109
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -4818,7 +5013,7 @@ ...@@ -4818,7 +5013,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -4831,17 +5026,17 @@ ...@@ -4831,17 +5026,17 @@
"_name": "finish_cat", "_name": "finish_cat",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 109 "__id__": 113
} }
], ],
"_prefab": { "_prefab": {
"__id__": 110 "__id__": 114
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -4895,7 +5090,7 @@ ...@@ -4895,7 +5090,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 108 "__id__": 112
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -4933,7 +5128,7 @@ ...@@ -4933,7 +5128,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -4946,17 +5141,17 @@ ...@@ -4946,17 +5141,17 @@
"_name": "next_btn", "_name": "next_btn",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 112 "__id__": 116
} }
], ],
"_prefab": { "_prefab": {
"__id__": 113 "__id__": 117
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5010,7 +5205,7 @@ ...@@ -5010,7 +5205,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 111 "__id__": 115
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -5040,7 +5235,7 @@ ...@@ -5040,7 +5235,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5053,27 +5248,27 @@ ...@@ -5053,27 +5248,27 @@
"_name": "finish_box", "_name": "finish_box",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 96 "__id__": 100
}, },
"_children": [ "_children": [
{ {
"__id__": 115 "__id__": 119
}, },
{ {
"__id__": 118 "__id__": 122
}, },
{ {
"__id__": 121 "__id__": 125
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 124 "__id__": 128
} }
], ],
"_prefab": { "_prefab": {
"__id__": 125 "__id__": 129
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5127,17 +5322,17 @@ ...@@ -5127,17 +5322,17 @@
"_name": "result_text", "_name": "result_text",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 114 "__id__": 118
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 116 "__id__": 120
} }
], ],
"_prefab": { "_prefab": {
"__id__": 117 "__id__": 121
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5191,7 +5386,7 @@ ...@@ -5191,7 +5386,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 115 "__id__": 119
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -5222,7 +5417,7 @@ ...@@ -5222,7 +5417,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5235,17 +5430,17 @@ ...@@ -5235,17 +5430,17 @@
"_name": "coin", "_name": "coin",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 114 "__id__": 118
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 119 "__id__": 123
} }
], ],
"_prefab": { "_prefab": {
"__id__": 120 "__id__": 124
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5299,7 +5494,7 @@ ...@@ -5299,7 +5494,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 118 "__id__": 122
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -5329,7 +5524,7 @@ ...@@ -5329,7 +5524,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5342,17 +5537,17 @@ ...@@ -5342,17 +5537,17 @@
"_name": "coin_num", "_name": "coin_num",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 114 "__id__": 118
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 122 "__id__": 126
} }
], ],
"_prefab": { "_prefab": {
"__id__": 123 "__id__": 127
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5406,7 +5601,7 @@ ...@@ -5406,7 +5601,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 121 "__id__": 125
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -5437,7 +5632,7 @@ ...@@ -5437,7 +5632,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5450,7 +5645,7 @@ ...@@ -5450,7 +5645,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 114 "__id__": 118
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -5480,7 +5675,7 @@ ...@@ -5480,7 +5675,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5491,7 +5686,7 @@ ...@@ -5491,7 +5686,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5504,17 +5699,17 @@ ...@@ -5504,17 +5699,17 @@
"_name": "res", "_name": "res",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 95 "__id__": 99
}, },
"_children": [ "_children": [
{ {
"__id__": 128 "__id__": 132
} }
], ],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 131 "__id__": 135
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5568,17 +5763,17 @@ ...@@ -5568,17 +5763,17 @@
"_name": "ending", "_name": "ending",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 127 "__id__": 131
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 129 "__id__": 133
} }
], ],
"_prefab": { "_prefab": {
"__id__": 130 "__id__": 134
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -5632,7 +5827,7 @@ ...@@ -5632,7 +5827,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 128 "__id__": 132
}, },
"_enabled": true, "_enabled": true,
"_clip": { "_clip": {
...@@ -5649,7 +5844,7 @@ ...@@ -5649,7 +5844,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5660,7 +5855,7 @@ ...@@ -5660,7 +5855,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5673,7 +5868,7 @@ ...@@ -5673,7 +5868,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 95 "__id__": 99
}, },
"_enabled": true, "_enabled": true,
"_id": "03a4TpVrJNOYeDrHrNVjfe" "_id": "03a4TpVrJNOYeDrHrNVjfe"
...@@ -5681,7 +5876,7 @@ ...@@ -5681,7 +5876,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 95 "__id__": 99
}, },
"asset": { "asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822" "__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...@@ -5757,10 +5952,10 @@ ...@@ -5757,10 +5952,10 @@
"__id__": 56 "__id__": 56
}, },
"layer_right": { "layer_right": {
"__id__": 95 "__id__": 99
}, },
"layer_coin": { "layer_coin": {
"__id__": 73 "__id__": 77
}, },
"_id": "dfknLfL6tLKoTV2dd1uvh+" "_id": "dfknLfL6tLKoTV2dd1uvh+"
} }
......
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