Commit 2c783666 authored by yu's avatar yu

1

parent 0d99bf99
{
"ver": "1.1.2",
"uuid": "19a64a93-34ed-4e65-9303-d0a268c1803c",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "927f6c73-f3af-4c69-a990-9dc6668dbb70",
"subMetas": {}
}
\ No newline at end of file
// pg.event.emit('npc_layer_back_init',{ })
// pg.event.emit('npc_voice_play_voice_start') // pg.event.emit('npc_voice_play_voice_start')
// pg.event.emit('npc_voice_play_voice_end') // pg.event.emit('npc_voice_play_voice_end')
import pg from "../../scene/pg_hy14_pipei"; import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ccclass @ccclass
...@@ -14,25 +16,50 @@ export default class LayerBack extends cc.Component { ...@@ -14,25 +16,50 @@ export default class LayerBack extends cc.Component {
this.initView(); this.initView();
this.initEvent(); this.initEvent();
} }
private label_title: cc.Node;
initView() { initView() {
this.btn_back = pg.view.find(this, 'btn_back') this.btn_back = pg.view.find(this, 'btn_back')
this.img_npc_voice = pg.view.find(this, 'img_npc_voice') this.label_title = pg.view.find(this, 'label_title')
this.img_npc_voice = pg.view.find(this.label_title, 'img_npc_voice')
pg.view.touchOn(this.img_npc_voice, this.playVoiceStart, this);
}
private npcTitle: string;
private npcAudio: string;
updateView(data) {
this.npcTitle = data.npcTitle
this.npcAudio = data.npcAudio
pg.view.visible(this.img_npc_voice, this.npcAudio)
pg.view.visible(this.label_title, this.npcTitle)
pg.view.setString(this.label_title, this.npcTitle);
} }
initEvent() { initEvent() {
pg.view.touchOn(this.btn_back, this.onTouchBack, this) pg.view.touchOn(this.btn_back, this.onTouchBack, this)
pg.event.on('npc_layer_back_init', (data) => {
pg.event.on('npc_voice_play_voice_start', () => { this.updateView(data);
this.playVoiceStart(); if (!this.npcAudio) {
}) pg.event.emit('npc_voice_play_voice_end');
pg.event.on('npc_voice_play_voice_end', () => { } else {
this.playVoiceEnd(); this.playVoiceStart();
}
}) })
} }
private playVoiceCount: number; private playVoiceCount: number;
private audioId: number;
playVoiceStart() { playVoiceStart() {
if (this.playVoiceCount > 0) return; if (this.playVoiceCount > 0) {
if (this.audioId) cc.audioEngine.stopEffect(this.audioId);
this.playVoiceEnd();
}
this.playVoiceCount = 0; this.playVoiceCount = 0;
this.schedule(this.playVoiceRunning, 0.3) this.schedule(this.playVoiceRunning, 0.3)
pg.audio.playAudioByUrl(this.npcAudio, () => {
this.playVoiceEnd();
pg.event.emit('npc_voice_play_voice_end')
}, (audioId) => {
this.audioId = audioId;
});
} }
playVoiceRunning() { playVoiceRunning() {
this.playVoiceCount++; this.playVoiceCount++;
...@@ -54,7 +81,9 @@ export default class LayerBack extends cc.Component { ...@@ -54,7 +81,9 @@ export default class LayerBack extends cc.Component {
p3.active = false; p3.active = false;
} }
onTouchBack() { onTouchBack() {
alert('back') const middleLayer = cc.find('middleLayer');
const middleLayerComponent = middleLayer.getComponent('middleLayer');
middleLayerComponent.exitGame();
} }
} }
...@@ -62,4 +91,3 @@ export default class LayerBack extends cc.Component { ...@@ -62,4 +91,3 @@ export default class LayerBack extends cc.Component {
...@@ -27,14 +27,14 @@ ...@@ -27,14 +27,14 @@
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 19 "__id__": 22
}, },
{ {
"__id__": 20 "__id__": 23
} }
], ],
"_prefab": { "_prefab": {
"__id__": 21 "__id__": 24
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -58,8 +58,8 @@ ...@@ -58,8 +58,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 960,
0, 540,
0, 0,
0, 0,
0, 0,
...@@ -286,14 +286,14 @@ ...@@ -286,14 +286,14 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "61ulP3c3dDLb+4SfgnWK1F", "fileId": "61ulP3c3dDLb+4SfgnWK1F",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "img_npc_voice", "_name": "label_title",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 1 "__id__": 1
...@@ -301,22 +301,90 @@ ...@@ -301,22 +301,90 @@
"_children": [ "_children": [
{ {
"__id__": 8 "__id__": 8
}
],
"_active": true,
"_components": [
{
"__id__": 20
}
],
"_prefab": {
"__id__": 21
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 188,
"g": 132,
"b": 235,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 150.74,
"height": 63
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-685.473,
441.1,
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": "img_npc_voice",
"_objFlags": 0,
"_parent": {
"__id__": 7
},
"_children": [
{
"__id__": 9
}, },
{ {
"__id__": 11 "__id__": 12
}, },
{ {
"__id__": 14 "__id__": 15
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 17 "__id__": 18
} }
], ],
"_prefab": { "_prefab": {
"__id__": 18 "__id__": 19
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -328,8 +396,8 @@ ...@@ -328,8 +396,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 100,
"height": 0 "height": 100
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -340,8 +408,8 @@ ...@@ -340,8 +408,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-638.532, 208.95399999999995,
437.61, 0,
0, 0,
0, 0,
0, 0,
...@@ -370,17 +438,17 @@ ...@@ -370,17 +438,17 @@
"_name": "p1", "_name": "p1",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 8
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 9 "__id__": 10
} }
], ],
"_prefab": { "_prefab": {
"__id__": 10 "__id__": 11
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -434,7 +502,7 @@ ...@@ -434,7 +502,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 8 "__id__": 9
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -467,9 +535,9 @@ ...@@ -467,9 +535,9 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "eeSSmA+sZKe4zFitN7jaL3", "fileId": "24sc3KKz1GwYD9fN1vST/m",
"sync": false "sync": false
}, },
{ {
...@@ -477,17 +545,17 @@ ...@@ -477,17 +545,17 @@
"_name": "p2", "_name": "p2",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 8
}, },
"_children": [], "_children": [],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 12 "__id__": 13
} }
], ],
"_prefab": { "_prefab": {
"__id__": 13 "__id__": 14
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -541,7 +609,7 @@ ...@@ -541,7 +609,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 11 "__id__": 12
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -574,9 +642,9 @@ ...@@ -574,9 +642,9 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "29QTrf+y1JVa+D/t6K2NFr", "fileId": "3eNvEzM/JP56UZzdtTQAIN",
"sync": false "sync": false
}, },
{ {
...@@ -584,17 +652,17 @@ ...@@ -584,17 +652,17 @@
"_name": "p3", "_name": "p3",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 8
}, },
"_children": [], "_children": [],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 15 "__id__": 16
} }
], ],
"_prefab": { "_prefab": {
"__id__": 16 "__id__": 17
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -648,7 +716,7 @@ ...@@ -648,7 +716,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 14 "__id__": 15
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -681,9 +749,9 @@ ...@@ -681,9 +749,9 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "4anvaDTjZFOb9U0HkCAMR2", "fileId": "72yribDepLjZha4CRHI/xf",
"sync": false "sync": false
}, },
{ {
...@@ -691,15 +759,15 @@ ...@@ -691,15 +759,15 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 7 "__id__": 8
}, },
"_enabled": true, "_enabled": true,
"alignMode": 1, "alignMode": 2,
"_target": null, "_target": null,
"_alignFlags": 9, "_alignFlags": 32,
"_left": 321.46799999999996, "_left": 0,
"_right": 0, "_right": -108.21399999999997,
"_top": 102.38999999999999, "_top": 0,
"_bottom": 0, "_bottom": 0,
"_verticalCenter": 0, "_verticalCenter": 0,
"_horizontalCenter": 0, "_horizontalCenter": 0,
...@@ -719,9 +787,55 @@ ...@@ -719,9 +787,55 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "e4KS5h7tdFiJnCxI3YJ5LQ",
"sync": false
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 7
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "I Spell",
"_N$string": "I Spell",
"_fontSize": 50,
"_lineHeight": 50,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "927f6c73-f3af-4c69-a990-9dc6668dbb70"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "fft5aHS35DjoYobvKkISue", "fileId": "0aBC7NPVlMNKQpHcVkCq5H",
"sync": false "sync": false
}, },
{ {
...@@ -767,7 +881,7 @@ ...@@ -767,7 +881,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
}, },
"fileId": "", "fileId": "",
"sync": false "sync": false
......
{
"ver": "1.1.2",
"uuid": "508c4cc0-7802-495f-8c13-85a2a81c52cd",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "5302f1d3-299b-4ec3-82d6-b6229fca203f",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "3d98b47f-f41e-4bf1-a130-a5edf51b794d",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "7d43789c-0138-4603-82af-1892d2cad30a",
"downloadMode": 0,
"duration": 1.085333,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "815cbe35-e740-4514-a84b-9fa42bd3957f",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"ver": "1.0.1",
"uuid": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b",
"subMetas": {}
}
\ No newline at end of file
{
"name": "金币",
"SubTexture": [
{
"name": "金币动画/金币底",
"x": 1,
"height": 181,
"y": 181,
"width": 172
},
{
"name": "金币动画/条",
"x": 175,
"height": 18,
"y": 181,
"width": 9
},
{
"name": "金币动画/圈",
"x": 1,
"height": 178,
"y": 1,
"width": 218
},
{
"name": "金币动画/金币",
"x": 221,
"height": 185,
"y": 1,
"width": 178
}
],
"height": 512,
"imagePath": "coin1_tex_hy14_pipei.png",
"width": 512
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "570fd30f-4838-4f67-816d-5c827db29a50",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"coin1_tex_hy14_pipei": {
"ver": "1.0.4",
"uuid": "6a3fb1c1-925f-471e-89e2-d797a62edd31",
"rawTextureUuid": "570fd30f-4838-4f67-816d-5c827db29a50",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -56,
"offsetY": 74.5,
"trimX": 1,
"trimY": 1,
"width": 398,
"height": 361,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "40224cac-9b7c-433a-a36a-ccead9ba6688",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"name":"金币2","version":"5.5","frameRate":24,"isGlobal":0,"armature":[{"name":"Armature","animation":[{"name":"two","ffd":[],"frame":[],"duration":20,"slot":[{"name":"金币底","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"duration":1},{"color":{"aM":0},"duration":9}],"displayFrame":[]},{"name":"条","colorFrame":[{"color":{"aM":0},"duration":4},{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":1}],"displayFrame":[]},{"name":"圈","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"color":{"aM":40},"duration":6},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"金币","colorFrame":[],"displayFrame":[{"duration":4,"value":-1},{"duration":7,"value":-1},{"duration":9}]},{"name":"条1","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条2","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条21","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条3","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条311","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条3111","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"金币底1","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"duration":1},{"color":{"aM":0},"duration":13}],"displayFrame":[]},{"name":"条4","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"圈1","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"color":{"aM":40},"duration":6},{"color":{"aM":0},"duration":4}],"displayFrame":[]},{"name":"金币1","colorFrame":[],"displayFrame":[{"duration":7,"value":-1},{"duration":13}]},{"name":"条11","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条22","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条211","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":4},{"tweenEasing":0,"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条32","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条312","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条3112","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条31111","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]},{"name":"条31","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":8},"duration":4},{"tweenEasing":0,"color":{"aM":50},"duration":3},{"color":{"aM":0},"duration":5}],"displayFrame":[]}],"bone":[{"name":"root","translateFrame":[],"rotateFrame":[],"scaleFrame":[]},{"name":"金币底","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"x":1.3,"duration":4,"tweenEasing":0,"y":1.3},{"x":1.3,"duration":6,"tweenEasing":0,"y":1.3},{"duration":10}]},{"name":"圈","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":11},{"duration":9,"tweenEasing":0},{"x":1.6,"duration":0,"y":1.6}]},{"name":"条","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0015},{"duration":1,"y":-31.6832}],"rotateFrame":[],"scaleFrame":[]},{"name":"金币","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":11},{"x":0.26,"duration":2,"tweenEasing":0,"y":0.33},{"x":-0.17,"duration":2,"tweenEasing":0,"y":0.33},{"duration":5,"curve":[0.7359550561797753,0.009404388714733543,1,1],"y":1.29},{"duration":0}]},{"name":"条1","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0008},{"duration":1,"y":42.8392}],"rotateFrame":[],"scaleFrame":[]},{"name":"条2","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0023},{"x":-32.0848,"duration":1,"y":0.0023}],"rotateFrame":[],"scaleFrame":[]},{"name":"条21","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0023},{"x":41.5898,"duration":1,"y":0.0023}],"rotateFrame":[],"scaleFrame":[]},{"name":"条3","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":24.0971,"duration":1,"y":-25.882}],"rotateFrame":[],"scaleFrame":[]},{"name":"条311","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":-40.2064,"duration":1,"y":23.517}],"rotateFrame":[],"scaleFrame":[]},{"name":"条3111","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":39.2247,"duration":1,"y":25.3019}],"rotateFrame":[],"scaleFrame":[]},{"name":"root1","translateFrame":[],"rotateFrame":[],"scaleFrame":[]},{"name":"金币底1","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"x":1.3,"duration":6,"tweenEasing":0,"y":1.3},{"duration":14}]},{"name":"圈1","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":7},{"duration":9,"tweenEasing":0},{"x":1.6,"duration":4,"y":1.6}]},{"name":"星星1","translateFrame":[],"rotateFrame":[],"scaleFrame":[]},{"name":"条4","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0015},{"duration":5,"y":-31.6832}],"rotateFrame":[],"scaleFrame":[]},{"name":"金币1","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":7},{"x":0.26,"duration":2,"tweenEasing":0,"y":0.33},{"x":-0.17,"duration":2,"tweenEasing":0,"y":0.33},{"duration":5,"curve":[0.7359550561797753,0.009404388714733543,1,1],"y":1.29},{"duration":4}]},{"name":"条11","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0008},{"duration":5,"y":42.8392}],"rotateFrame":[],"scaleFrame":[]},{"name":"条22","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0023},{"x":-32.0848,"duration":5,"y":0.0023}],"rotateFrame":[],"scaleFrame":[]},{"name":"条211","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0023},{"x":41.5898,"duration":5,"y":0.0023}],"rotateFrame":[],"scaleFrame":[]},{"name":"条32","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":24.0971,"duration":5,"y":-25.882}],"rotateFrame":[],"scaleFrame":[]},{"name":"条312","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":-18.7868,"duration":5,"y":-28.1579}],"rotateFrame":[],"scaleFrame":[]},{"name":"条3112","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":-40.2064,"duration":5,"y":23.517}],"rotateFrame":[],"scaleFrame":[]},{"name":"条31111","translateFrame":[{"duration":8},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":39.2247,"duration":5,"y":25.3019}],"rotateFrame":[],"scaleFrame":[]},{"name":"条31","translateFrame":[{"duration":12},{"duration":7,"tweenEasing":0,"y":0.0015},{"x":-18.7868,"duration":1,"y":-28.1579}],"rotateFrame":[],"scaleFrame":[]}],"ik":[],"playTimes":0}],"bone":[{"name":"root","transform":{}},{"name":"圈","transform":{"x":140.655,"y":-240.8618},"parent":"root"},{"name":"条","transform":{"x":144.2655,"y":-353.7515},"parent":"root"},{"name":"金币","transform":{"x":143.8193,"y":-246.4},"parent":"root"},{"name":"条1","transform":{"x":143.8193,"y":-136.5208},"parent":"root"},{"name":"条2","transform":{"x":34.0883,"skX":-90,"y":-241.4323,"skY":-90},"parent":"root"},{"name":"条21","transform":{"x":252.2561,"skX":-90,"y":-241.4323,"skY":-90},"parent":"root"},{"name":"条3","transform":{"x":219.6358,"skX":45,"y":-327.5124,"skY":45},"parent":"root"},{"name":"条311","transform":{"x":66.2178,"skX":45,"y":-168.204,"skY":45},"parent":"root"},{"name":"条3111","transform":{"x":217.003,"skX":-45,"y":-168.204,"skY":-45},"parent":"root"},{"name":"root1","transform":{"x":-147.8188,"y":-0.4816},"parent":"root"},{"name":"条31","transform":{"x":71.9743,"skX":-44.8387,"y":-327.5124,"skY":-44.8387},"parent":"root"},{"name":"金币底","transform":{"x":146.8193,"y":-242},"parent":"root"},{"name":"条31111","transform":{"x":73.1837,"skX":-45,"y":-168.204,"skY":-45},"parent":"root1"},{"name":"条22","transform":{"x":-109.7309,"skX":-90,"y":-241.4323,"skY":-90},"parent":"root1"},{"name":"条32","transform":{"x":75.8165,"skX":45,"y":-327.5124,"skY":45},"parent":"root1"},{"name":"条312","transform":{"x":-71.845,"skX":-44.8387,"y":-327.5124,"skY":-44.8387},"parent":"root1"},{"name":"金币1","transform":{"y":-246.4},"parent":"root1"},{"name":"条4","transform":{"x":0.4462,"y":-353.7515},"parent":"root1"},{"name":"金币底1","transform":{"x":3,"y":-242},"parent":"root1"},{"name":"圈1","transform":{"x":-3.1642,"y":-240.8618},"parent":"root1"},{"name":"星星1","transform":{"x":18.1,"y":-362.85},"parent":"root1"},{"name":"条211","transform":{"x":108.4368,"skX":-90,"y":-241.4323,"skY":-90},"parent":"root1"},{"name":"条3112","transform":{"x":-77.6015,"skX":45,"y":-168.204,"skY":45},"parent":"root1"},{"name":"条11","transform":{"y":-136.5208},"parent":"root1"}],"skin":[{"name":"","slot":[{"name":"金币","display":[{"name":"金币动画/金币","transform":{"y":5.9},"type":"image","path":"金币动画/金币"}]},{"name":"条211","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条32","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条11","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条3","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"金币底","display":[{"name":"金币动画/金币底","transform":{"x":-3,"y":-0.5},"type":"image","path":"金币动画/金币底"}]},{"name":"条31","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条311","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条2","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"金币1","display":[{"name":"金币动画/金币","transform":{"y":5.9},"type":"image","path":"金币动画/金币"}]},{"name":"条3112","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"圈","display":[{"name":"金币动画/圈","transform":{"x":3.5699,"y":0.3676},"type":"image","path":"金币动画/圈"}]},{"name":"条1","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条21","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条31111","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条3111","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条312","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"金币底1","display":[{"name":"金币动画/金币底","transform":{"x":-3,"y":-0.5},"type":"image","path":"金币动画/金币底"}]},{"name":"条22","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条4","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"圈1","display":[{"name":"金币动画/圈","transform":{"x":3.5699,"y":0.3676},"type":"image","path":"金币动画/圈"}]}]}],"defaultActions":[{"gotoAndPlay":"two"}],"frameRate":24,"slot":[{"name":"金币底","color":{},"parent":"金币底"},{"name":"条","color":{},"z":1,"parent":"条"},{"name":"圈","color":{},"z":2,"parent":"圈"},{"name":"金币","color":{},"z":3,"parent":"金币"},{"name":"条1","color":{},"z":4,"parent":"条1"},{"name":"条2","color":{},"z":5,"parent":"条2"},{"name":"条21","color":{},"z":6,"parent":"条21"},{"name":"条3","color":{},"z":7,"parent":"条3"},{"name":"条31","color":{},"z":8,"parent":"条31"},{"name":"条311","color":{},"z":9,"parent":"条311"},{"name":"条3111","color":{},"z":10,"parent":"条3111"},{"name":"金币底1","color":{},"z":11,"parent":"金币底1"},{"name":"条4","color":{},"z":12,"parent":"条4"},{"name":"圈1","color":{},"z":13,"parent":"圈1"},{"name":"金币1","color":{},"z":14,"parent":"金币1"},{"name":"条11","color":{},"z":15,"parent":"条11"},{"name":"条22","color":{},"z":16,"parent":"条22"},{"name":"条211","color":{},"z":17,"parent":"条211"},{"name":"条32","color":{},"z":18,"parent":"条32"},{"name":"条312","color":{},"z":19,"parent":"条312"},{"name":"条3112","color":{},"z":20,"parent":"条3112"},{"name":"条31111","color":{},"z":21,"parent":"条31111"}],"type":"Armature","ik":[],"aabb":{"x":-262.2497510777028,"height":235.71230824585237,"y":-363.4331130397353,"width":518.8058428187197}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "f011f737-1f65-490f-b1ca-1a960c98d8f9",
"subMetas": {}
}
\ No newline at end of file
{
"name": "金币2",
"SubTexture": [
{
"name": "金币动画/金币底",
"x": 1,
"height": 181,
"y": 181,
"width": 172
},
{
"name": "金币动画/条",
"x": 175,
"height": 18,
"y": 181,
"width": 9
},
{
"name": "金币动画/圈",
"x": 1,
"height": 178,
"y": 1,
"width": 218
},
{
"name": "金币动画/金币",
"x": 221,
"height": 185,
"y": 1,
"width": 178
}
],
"height": 512,
"imagePath": "coin2_tex_hy14_pipei.png",
"width": 512
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "bcb9481d-5c54-4e50-85ad-777961ce63b2",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9d1174da-be3b-490b-bbcd-0c43439093da",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"coin2_tex_hy14_pipei": {
"ver": "1.0.4",
"uuid": "4a536775-acd5-494c-83fa-3a0d5c924980",
"rawTextureUuid": "9d1174da-be3b-490b-bbcd-0c43439093da",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -56,
"offsetY": 74.5,
"trimX": 1,
"trimY": 1,
"width": 398,
"height": 361,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
[
{
"__type__": "cc.Prefab",
"_name": "",
"_objFlags": 0,
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"asyncLoadAssets": false,
"readonly": false
},
{
"__type__": "cc.Node",
"_name": "layer_coin",
"_objFlags": 0,
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 16
}
],
"_active": true,
"_components": [
{
"__id__": 21
}
],
"_prefab": {
"__id__": 22
},
"_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": "layout_center",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 3
},
{
"__id__": 6
},
{
"__id__": 9
},
{
"__id__": 12
}
],
"_active": false,
"_components": [],
"_prefab": {
"__id__": 15
},
"_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": "bg_gray",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 4
}
],
"_prefab": {
"__id__": 5
},
"_opacity": 102,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 3000,
"height": 3000
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
47.112,
11.778,
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.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 3
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "adm8kBzH9HDL0yNTkOoNZO",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "aniNode1",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 7
}
],
"_prefab": {
"__id__": 8
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 666.0255708350624,
"height": 304.2308109319082
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
50.804,
-3.435,
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__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 6
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "three",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b#d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b"
},
"_N$dragonAtlasAsset": {
"__uuid__": "d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "63iyJKJbRIJ4rv8EKr2oF0",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "aniNode2",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 10
}
],
"_prefab": {
"__id__": 11
},
"_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__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 9
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "two",
"_preCacheMode": -1,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "f011f737-1f65-490f-b1ca-1a960c98d8f9"
},
"_N$dragonAtlasAsset": null,
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "c6Hl8henxOxrh4ppMincco",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "aniNode3",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 13
}
],
"_prefab": {
"__id__": 14
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 666.0255708350624,
"height": 304.2308109319082
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
50.804,
-3.435,
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__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 12
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "three",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b#d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b"
},
"_N$dragonAtlasAsset": {
"__uuid__": "d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "e1DhwVfNlC3Y7kDIyCry0m",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "a2tpK1wadIapdt6ho6M6te",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "res",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 17
}
],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 20
},
"_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": "coin",
"_objFlags": 0,
"_parent": {
"__id__": 16
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 18
}
],
"_prefab": {
"__id__": 19
},
"_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__": 17
},
"_enabled": true,
"_clip": {
"__uuid__": "7d43789c-0138-4603-82af-1892d2cad30a"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "185tOCC+BKhYGnn4V3TEoT",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "e5iD0Y+fBOfr63Di1EJOwC",
"sync": false
},
{
"__type__": "72802EOwh1KuKnBHYcntgZY",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "",
"sync": false
}
]
\ No newline at end of file
{
"ver": "1.2.9",
"uuid": "a9b135f6-de46-4257-8be2-55dc863ce747",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}
\ No newline at end of file
// pg.event.emit('layer_coin_show_coin',1) //1 2 3硬币数量
// pg.event.once('layer_coin_show_coin_end',()=>{}) // 动画回调
import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator;
@ccclass
export default class LayerCoin extends cc.Component {
private layout_center;
onLoad() {
pg.event.on('layer_coin_show_coin', (num) => { this.showCoin(num) });
this.layout_center = pg.view.find(this, 'layout_center')
}
showCoin(num) {
pg.view.visible(this.layout_center, true)
let coinAni = null;
pg.view.visible(pg.view.find(this.layout_center, "aniNode1"), false)
pg.view.visible(pg.view.find(this.layout_center, "aniNode2"), false)
pg.view.visible(pg.view.find(this.layout_center, "aniNode3"), false)
switch (num) {
case 1:
coinAni = pg.view.find(this.layout_center, "aniNode1");
coinAni.active = true;
pg.view.addEventDBAnimation(coinAni, this.hideCoin, this);
pg.view.playDBAnimation(coinAni, "one", 1);
this.playLocalAudio('coin');
break;
case 2:
coinAni = pg.view.find(this.layout_center, "aniNode2");
coinAni.active = true;
pg.view.addEventDBAnimation(coinAni, this.hideCoin, this);
pg.view.playDBAnimation(coinAni, "two", 1);
this.playLocalAudio('coin');
this.scheduleOnce(() => {
this.playLocalAudio('coin');
}, 0.3)
break;
case 3:
coinAni = pg.view.find(this.layout_center, "aniNode3");
coinAni.active = true;
pg.view.addEventDBAnimation(coinAni, this.hideCoin, this);
pg.view.playDBAnimation(coinAni, "three", 1);
this.playLocalAudio('coin');
this.scheduleOnce(() => {
this.playLocalAudio('coin');
}, 0.3)
this.scheduleOnce(() => {
this.playLocalAudio('coin');
}, 0.6)
break;
}
}
hideCoin() {
this.scheduleOnce(() => {
pg.view.visible(this.layout_center, false)
pg.event.emit('layer_coin_show_coin_end')
}, 1.0)
}
playLocalAudio(name) {
let ending = pg.view.find(this, `res/${name}`)
pg.audio.playLocalAudio(ending)
}
}
{
"ver": "1.0.8",
"uuid": "7280210e-c21d-4ab8-a9c1-1d8727b60658",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "47713aab-b8a5-494e-a027-eaec5a0f69ce",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
[
{
"__type__": "cc.Prefab",
"_name": "",
"_objFlags": 0,
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"asyncLoadAssets": false,
"readonly": false
},
{
"__type__": "cc.Node",
"_name": "layer_ending_hy01_danci",
"_objFlags": 0,
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 33
}
],
"_active": true,
"_components": [
{
"__id__": 38
}
],
"_prefab": {
"__id__": 39
},
"_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": "layer_center",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 3
},
{
"__id__": 6
},
{
"__id__": 8
},
{
"__id__": 11
},
{
"__id__": 14
},
{
"__id__": 17
},
{
"__id__": 20
}
],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 32
},
"_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": "gray_cover",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 4
}
],
"_prefab": {
"__id__": 5
},
"_opacity": 102,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 3000,
"height": 3000
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-0.508,
1.574,
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.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 3
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "1cfNdHF9FH3KbwZyC/Rw6p",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layer_middle",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 7
},
"_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.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "05udCU1VdI/agyYkkywj7D",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "replay_btn",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 9
}
],
"_prefab": {
"__id__": 10
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 153,
"height": 153
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-500.013,
-340.145,
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.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 8
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "1b782eab-25d2-4314-b83a-258f7e4d7ea4"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "64JkLZPOJB45Eawytu4dgS",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "bg_light",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 12
}
],
"_prefab": {
"__id__": 13
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1104,
"height": 1109
},
"_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.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 11
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "25fb3f92-bcc7-4131-9799-223ffe697b15"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "06ZiT3YYpCj6mdNSxdYMvD",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "finish_cat",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 15
}
],
"_prefab": {
"__id__": 16
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 512,
"height": 497.77919520611704
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
-214.645,
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__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 14
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"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": {
"__uuid__": "c9537625-dbfc-4d95-a3b3-d3d672dc93e6"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "15OJA0Q/JIlJbDN8f4ukZN",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "next_btn",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 18
}
],
"_prefab": {
"__id__": 19
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 153,
"height": 153
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
500.013,
-343.546,
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.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 17
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_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": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "e68b5eJphElLrpxtQEdyxG",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "finish_box",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 21
},
{
"__id__": 24
},
{
"__id__": 27
}
],
"_active": true,
"_components": [
{
"__id__": 30
}
],
"_prefab": {
"__id__": 31
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 714,
"height": 166
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
-204,
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": "result_text",
"_objFlags": 0,
"_parent": {
"__id__": 20
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 22
}
],
"_prefab": {
"__id__": 23
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 252,
"b": 232,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 225,
"height": 56.7
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-88,
10,
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.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 21
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "恭喜你获得",
"_N$string": "恭喜你获得",
"_fontSize": 45,
"_lineHeight": 45,
"_enableWrapText": true,
"_N$file": null,
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 1,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "eaTaVhDcBEkqwz8ACtP7x3",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "coin",
"_objFlags": 0,
"_parent": {
"__id__": 20
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 25
}
],
"_prefab": {
"__id__": 26
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 67,
"height": 70
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
83,
10,
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.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 24
},
"_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": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "13IYbTThlC5rDXn6k7swYV",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "coin_num",
"_objFlags": 0,
"_parent": {
"__id__": 20
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 28
}
],
"_prefab": {
"__id__": 29
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 252,
"b": 232,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 55.04,
"height": 56.7
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
130.345,
10,
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.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 27
},
"_enabled": true,
"_materials": [
{
"__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": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "52Z0lpksxE1JprOrhHgdow",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 20
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "23a8b623-34a7-4290-b6c8-d6092f00b95d"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "911Shrt8NB/ZWFA9u7l/SL",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "7cG7U7lH9Ie5/sK83LZUCP",
"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",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "",
"sync": false
}
]
\ No newline at end of file
{
"ver": "1.2.9",
"uuid": "8944c192-3675-466f-9f94-8f824c68e822",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}
\ No newline at end of file
// pg.event.once('layer_ending_touch_replay', () => {
// alert('replay')
// })
// pg.event.emit('layer_ending_show')
import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator;
@ccclass
export default class LayerEnding extends cc.Component {
private layer_center: cc.Node;
private replay_btn: cc.Node;
private next_btn: cc.Node;
private res: cc.Node;
onLoad() {
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);
this.replay_btn = pg.view.find(this.layer_center, "replay_btn")
this.next_btn = pg.view.find(this.layer_center, "next_btn")
pg.view.touchOn(this.replay_btn, this.onTouchReplay, this)
pg.view.touchOn(this.next_btn, this.onTouchNext, this)
pg.event.on('layer_ending_show', (data) => {
this.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.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")
pg.view.playDBAnimation(finish_cat, "finish", 1);
let bg_light = pg.view.find(this.layer_center, "bg_light")
cc.tween(bg_light).by(2, { angle: 360 }).repeatForever().start();
pg.view.visible(this.layer_center, true)
}
onTouchReplay() {
pg.view.visible(this.layer_center, false)
pg.event.emit('layer_ending_touch_replay');
}
onTouchNext() {
pg.view.visible(this.layer_center, false)
const middleLayer = cc.find('middleLayer');
const middleLayerComponent = middleLayer.getComponent('middleLayer');
const { index, length } = middleLayerComponent.getPageInfo(); // 返回 length:有多少页; index: 当前第几页(从0开始)
if (index == length - 1) {
middleLayerComponent.goNextCross(); // 跳转到下一关卡
} else {
middleLayerComponent.goNextPage(); // 跳转到下一页
}
}
}
{
"ver": "1.0.8",
"uuid": "8aa90d3e-7980-43ef-be5d-3707ef42a804",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "abb5bf98-8e6e-4fda-bdcf-071a0f553e21",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "a5293080-0ee0-4320-804d-3a0173a7c120",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "80d273de-f7a1-45e8-b75c-b4c3032d0b78",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6cda522a-b8bc-40b4-b8c5-28ccdbd817b4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"finish": {
"ver": "1.0.4",
"uuid": "df8c0d1b-db97-497e-b721-ebebd22dac62",
"rawTextureUuid": "6cda522a-b8bc-40b4-b8c5-28ccdbd817b4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 75.5,
"trimX": 1,
"trimY": 1,
"width": 1001,
"height": 871,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"name":"finish","version":"5.5","frameRate":24,"isGlobal":0,"armature":[{"name":"Armature","animation":[{"name":"finish","ffd":[],"frame":[],"duration":26,"slot":[{"name":"金币底","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"color":{"aM":44},"duration":10},{"color":{"aM":0},"duration":6}],"displayFrame":[]},{"name":"圈","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"color":{"aM":40},"duration":6},{"color":{"aM":0},"duration":6}],"displayFrame":[]},{"name":"金币","colorFrame":[],"displayFrame":[{"duration":4,"value":-1},{"duration":7,"value":-1},{"duration":15}]},{"name":"条1","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条11","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.5,1],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条111","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.5,1],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条12","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.5,1],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条13","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条121","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条122","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]}],"bone":[{"name":"root","translateFrame":[],"rotateFrame":[],"scaleFrame":[]},{"name":"金币底","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"x":1.3,"duration":4,"tweenEasing":0,"y":1.3},{"x":1.3,"duration":6,"tweenEasing":0,"y":1.3},{"duration":16}]},{"name":"圈","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":11},{"duration":9,"tweenEasing":0},{"x":1.4,"duration":6,"y":1.4}]},{"name":"金币","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":11},{"x":0.5,"duration":4,"tweenEasing":0,"y":0.5},{"duration":7,"curve":[0.7359550561797753,0.009404388714733543,1,1],"y":1.1},{"duration":4}]},{"name":"条1","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"tweenEasing":0,"y":33.3333},{"x":-236.6667,"duration":7,"y":-54.1608}],"rotateFrame":[{"duration":8},{"duration":11,"tweenEasing":0},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"tweenEasing":0,"y":0.7},{"duration":7}]},{"name":"bone","translateFrame":[],"rotateFrame":[{"duration":22,"clockwise":2,"tweenEasing":0},{"duration":4}],"scaleFrame":[]},{"name":"条11","translateFrame":[{"duration":8},{"x":-178.25,"duration":11,"curve":[0,0,0.5,1],"y":33.3333},{"x":-581.1667,"duration":7,"y":-526.7441}],"rotateFrame":[{"duration":8},{"curve":[0,0,0.5,1],"duration":11},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"curve":[0,0,0.5,1],"y":0.7},{"duration":7}]},{"name":"条111","translateFrame":[{"duration":8},{"x":-178.25,"duration":11,"curve":[0,0,0.5,1],"y":33.3333},{"x":146.8333,"duration":7,"y":-138.9941}],"rotateFrame":[{"duration":8},{"curve":[0,0,0.5,1],"duration":11},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"curve":[0,0,0.5,1],"y":0.7},{"duration":7}]},{"name":"条12","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"curve":[0,0,0.5,1],"y":33.3333},{"x":300.8333,"duration":7,"y":-54.1608}],"rotateFrame":[{"duration":8},{"curve":[0,0,0.5,1],"duration":11},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"curve":[0,0,0.5,1],"y":0.7},{"duration":7}]},{"name":"条13","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"tweenEasing":0,"y":33.3333},{"x":321,"duration":7,"y":-189.8274}],"rotateFrame":[{"duration":8},{"duration":11,"tweenEasing":0},{"rotate":-34.1966,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"tweenEasing":0,"y":0.7},{"duration":7}]},{"name":"条121","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"tweenEasing":0,"y":33.3333},{"x":-236.6667,"duration":7,"y":-54.1608}],"rotateFrame":[{"duration":8},{"duration":11,"tweenEasing":0},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"tweenEasing":0,"y":0.7},{"duration":7}]}],"ik":[],"playTimes":0}],"bone":[{"name":"root","transform":{"x":-131.6667,"y":16.6667}},{"name":"圈","transform":{"x":140.655,"y":-240.8618},"parent":"root"},{"name":"金币","transform":{"x":143.8193,"y":-246.4},"parent":"root"},{"name":"条1","transform":{"x":33.3193,"y":-90.0208},"parent":"root"},{"name":"金币底","transform":{"x":146.8193,"y":-242},"parent":"root"},{"name":"bone","transform":{"x":138.33,"y":-245.75},"parent":"root"},{"name":"条11","transform":{"x":323.3193,"scY":0.7,"y":-95.8541,"scX":0.7},"parent":"root"},{"name":"条111","transform":{"x":323.3193,"scY":0.7,"y":-95.8541,"scX":0.7},"parent":"root"},{"name":"条12","transform":{"x":166.6526,"y":-40.0208},"parent":"root"},{"name":"条13","transform":{"x":98.1526,"y":-115.9375},"parent":"root"},{"name":"条121","transform":{"x":33.3193,"y":-90.0208},"parent":"root"}],"skin":[{"name":"","slot":[{"name":"条11","display":[{"name":"金币动画/条","transform":{"x":-270.4571,"skX":-39.1322,"y":73.2524,"skY":-39.1322},"type":"image","path":"金币动画/条"}]},{"name":"圈","display":[{"name":"金币动画/圈","transform":{"x":3.5699,"y":0.3676},"type":"image","path":"金币动画/圈"}]},{"name":"金币底","display":[{"name":"金币动画/金币底","transform":{"x":-3,"y":-0.5},"type":"image","path":"金币动画/金币底"}]},{"name":"金币","display":[{"name":"金币动画/金币","transform":{"y":5.9},"type":"image","path":"金币动画/金币"}]},{"name":"条1","display":[{"name":"金币动画/条","transform":{"x":122.0667,"scY":0.5,"y":-6.3667,"scX":0.5},"type":"image","path":"金币动画/条"}]},{"name":"条111","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条13","display":[{"name":"金币动画/条","transform":{"x":122.0667,"scY":0.5,"y":-6.3667,"scX":0.5},"type":"image","path":"金币动画/条"}]},{"name":"条12","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条122","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条121","display":[]}]}],"defaultActions":[{"gotoAndPlay":"finish"}],"frameRate":24,"slot":[{"name":"金币底","color":{},"parent":"金币底"},{"name":"圈","color":{},"z":1,"parent":"圈"},{"name":"金币","color":{},"z":2,"parent":"金币"},{"name":"条1","color":{},"z":3,"parent":"条1"},{"name":"条11","color":{},"z":4,"parent":"条11"},{"name":"条111","color":{},"z":5,"parent":"条111"},{"name":"条12","color":{},"z":6,"parent":"条12"},{"name":"条13","color":{},"z":7,"parent":"条13"},{"name":"条121","color":{},"z":8,"parent":"root","displayIndex":-1},{"name":"条122","color":{},"z":9,"parent":"条121"}],"type":"Armature","ik":[],"aabb":{"x":-243.44169151262471,"height":497.77919520611704,"y":-469.33333333333337,"width":512}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "a3fdb391-e9ad-464d-ad51-2698de2b38e1",
"subMetas": {}
}
\ No newline at end of file
{"name":"finish","SubTexture":[{"name":"金币动画/金币底","x":1,"height":487,"y":1,"width":487},{"name":"金币动画/圈","x":490,"height":420,"y":1,"width":512},{"name":"金币动画/金币","x":490,"height":449,"y":423,"width":388},{"name":"金币动画/条","x":880,"height":104,"y":423,"width":105}],"height":1024,"imagePath":"finish.png","width":1024}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "c9537625-dbfc-4d95-a3b3-d3d672dc93e6",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "664f0051-39fd-4f00-be8e-9b38b7b09e09",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 714,
"height": 166,
"platformSettings": {},
"subMetas": {
"bg_finish_hy17_hds_hy14_pipei": {
"ver": "1.0.4",
"uuid": "23a8b623-34a7-4290-b6c8-d6092f00b95d",
"rawTextureUuid": "664f0051-39fd-4f00-be8e-9b38b7b09e09",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 714,
"height": 166,
"rawWidth": 714,
"rawHeight": 166,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "68923e19-0a44-4014-996d-ed2c1f3adb8f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1104,
"height": 1109,
"platformSettings": {},
"subMetas": {
"bg_finishlight_hy17_hds_hy14_pipei": {
"ver": "1.0.4",
"uuid": "25fb3f92-bcc7-4131-9799-223ffe697b15",
"rawTextureUuid": "68923e19-0a44-4014-996d-ed2c1f3adb8f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1104,
"height": 1109,
"rawWidth": 1104,
"rawHeight": 1109,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "14a91e97-25df-434f-bebc-0fc904a33ded",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 153,
"height": 153,
"platformSettings": {},
"subMetas": {
"btn_next_hy17_hds_hy14_pipei": {
"ver": "1.0.4",
"uuid": "9cddc7ee-9ccf-4dd5-86a6-94b3a5d69135",
"rawTextureUuid": "14a91e97-25df-434f-bebc-0fc904a33ded",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 153,
"height": 153,
"rawWidth": 153,
"rawHeight": 153,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c50a3c0b-6c2c-4bca-a5f4-ab2a99cd1936",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 153,
"height": 153,
"platformSettings": {},
"subMetas": {
"btn_replay_hy17_hds_hy14_pipei": {
"ver": "1.0.4",
"uuid": "1b782eab-25d2-4314-b83a-258f7e4d7ea4",
"rawTextureUuid": "c50a3c0b-6c2c-4bca-a5f4-ab2a99cd1936",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 153,
"height": 153,
"rawWidth": 153,
"rawHeight": 153,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4ca1236a-5bad-48ce-87f8-972316595c05",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 67,
"height": 70,
"platformSettings": {},
"subMetas": {
"icon_coin_hy17_hds_hy14_pipei": {
"ver": "1.0.4",
"uuid": "4c1488d1-d283-4f03-864e-742eedadf6d9",
"rawTextureUuid": "4ca1236a-5bad-48ce-87f8-972316595c05",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 67,
"height": 70,
"rawWidth": 67,
"rawHeight": 70,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"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
...@@ -1725,15 +1725,15 @@ ...@@ -1725,15 +1725,15 @@
"sync": false "sync": false
}, },
{ {
"__type__": "71fd077rCNIKYvVldQChyin", "__type__": "6da6f8w7IZPyqlhjqf21Gz3",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 1 "__id__": 1
}, },
"_enabled": true, "_enabled": true,
"jumpHeight": 80, "jumpHeight": 30,
"isHide": false, "isHide": true,
"_id": "" "_id": ""
}, },
{ {
......
...@@ -55,8 +55,8 @@ ...@@ -55,8 +55,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 960,
0, 540,
0, 0,
0, 0,
0, 0,
...@@ -268,7 +268,7 @@ ...@@ -268,7 +268,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "87B5iKbmVCG49S3eGPMX6Y", "fileId": "87B5iKbmVCG49S3eGPMX6Y",
"sync": false "sync": false
...@@ -375,7 +375,7 @@ ...@@ -375,7 +375,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "0dJz4b1ElNA4O7qSiigyoD", "fileId": "0dJz4b1ElNA4O7qSiigyoD",
"sync": false "sync": false
...@@ -482,7 +482,7 @@ ...@@ -482,7 +482,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "29MTzfz4ZJY5RAZYwGGyzy", "fileId": "29MTzfz4ZJY5RAZYwGGyzy",
"sync": false "sync": false
...@@ -589,7 +589,7 @@ ...@@ -589,7 +589,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "4bI88i+L9GR5mwmTy9p9U4", "fileId": "4bI88i+L9GR5mwmTy9p9U4",
"sync": false "sync": false
...@@ -704,7 +704,7 @@ ...@@ -704,7 +704,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "bfmkl7sk1AkKt8zX7VXGXI", "fileId": "bfmkl7sk1AkKt8zX7VXGXI",
"sync": false "sync": false
...@@ -847,7 +847,7 @@ ...@@ -847,7 +847,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "9dj4iTb+pEI58ageziAqnd", "fileId": "9dj4iTb+pEI58ageziAqnd",
"sync": false "sync": false
...@@ -873,7 +873,7 @@ ...@@ -873,7 +873,7 @@
"__id__": 31 "__id__": 31
} }
], ],
"_active": false, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 34 "__id__": 34
...@@ -931,7 +931,7 @@ ...@@ -931,7 +931,7 @@
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "p1", "_name": "p0",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 21 "__id__": 21
...@@ -1009,7 +1009,7 @@ ...@@ -1009,7 +1009,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "84c11178-f263-4e14-aa51-104545bb5499" "__uuid__": "c9eb055f-e3e0-4f6e-9e05-45d7c4608877"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -1031,14 +1031,14 @@ ...@@ -1031,14 +1031,14 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "fbQ2idx8VGzpMfXJAlUOXZ", "fileId": "bdZKY4yrNNrp3uiGJ2mSt/",
"sync": false "sync": false
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "p0", "_name": "p1",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 21 "__id__": 21
...@@ -1116,7 +1116,7 @@ ...@@ -1116,7 +1116,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "c9eb055f-e3e0-4f6e-9e05-45d7c4608877" "__uuid__": "84c11178-f263-4e14-aa51-104545bb5499"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -1138,9 +1138,9 @@ ...@@ -1138,9 +1138,9 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "bdZKY4yrNNrp3uiGJ2mSt/", "fileId": "fbQ2idx8VGzpMfXJAlUOXZ",
"sync": false "sync": false
}, },
{ {
...@@ -1245,7 +1245,7 @@ ...@@ -1245,7 +1245,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "50FwDbDDFGEpKc84rgx9jB", "fileId": "50FwDbDDFGEpKc84rgx9jB",
"sync": false "sync": false
...@@ -1352,7 +1352,7 @@ ...@@ -1352,7 +1352,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "c0INCALCJCWbSmpeyJ9a58", "fileId": "c0INCALCJCWbSmpeyJ9a58",
"sync": false "sync": false
...@@ -1390,7 +1390,7 @@ ...@@ -1390,7 +1390,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "c1eTuWbUBDEofGhSF4EZXo", "fileId": "c1eTuWbUBDEofGhSF4EZXo",
"sync": false "sync": false
...@@ -1428,7 +1428,7 @@ ...@@ -1428,7 +1428,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "2ertaiEAVHrqIyQ0eZHP8i", "fileId": "2ertaiEAVHrqIyQ0eZHP8i",
"sync": false "sync": false
...@@ -1476,7 +1476,7 @@ ...@@ -1476,7 +1476,7 @@
"__id__": 1 "__id__": 1
}, },
"asset": { "asset": {
"__id__": 0 "__uuid__": "35fbe4f1-249e-4263-90a1-de923c148363"
}, },
"fileId": "", "fileId": "",
"sync": false "sync": false
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
"__id__": 34 "__id__": 34
} }
], ],
"_active": false, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 43 "__id__": 43
...@@ -64,8 +64,8 @@ ...@@ -64,8 +64,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 960,
0, 540,
0, 0,
0, 0,
0, 0,
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
"__id__": 12 "__id__": 12
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 15 "__id__": 15
...@@ -564,7 +564,7 @@ ...@@ -564,7 +564,7 @@
"__id__": 20 "__id__": 20
} }
], ],
"_active": true, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 23 "__id__": 23
...@@ -647,8 +647,8 @@ ...@@ -647,8 +647,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 2000, "width": 5000,
"height": 2000 "height": 5000
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -895,7 +895,7 @@ ...@@ -895,7 +895,7 @@
"__id__": 29 "__id__": 29
} }
], ],
"_active": true, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 32 "__id__": 32
...@@ -978,8 +978,8 @@ ...@@ -978,8 +978,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 2000, "width": 5000,
"height": 2000 "height": 5000
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -1226,7 +1226,7 @@ ...@@ -1226,7 +1226,7 @@
"__id__": 38 "__id__": 38
} }
], ],
"_active": true, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 41 "__id__": 41
...@@ -1309,8 +1309,8 @@ ...@@ -1309,8 +1309,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 2000, "width": 5000,
"height": 2000 "height": 5000
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
......
...@@ -8,11 +8,11 @@ import pg from "../../scene/pg_hy14_pipei"; ...@@ -8,11 +8,11 @@ import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ccclass @ccclass
export default class Candy extends cc.Component { export default class Candy extends cc.Component {
@property(cc.Float) @property(cc.Float)
private jumpHeight: number = 80; private jumpHeight: number = 80;
@property(cc.Boolean) @property(cc.Boolean)
...@@ -60,3 +60,4 @@ export default class Candy extends cc.Component { ...@@ -60,3 +60,4 @@ export default class Candy extends cc.Component {
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "71fd0efb-ac23-4829-8bd5-95d4028728a7", "uuid": "6da6ff30-ec86-4fca-a961-8ea7f6d46cf7",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
// pg.event.emit('img_voice_play_voice_start') // pg.event.emit('img_voice_play_voice_start')
// pg.event.emit('img_voice_play_voice_end') // pg.event.emit('img_voice_play_voice_end')
import pg from "../../scene/pg_hy14_pipei"; import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ccclass @ccclass
...@@ -59,4 +55,3 @@ export default class ImgVoice extends cc.Component { ...@@ -59,4 +55,3 @@ export default class ImgVoice extends cc.Component {
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "f6509267-2c09-4a7d-9f55-2c55a541c364", "uuid": "8fa11bf6-14c4-45e5-a614-436c70dffb2c",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
// pg.event.emit('layer_record_open', {
// letter: 'test',
// targetTime: 10
// })
// pg.event.emit('layer_record_close')
//pg.event.on('layer_record_start_record',()=>{});
//pg.event.on('layer_record_end_record',()=>{});
import pg from "../../scene/pg_hy14_pipei";
import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -16,21 +23,29 @@ export default class LayerRecord extends cc.Component { ...@@ -16,21 +23,29 @@ export default class LayerRecord extends cc.Component {
let btn_play = pg.view.find(this.layout_record, 'btn_play'); let btn_play = pg.view.find(this.layout_record, 'btn_play');
btn_play.active = false; btn_play.active = false;
this.initEvent(); this.initEvent();
pg.event.emit('layer_record_setting', { this.showVoiceWhite();
letter: 'test',
targetTime: 10
})
} }
private letter: string; private letter: string;
private targetTime: number; private targetTime: number;
private recordAudio: string;
initEvent() { initEvent() {
pg.event.on('layer_record_setting', (data) => { pg.event.on('layer_record_open', (data) => {
this.layout_record.active = true;
this.letter = data.letter this.letter = data.letter
this.targetTime = data.targetTime this.targetTime = data.targetTime
}) })
pg.event.on('layer_record_close', (data) => {
this.layout_record.active = false;
if (this.recordAudioId) {
cc.audioEngine.stopEffect(this.recordAudioId)
}
this.playVoiceEnd();
})
let btn_record = pg.view.find(this.layout_record, 'btn_record'); let btn_record = pg.view.find(this.layout_record, 'btn_record');
let btn_play = pg.view.find(this.layout_record, 'btn_play');
btn_record.on(cc.Node.EventType.TOUCH_START, this.onTouchRecord, this); btn_record.on(cc.Node.EventType.TOUCH_START, this.onTouchRecord, this);
btn_record.on(cc.Node.EventType.TOUCH_END, this.onTouchRecordEnd, this); btn_record.on(cc.Node.EventType.TOUCH_END, this.onTouchRecordEnd, this);
btn_play.on(cc.Node.EventType.TOUCH_END, this.onTouchPlayRecord, this);
} }
showVoiceWhite() { showVoiceWhite() {
...@@ -60,6 +75,68 @@ export default class LayerRecord extends cc.Component { ...@@ -60,6 +75,68 @@ export default class LayerRecord extends cc.Component {
let record_time = pg.view.find(this.layout_record, 'record_time'); let record_time = pg.view.find(this.layout_record, 'record_time');
record_time.getComponent(cc.Sprite).fillRange = 0; record_time.getComponent(cc.Sprite).fillRange = 0;
} }
showPlay() {
let btn_play = pg.view.find(this.layout_record, 'btn_play')
btn_play.active = !!this.recordAudio
let p0 = pg.view.find(btn_play, 'p0')
let p1 = pg.view.find(btn_play, 'p1')
let p2 = pg.view.find(btn_play, 'p2')
let p3 = pg.view.find(btn_play, 'p3')
p0.active = true;
p1.active = false;
p2.active = false;
p3.active = false;
}
private recordAudioId;
onTouchPlayRecord() {
if (!this.recordAudio) return;
if (this.playVoiceCount && this.playVoiceCount > -1) {
if (this.recordAudioId) {
cc.audioEngine.stopEffect(this.recordAudioId)
}
this.playVoiceEnd();
} else {
this.playVoiceStart();
pg.audio.playAudioByUrl(this.recordAudio, () => {
this.recordAudioId = null;
this.playVoiceEnd();
}, (audioId) => {
this.recordAudioId = audioId;
});
}
}
private playVoiceCount: number;
playVoiceStart() {
if (this.playVoiceCount > 0) return;
this.playVoiceCount = 0;
this.schedule(this.playVoiceRunning, 0.3)
}
playVoiceRunning() {
this.playVoiceCount++;
let btn_play = pg.view.find(this.layout_record, 'btn_play');
let p0 = btn_play.getChildByName('p0')
let p1 = btn_play.getChildByName('p1')
let p2 = btn_play.getChildByName('p2')
let p3 = btn_play.getChildByName('p3')
p0.active = false;
p1.active = this.playVoiceCount % 3 == 0;
p2.active = this.playVoiceCount % 3 == 1;
p3.active = this.playVoiceCount % 3 == 2;
}
playVoiceEnd() {
let btn_play = pg.view.find(this.layout_record, 'btn_play');
this.unschedule(this.playVoiceRunning)
this.playVoiceCount = 0;
let p0 = btn_play.getChildByName('p0')
let p1 = btn_play.getChildByName('p1')
let p2 = btn_play.getChildByName('p2')
let p3 = btn_play.getChildByName('p3')
p0.active = true;
p1.active = false;
p2.active = false;
p3.active = false;
}
protected update(dt: number): void { protected update(dt: number): void {
...@@ -67,11 +144,14 @@ export default class LayerRecord extends cc.Component { ...@@ -67,11 +144,14 @@ export default class LayerRecord extends cc.Component {
} }
//按钮触发,使用的方法 //按钮触发,使用的方法
async onTouchRecord() { async onTouchRecord() {
this.recordAudio = '';
this.showPlay();
let AniNode = pg.view.find(this.layout_record, 'AniNode'); let AniNode = pg.view.find(this.layout_record, 'AniNode');
AniNode.active = true; AniNode.active = true;
this.showTimeStart(); this.showTimeStart();
cc.audioEngine.stopAllEffects(); cc.audioEngine.stopAllEffects();
pg.event.emit('layer_record_start_record');
courseware && courseware.startTest(this.letter); //开始录音 courseware && courseware.startTest(this.letter); //开始录音
} }
async onTouchRecordEnd() { async onTouchRecordEnd() {
...@@ -83,13 +163,14 @@ export default class LayerRecord extends cc.Component { ...@@ -83,13 +163,14 @@ export default class LayerRecord extends cc.Component {
"refText": "I haven't found anything out about him yet.", "refText": "I haven't found anything out about him yet.",
"recordId": "6144295213f0a2200000ed93", "recordId": "6144295213f0a2200000ed93",
"eof": 1, "eof": 1,
audioUrl: 'http://staging-teach.cdn.ireadabc.com/43839adb578c7e01456748b8a176a0c3_l.mp3',
"result": { "result": {
"pronunciation": 25, "pronunciation": 25,
"resource_version": "3.1.0", "resource_version": "3.1.0",
"fluency": 60, "fluency": 60,
"rhythm": 90, "rhythm": 90,
"kernel_version": "5.2.4", "kernel_version": "5.2.4",
"overall": 25,//75 "overall": 8,//75
"integrity": 100, "integrity": 100,
"duration": "6.779", "duration": "6.779",
"rear_tone": "fall", "rear_tone": "fall",
...@@ -98,14 +179,20 @@ export default class LayerRecord extends cc.Component { ...@@ -98,14 +179,20 @@ export default class LayerRecord extends cc.Component {
"tokenId": "6144295408558b08dd000001", "tokenId": "6144295408558b08dd000001",
"applicationId": "154838659000009e" "applicationId": "154838659000009e"
} }
if (!courseware) return this.recrodEnd(testData) pg.event.emit('layer_record_end_record');
courseware && courseware.stopTest((data) => { if (!courseware) {
data = JSON.parse(data); return this.recrodEnd(testData)
this.recrodEnd(data); }
courseware && courseware.stopTest((res) => {
res = JSON.parse(res);
this.recrodEnd(res);
}); //结束录音 }); //结束录音
} }
async recrodEnd(data) { async recrodEnd(data) {
this.recordAudio = data.audioUrl;
this.showPlay();
let score = data.result.overall; let score = data.result.overall;
this.layout_record.active = false;
pg.event.emit('layer_record_score', score); pg.event.emit('layer_record_score', score);
} }
} }
...@@ -114,4 +201,3 @@ export default class LayerRecord extends cc.Component { ...@@ -114,4 +201,3 @@ export default class LayerRecord extends cc.Component {
// pg.event.on('layer_right_show_excellent_end', () => { // pg.event.once('layer_right_show_excellent_end', () => {
// alert('test') // alert('test')
// }) // })
// pg.event.emit('layer_right_show_excellent') // pg.event.emit('layer_right_show_excellent')
// pg.event.on('layer_right_show_good_end', () => { // pg.event.once('layer_right_show_good_end', () => {
// alert('test') // alert('test')
// }) // })
// pg.event.emit('layer_right_show_good') // pg.event.emit('layer_right_show_good')
// pg.event.on('layer_right_show_tryagain_end', () => { // pg.event.once('layer_right_show_tryagain_end', () => {
// alert('test') // alert('test')
// }) // })
// pg.event.emit('layer_right_show_tryagain') // pg.event.emit('layer_right_show_tryagain')
import pg from "../../scene/pg_hy14_pipei";
import pg from "../../scene/pg_hy14_pipei";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -112,4 +112,3 @@ export default class LayerRight extends cc.Component { ...@@ -112,4 +112,3 @@ export default class LayerRight extends cc.Component {
{
"ver": "1.1.0",
"uuid": "086fa3e3-d143-413b-95f7-049127b48c8d",
"subMetas": {}
}
\ No newline at end of file
import ImgVoice from "../common/script/ImgVoice_hy14_pipei";
export let imageZize = {
width: 1000,
height: 600
}
export class OptionJigsaw { export class OptionJigsaw {
type; type;
txt; txt;
...@@ -118,8 +127,8 @@ export default class Game { ...@@ -118,8 +127,8 @@ export default class Game {
} }
public pointsArr; public pointsArr;
private changepoints(data) { private changepoints(data) {
let scX = 1279 / data.bgItem.rect.width; let scX = imageZize.width / data.bgItem.rect.width;
let scY = 666 / data.bgItem.rect.height; let scY = imageZize.height / data.bgItem.rect.height;
let px = data.bgItem.rect.x; let px = data.bgItem.rect.x;
let py = data.bgItem.rect.y; let py = data.bgItem.rect.y;
this.pointsArr = []; this.pointsArr = [];
...@@ -188,3 +197,4 @@ export default class Game { ...@@ -188,3 +197,4 @@ export default class Game {
let win: any = window; let win: any = window;
win.Game = Game; win.Game = Game;
...@@ -94,18 +94,30 @@ ...@@ -94,18 +94,30 @@
}, },
{ {
"__id__": 88 "__id__": 88
},
{
"__id__": 145
},
{
"__id__": 169
},
{
"__id__": 214
},
{
"__id__": 236
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 145 "__id__": 275
}, },
{ {
"__id__": 146 "__id__": 276
}, },
{ {
"__id__": 147 "__id__": 277
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -1242,7 +1254,7 @@ ...@@ -1242,7 +1254,7 @@
"_enabled": true, "_enabled": true,
"alignMode": 1, "alignMode": 1,
"_target": null, "_target": null,
"_alignFlags": 45, "_alignFlags": 4,
"_left": 0, "_left": 0,
"_right": 0, "_right": 0,
"_top": 1, "_top": 1,
...@@ -1311,8 +1323,8 @@ ...@@ -1311,8 +1323,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1279, "width": 1000,
"height": 666 "height": 600
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -1323,8 +1335,8 @@ ...@@ -1323,8 +1335,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-0.641, 22,
54, 20,
0, 0,
0, 0,
0, 0,
...@@ -1551,7 +1563,7 @@ ...@@ -1551,7 +1563,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "3e98LwOMlF3JgTcOUdNglt" "_id": "36oq2ewBJCQJd1SutXDCjx"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
...@@ -1615,7 +1627,7 @@ ...@@ -1615,7 +1627,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "457fB8MvBCxZZ+QuiXDdmJ" "_id": "14zI/w59hPBYGzoaj3ZsMC"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -1647,7 +1659,7 @@ ...@@ -1647,7 +1659,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "b9rcxMY1NOxreWvF/+m399" "_id": "4diliJS+BJHYdA/maBR89E"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -1722,7 +1734,7 @@ ...@@ -1722,7 +1734,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "05InwkGu9EB7vB+slE10C+" "_id": "bcBW4F/0BCaJ0YtbyIerCu"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -1754,7 +1766,7 @@ ...@@ -1754,7 +1766,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "dcD8UtGVZGLZmfPdDMIRsa" "_id": "c6zLQwF3pBpbmU+uS20plT"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -1829,7 +1841,7 @@ ...@@ -1829,7 +1841,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "3dOT708yNDK49jCZzqr7ma" "_id": "5abduVkhFH+7rKjOtp9a2m"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -1861,7 +1873,7 @@ ...@@ -1861,7 +1873,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "bcc10+evpIMqD61zoCTIep" "_id": "a3df1ux0pAvY0Ox3BLU69i"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -1936,7 +1948,7 @@ ...@@ -1936,7 +1948,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "48O2DVyehJ+YBzQfQx8xNg" "_id": "5cV1Q8v5tNKYpXCU9Z8wIo"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -1968,7 +1980,7 @@ ...@@ -1968,7 +1980,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "6d1REI7nNGTpNrJZbBL9PA" "_id": "7at91Pu+1O2bx1+wQ+omvL"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2043,7 +2055,7 @@ ...@@ -2043,7 +2055,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "c6nCAMQbxJobORrjmX1m9L" "_id": "1akyaAuHtO6KwHnbp5kqYH"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2075,7 +2087,7 @@ ...@@ -2075,7 +2087,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "55ayhjRVVHRLLoEXYU49TU" "_id": "e5NVyfn2FCIJMK7aRoJS6M"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2150,7 +2162,7 @@ ...@@ -2150,7 +2162,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "94Pnlm2i1EgbeIQ49+GATu" "_id": "eeJYVKF0tFkrNPTvF53g8A"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2182,7 +2194,7 @@ ...@@ -2182,7 +2194,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "b0ACcXg8lMo7F3HIC4E0zG" "_id": "b6mjLLlIREB5VAVOgMCGm1"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2257,7 +2269,7 @@ ...@@ -2257,7 +2269,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "f8eHm306xLyZOIxHJREwDY" "_id": "c2J8iqaCdArZocp1GwxgDP"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2289,7 +2301,7 @@ ...@@ -2289,7 +2301,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "24R2SY1BxPdZP905JZlB6b" "_id": "1akmwZRq9DpqWZh55puOGw"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2364,7 +2376,7 @@ ...@@ -2364,7 +2376,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "edhIfZBR1Ht4TmHP8YByzW" "_id": "0fcdKEyjNIZoRms1zpYPFu"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2396,7 +2408,7 @@ ...@@ -2396,7 +2408,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "a14rHDi1FH7ZfDtgT56K2c" "_id": "bfXMaLV2RM676ppGmI18dl"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2471,7 +2483,7 @@ ...@@ -2471,7 +2483,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "02MPITGQpN4LfRwC+zgynK" "_id": "4960TtEAdGCKXsQnAfmdS0"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2503,7 +2515,7 @@ ...@@ -2503,7 +2515,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "b00pek0whBvLgB0zEKF8IX" "_id": "56wVBp+JRI2LmPNvveYdEv"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2578,7 +2590,7 @@ ...@@ -2578,7 +2590,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "a5tOZ8mJtEYZ6a5TvYNmqD" "_id": "1dRJp3+/lKEbdHE965YrE3"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2610,7 +2622,7 @@ ...@@ -2610,7 +2622,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "ffeNUJGExLJp90Y8BwpPxz" "_id": "9eZ5zNpylIi6gA2RB65l78"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2685,7 +2697,7 @@ ...@@ -2685,7 +2697,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "7bFZ2IuDNJcLY0xW093dPs" "_id": "82zks3Fu9BP5kYUeVSWvqe"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2717,7 +2729,7 @@ ...@@ -2717,7 +2729,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "33qqUUyeFLuoJRBZKwhRul" "_id": "177rOswh9ETJkmLS4BFazS"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2792,7 +2804,7 @@ ...@@ -2792,7 +2804,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "be5xRZSGlJJa7ieZvZQMuk" "_id": "c6AiJXWkpPcZDfVLu+1X3P"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2824,7 +2836,7 @@ ...@@ -2824,7 +2836,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "b1oyhEUNVDM7rfrR4s/OAX" "_id": "0dIITNJVpLAYMO2nqBy91e"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -2899,7 +2911,7 @@ ...@@ -2899,7 +2911,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "68jC83XD1Cv5fE6pLc22wu" "_id": "53EqMH18JEDLHM2q4hM8H1"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -2931,7 +2943,7 @@ ...@@ -2931,7 +2943,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "6e8Y4z8Q9GFK4YbT4mutDM" "_id": "08drXYLXxML52AhAdYn1L9"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -3006,7 +3018,7 @@ ...@@ -3006,7 +3018,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "4cRRl9ImhIrbJsa1tQ3Mph" "_id": "51Hoy4hhNO47JOiJjfUkXM"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -3038,7 +3050,7 @@ ...@@ -3038,7 +3050,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "80DwsbFcBBVaGeEtxhbmiM" "_id": "5f2UBKPbBIqL5KmYozrqW4"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -3113,7 +3125,7 @@ ...@@ -3113,7 +3125,7 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "a5bkvE4iFLiphzVUhi9IBq" "_id": "4cNo+zjGBC5bn38+9251q8"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
...@@ -3145,7 +3157,7 @@ ...@@ -3145,7 +3157,7 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "b3eU1asvxPTY+RlohA1DJ6" "_id": "90m6jfEiRB+LfQIEKOdrrc"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -3159,16 +3171,16 @@ ...@@ -3159,16 +3171,16 @@
"sync": false "sync": false
}, },
{ {
"__type__": "71fd077rCNIKYvVldQChyin", "__type__": "6da6f8w7IZPyqlhjqf21Gz3",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 30 "__id__": 30
}, },
"_enabled": true, "_enabled": true,
"jumpHeight": 20, "jumpHeight": 30,
"isHide": true, "isHide": true,
"_id": "5cf3LV4bBAkZZhaXTKID1T" "_id": "06vweZpGNANrXyzGSyFAyE"
}, },
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
...@@ -3199,9 +3211,9 @@ ...@@ -3199,9 +3211,9 @@
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 51,
"g": 204, "g": 51,
"b": 0, "b": 51,
"a": 255 "a": 255
}, },
"_contentSize": { "_contentSize": {
...@@ -3264,7 +3276,7 @@ ...@@ -3264,7 +3276,7 @@
"_lineHeight": 40, "_lineHeight": 40,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -3303,8 +3315,8 @@ ...@@ -3303,8 +3315,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1279, "width": 1000,
"height": 666 "height": 600
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -3315,8 +3327,8 @@ ...@@ -3315,8 +3327,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 22,
55.515, 20,
0, 0,
0, 0,
0, 0,
...@@ -3359,7 +3371,7 @@ ...@@ -3359,7 +3371,7 @@
"__uuid__": "4458f855-34da-4c91-aa18-c3f56de43f1a" "__uuid__": "4458f855-34da-4c91-aa18-c3f56de43f1a"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 2, "_sizeMode": 0,
"_fillType": 0, "_fillType": 0,
"_fillCenter": { "_fillCenter": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -3400,8 +3412,8 @@ ...@@ -3400,8 +3412,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1279, "width": 1000,
"height": 666 "height": 600
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -3412,8 +3424,8 @@ ...@@ -3412,8 +3424,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-639, -478,
388.485, 320,
0, 0,
0, 0,
0, 0,
...@@ -4094,7 +4106,7 @@ ...@@ -4094,7 +4106,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -4386,7 +4398,7 @@ ...@@ -4386,7 +4398,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -4678,7 +4690,7 @@ ...@@ -4678,7 +4690,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -4970,7 +4982,7 @@ ...@@ -4970,7 +4982,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -5262,7 +5274,7 @@ ...@@ -5262,7 +5274,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -5554,7 +5566,7 @@ ...@@ -5554,7 +5566,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -5846,7 +5858,7 @@ ...@@ -5846,7 +5858,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -6138,7 +6150,7 @@ ...@@ -6138,7 +6150,7 @@
"_lineHeight": 70, "_lineHeight": 70,
"_enableWrapText": true, "_enableWrapText": true,
"_N$file": { "_N$file": {
"__uuid__": "a65fc8cf-c788-43d5-bdb7-4286b1bc1052" "__uuid__": "086fa3e3-d143-413b-95f7-049127b48c8d"
}, },
"_isSystemFontUsed": false, "_isSystemFontUsed": false,
"_spacingX": 0, "_spacingX": 0,
...@@ -6343,6 +6355,4669 @@ ...@@ -6343,6 +6355,4669 @@
"_originalHeight": 0, "_originalHeight": 0,
"_id": "e0Tx/xZuxGn6z779iSKYDg" "_id": "e0Tx/xZuxGn6z779iSKYDg"
}, },
{
"__type__": "cc.Node",
"_name": "layer_back_hy05_pintu",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 146
},
{
"__id__": 151
}
],
"_active": true,
"_components": [
{
"__id__": 166
},
{
"__id__": 167
}
],
"_prefab": {
"__id__": 168
},
"_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": "3dzPvsd3FAa6P5UeVqGSMs"
},
{
"__type__": "cc.Node",
"_name": "btn_back",
"_objFlags": 0,
"_parent": {
"__id__": 145
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 147
},
{
"__id__": 148
},
{
"__id__": 149
}
],
"_prefab": {
"__id__": 150
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 189,
"height": 117
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-804.917,
439.747,
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": "31NuxTyLlB966ZMYR1alwo"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 146
},
"_enabled": true,
"_materials": [
{
"__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,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "09r2awcFpK3LeWA0xIzon6"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 146
},
"_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": "57mUnciPFPRYFyyKMkfEOB"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 146
},
"_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": "75xl8ynuxCg4xKaVNOJ+6e"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "61ulP3c3dDLb+4SfgnWK1F",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "label_title",
"_objFlags": 0,
"_parent": {
"__id__": 145
},
"_children": [
{
"__id__": 152
}
],
"_active": true,
"_components": [
{
"__id__": 164
}
],
"_prefab": {
"__id__": 165
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 188,
"g": 132,
"b": 235,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 150.74,
"height": 63
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-685.473,
441.1,
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": "b8h8guzsBJr4bvWprKG0Kf"
},
{
"__type__": "cc.Node",
"_name": "img_npc_voice",
"_objFlags": 0,
"_parent": {
"__id__": 151
},
"_children": [
{
"__id__": 153
},
{
"__id__": 156
},
{
"__id__": 159
}
],
"_active": true,
"_components": [
{
"__id__": 162
}
],
"_prefab": {
"__id__": 163
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
208.95399999999995,
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": "0e9dvMwRhMlZyEaGaaB6O2"
},
{
"__type__": "cc.Node",
"_name": "p1",
"_objFlags": 0,
"_parent": {
"__id__": 152
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 154
}
],
"_prefab": {
"__id__": 155
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 68,
"height": 70
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-10.611,
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": "2fV/OviXpOl467OcLtYMhR"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 153
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "5d214bcc-ae6a-48b2-8e3e-693089d66911"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "a9owMPUjxG2aJxzSgoTaV+"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "24sc3KKz1GwYD9fN1vST/m",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "p2",
"_objFlags": 0,
"_parent": {
"__id__": 152
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 157
}
],
"_prefab": {
"__id__": 158
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 84,
"height": 70
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-2.806,
-0.005,
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": "dejGgdu+JNKoghNV8cAuYu"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 156
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "008bbd55-b1e7-4e82-bf54-f6cf40ebb738"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "fdJDNst7pC8qY4f2RxxOXp"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "3eNvEzM/JP56UZzdtTQAIN",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "p3",
"_objFlags": 0,
"_parent": {
"__id__": 152
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 160
}
],
"_prefab": {
"__id__": 161
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 95,
"height": 70
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
2.8,
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": "59afJsjmpNU59uH3+M3XGb"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 159
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "603d0882-deba-4173-8432-b9da5e547d20"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "28hsgBfftFzIuFra1cylS8"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "72yribDepLjZha4CRHI/xf",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 152
},
"_enabled": true,
"alignMode": 2,
"_target": null,
"_alignFlags": 32,
"_left": 0,
"_right": -108.21399999999997,
"_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": "352PBfzIxMjquHfwBf1uUo"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "e4KS5h7tdFiJnCxI3YJ5LQ",
"sync": false
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 151
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "I Spell",
"_N$string": "I Spell",
"_fontSize": 50,
"_lineHeight": 50,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "927f6c73-f3af-4c69-a990-9dc6668dbb70"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "7aSJCEwqxFm41MOZwfSYFr"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "0aBC7NPVlMNKQpHcVkCq5H",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 145
},
"_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": "eeDbRMKThLjIOE8GzL9RSW"
},
{
"__type__": "7ab71itR/hJz4giCFo5yFB1",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 145
},
"_enabled": true,
"_id": "e3Muq0igVDXbAN2/kZXKC9"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 145
},
"asset": {
"__uuid__": "0b87ca13-07e1-4237-ab3b-7f27c69deb2d"
},
"fileId": "",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layer_right_hy05_pintu",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 170
},
{
"__id__": 184
},
{
"__id__": 193
},
{
"__id__": 202
}
],
"_active": true,
"_components": [
{
"__id__": 211
},
{
"__id__": 212
}
],
"_prefab": {
"__id__": 213
},
"_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": "c9olshVUhKqYsMclxkbJLC"
},
{
"__type__": "cc.Node",
"_name": "voice",
"_objFlags": 0,
"_parent": {
"__id__": 169
},
"_children": [
{
"__id__": 171
},
{
"__id__": 174
},
{
"__id__": 177
},
{
"__id__": 180
}
],
"_active": false,
"_components": [],
"_prefab": {
"__id__": 183
},
"_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": "fddctEJutKoa93aa2g1C33"
},
{
"__type__": "cc.Node",
"_name": "excellent",
"_objFlags": 0,
"_parent": {
"__id__": 170
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 172
}
],
"_prefab": {
"__id__": 173
},
"_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": "f87o2UnvxM5byGPKL/rBIN"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 171
},
"_enabled": true,
"_clip": {
"__uuid__": "bafa4c84-01c2-4d6c-8343-745066eed098"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "501xYvl9BAI7tzmaBUep8i"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "33BUA/V/lMP72inCoeXVsT",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "good",
"_objFlags": 0,
"_parent": {
"__id__": 170
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 175
}
],
"_prefab": {
"__id__": 176
},
"_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": "53z6c1y6NNMZVm4cvhnZW9"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 174
},
"_enabled": true,
"_clip": {
"__uuid__": "78f18bf7-e329-4386-aaee-1b6737fe5a03"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "0aTDhdvKxFVLkNgSZv4nOJ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "1aZVj6BXRH4qCn6l6Mr4Xd",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "tryagain",
"_objFlags": 0,
"_parent": {
"__id__": 170
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 178
}
],
"_prefab": {
"__id__": 179
},
"_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": "90gDrrSsxOEryClq8NplC9"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 177
},
"_enabled": true,
"_clip": {
"__uuid__": "3796b67a-a501-40dc-a1b1-8ea234651d9e"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "f0l8LaqkBB8rrYEnGwr1Iu"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "9eQtRXoTJFf7nIEjAHkeFj",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "ani",
"_objFlags": 0,
"_parent": {
"__id__": 170
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 181
}
],
"_prefab": {
"__id__": 182
},
"_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": "36KlMTExJMcrrhE5wRw7Pm"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 180
},
"_enabled": true,
"_clip": {
"__uuid__": "674f97a3-1898-4235-9473-17c357c39605"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "ac2Dby8mxJNJNbmY/QM/Ih"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "e3ZmGZ8MpFYoRQ8CustwVU",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "0bdqtUq3JBRpMAm0cr1j0t",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layout_excellent",
"_objFlags": 0,
"_parent": {
"__id__": 169
},
"_children": [
{
"__id__": 185
},
{
"__id__": 188
}
],
"_active": false,
"_components": [
{
"__id__": 191
}
],
"_prefab": {
"__id__": 192
},
"_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": "7bdxhWzvlJkbzPpp3tJ8by"
},
{
"__type__": "cc.Node",
"_name": "bg",
"_objFlags": 0,
"_parent": {
"__id__": 184
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 186
}
],
"_prefab": {
"__id__": 187
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 5000,
"height": 5000
},
"_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": "dft0yMKLRPZYF99LngmPpN"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 185
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6eojour55NcJ0vaqVni6I3"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "a4AdqYiz1DOqgSmMuhc2/N",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "AniNode",
"_objFlags": 0,
"_parent": {
"__id__": 184
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 189
}
],
"_prefab": {
"__id__": 190
},
"_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,
-550,
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": "b1rFqj7LdGspT0aw9s5UxI"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 188
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "armatureName",
"_animationName": "newAnimation",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "cafb4d03-522d-4674-879a-b8193c99d2b2#14afe0ae-e556-497f-bf9e-0aab665b5693",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "cafb4d03-522d-4674-879a-b8193c99d2b2"
},
"_N$dragonAtlasAsset": {
"__uuid__": "14afe0ae-e556-497f-bf9e-0aab665b5693"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "f5rpxT22RCNo90nabjkdSz"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "b40tHKPZVIp4ryIkubxK9K",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 184
},
"_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": "c3HClmKGxPaJizelT1kQGd"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "83atRd3AhNS6YbVLMWW6z7",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layout_good",
"_objFlags": 0,
"_parent": {
"__id__": 169
},
"_children": [
{
"__id__": 194
},
{
"__id__": 197
}
],
"_active": false,
"_components": [
{
"__id__": 200
}
],
"_prefab": {
"__id__": 201
},
"_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": "43IOt4eOpGRbmGSX5qUbCy"
},
{
"__type__": "cc.Node",
"_name": "bg",
"_objFlags": 0,
"_parent": {
"__id__": 193
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 195
}
],
"_prefab": {
"__id__": 196
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 5000,
"height": 5000
},
"_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": "61lwHpdqBNHYp1FWalw7n4"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 194
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "d6MMlSF4tLHZSjq2vvUgHV"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "b0N5+syk5Fma/+rzNtImtq",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "AniNode",
"_objFlags": 0,
"_parent": {
"__id__": 193
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 198
}
],
"_prefab": {
"__id__": 199
},
"_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,
-550,
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": "6bWLx6Pe9B4ZY28Chzp/5+"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 197
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "armatureName",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "c9cb8190-feb9-4295-a068-9669e36839ad#0d2c601a-6231-45ad-9d1f-d5d51092137b",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "c9cb8190-feb9-4295-a068-9669e36839ad"
},
"_N$dragonAtlasAsset": {
"__uuid__": "0d2c601a-6231-45ad-9d1f-d5d51092137b"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "26HTJ8WolJO4vZm/4E2zAm"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "ackXXHynhEpaEXIfNccJJW",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 193
},
"_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": "9dAU9VYVhNwbra47PNBiV2"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "8eHReYoFBEp6s2TkckkFAw",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layout_tryagain",
"_objFlags": 0,
"_parent": {
"__id__": 169
},
"_children": [
{
"__id__": 203
},
{
"__id__": 206
}
],
"_active": false,
"_components": [
{
"__id__": 209
}
],
"_prefab": {
"__id__": 210
},
"_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": "10SqQtpVJGVrYsTR5GvLcO"
},
{
"__type__": "cc.Node",
"_name": "bg",
"_objFlags": 0,
"_parent": {
"__id__": 202
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 204
}
],
"_prefab": {
"__id__": 205
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 5000,
"height": 5000
},
"_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": "adiW7TgjpKFa6QdkvKtGW/"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 203
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6c0PgBL3FNXoJARwHe4Xop"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "e1LWaBqmRKr73B1CTK/ObB",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "AniNode",
"_objFlags": 0,
"_parent": {
"__id__": 202
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 207
}
],
"_prefab": {
"__id__": 208
},
"_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,
-550,
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": "f53JfSi19NmZshmCCEWVwg"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 206
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "armatureName",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "b42b295e-67a2-4856-abff-b0f11377e257#1281c03b-70f7-44b4-8cd7-be6328cc711e",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "b42b295e-67a2-4856-abff-b0f11377e257"
},
"_N$dragonAtlasAsset": {
"__uuid__": "1281c03b-70f7-44b4-8cd7-be6328cc711e"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "09zxFhjUJGHrBXk+XEqWC2"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "e1BDqU+wNAoI5A+CoPvUBu",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 202
},
"_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": "70ylqocylMP5h+wPsUJ4q4"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "24bb5gispDeJFU6G8gojxv",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 169
},
"_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": "d5G1RRVwlAoryY8v9L4OuI"
},
{
"__type__": "6f117NCDy9BKrINFNVufOha",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 169
},
"_enabled": true,
"_id": "9c/TTsfO5OWJWcAXuG5JNw"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 169
},
"asset": {
"__uuid__": "b4ac88a3-938b-460f-841e-8f69789677bc"
},
"fileId": "",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layer_coin_hy05_pintu",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 215
},
{
"__id__": 229
}
],
"_active": true,
"_components": [
{
"__id__": 234
}
],
"_prefab": {
"__id__": 235
},
"_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": "cbi+2HqkVNB6dmScyB+fya"
},
{
"__type__": "cc.Node",
"_name": "layout_center",
"_objFlags": 0,
"_parent": {
"__id__": 214
},
"_children": [
{
"__id__": 216
},
{
"__id__": 219
},
{
"__id__": 222
},
{
"__id__": 225
}
],
"_active": false,
"_components": [],
"_prefab": {
"__id__": 228
},
"_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": "617gcVpe9A7J0a5zVizb/t"
},
{
"__type__": "cc.Node",
"_name": "bg_gray",
"_objFlags": 0,
"_parent": {
"__id__": 215
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 217
}
],
"_prefab": {
"__id__": 218
},
"_opacity": 102,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 3000,
"height": 3000
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
47.112,
11.778,
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": "4bqbBJuMpMKpwTQ0QZ0oi3"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 216
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "182+4NvOdEd6rqXR/dDRIF"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "adm8kBzH9HDL0yNTkOoNZO",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "aniNode1",
"_objFlags": 0,
"_parent": {
"__id__": 215
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 220
}
],
"_prefab": {
"__id__": 221
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 666.0255708350624,
"height": 304.2308109319082
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
50.804,
-3.435,
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": "b6YFzyvG1IRpSvJAiIvMMI"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 219
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "three",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b#d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b"
},
"_N$dragonAtlasAsset": {
"__uuid__": "d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "76m1qyi8xOR6X0rvazagin"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "63iyJKJbRIJ4rv8EKr2oF0",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "aniNode2",
"_objFlags": 0,
"_parent": {
"__id__": 215
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 223
}
],
"_prefab": {
"__id__": 224
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 518.8058428187197,
"height": 235.71230824585237
},
"_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": "91SLC0LAFDNqHDFmPKt4be"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 222
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "two",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": -1,
"premultipliedAlpha": false,
"_armatureKey": "f011f737-1f65-490f-b1ca-1a960c98d8f9#bcb9481d-5c54-4e50-85ad-777961ce63b2",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "f011f737-1f65-490f-b1ca-1a960c98d8f9"
},
"_N$dragonAtlasAsset": {
"__uuid__": "bcb9481d-5c54-4e50-85ad-777961ce63b2"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "01DyUATpFFeYOHcEBiGLJl"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "c6Hl8henxOxrh4ppMincco",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "aniNode3",
"_objFlags": 0,
"_parent": {
"__id__": 215
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 226
}
],
"_prefab": {
"__id__": 227
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 666.0255708350624,
"height": 304.2308109319082
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
50.804,
-3.435,
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": "70Jg8ZQedNHq4vbjIA4/ob"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 225
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "three",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 1,
"premultipliedAlpha": false,
"_armatureKey": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b#d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "4c8b7a1c-163d-4358-811b-1c79de3c9b9b"
},
"_N$dragonAtlasAsset": {
"__uuid__": "d0a6e7e0-94c8-4828-bd3e-ab5d98f0a611"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 1,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "7bqW69IxZFNrmP4Ot4NToT"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "e1DhwVfNlC3Y7kDIyCry0m",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "a2tpK1wadIapdt6ho6M6te",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "res",
"_objFlags": 0,
"_parent": {
"__id__": 214
},
"_children": [
{
"__id__": 230
}
],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 233
},
"_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": "82WvDymOFGl4q7z092EnWw"
},
{
"__type__": "cc.Node",
"_name": "coin",
"_objFlags": 0,
"_parent": {
"__id__": 229
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 231
}
],
"_prefab": {
"__id__": 232
},
"_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": "050jV5A09J4q3pYgEmrZnb"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 230
},
"_enabled": true,
"_clip": {
"__uuid__": "7d43789c-0138-4603-82af-1892d2cad30a"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "42pb5qYOFGrajn2to9ebS+"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "185tOCC+BKhYGnn4V3TEoT",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "e5iD0Y+fBOfr63Di1EJOwC",
"sync": false
},
{
"__type__": "72802EOwh1KuKnBHYcntgZY",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 214
},
"_enabled": true,
"_id": "8eV1QXijRFRIKyIa4yP1P9"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 214
},
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
},
"fileId": "",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layer_ending_hy05_pintu",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 237
},
{
"__id__": 268
}
],
"_active": true,
"_components": [
{
"__id__": 273
}
],
"_prefab": {
"__id__": 274
},
"_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": "a77MzpBqdC+aH3Wb4zYY2U"
},
{
"__type__": "cc.Node",
"_name": "layer_center",
"_objFlags": 0,
"_parent": {
"__id__": 236
},
"_children": [
{
"__id__": 238
},
{
"__id__": 241
},
{
"__id__": 243
},
{
"__id__": 246
},
{
"__id__": 249
},
{
"__id__": 252
},
{
"__id__": 255
}
],
"_active": false,
"_components": [],
"_prefab": {
"__id__": 267
},
"_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": "53YiUFnjRCv7tc8ZBPpmsI"
},
{
"__type__": "cc.Node",
"_name": "gray_cover",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 239
}
],
"_prefab": {
"__id__": 240
},
"_opacity": 102,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 3000,
"height": 3000
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-0.508,
1.574,
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": "441/npogFJ5YUSC7T63Mwi"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 238
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "bdqVWknsRIApMkBQoNvVLb"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "1cfNdHF9FH3KbwZyC/Rw6p",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "layer_middle",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 242
},
"_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": "6fU1t+bqpCDLNKJgYupmal"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "05udCU1VdI/agyYkkywj7D",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "replay_btn",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 244
}
],
"_prefab": {
"__id__": 245
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 153,
"height": 153
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-500.013,
-340.145,
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": "54no4t84pHjJgQNHM4yrsD"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 243
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "1b782eab-25d2-4314-b83a-258f7e4d7ea4"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "0ei1W4G+JAuZOOepnecxzG"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "64JkLZPOJB45Eawytu4dgS",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "bg_light",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 247
}
],
"_prefab": {
"__id__": 248
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1104,
"height": 1109
},
"_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": "8eQS6UD6BM/5vEka+vvYqw"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 246
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "25fb3f92-bcc7-4131-9799-223ffe697b15"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "88y46NGr9HDp5PeoeigYjL"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "06ZiT3YYpCj6mdNSxdYMvD",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "finish_cat",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 250
}
],
"_prefab": {
"__id__": 251
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 512,
"height": 497.77919520611704
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
-214.645,
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": "3aTD/nKKpKcIQVTNLHb23C"
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 249
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"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": {
"__uuid__": "c9537625-dbfc-4d95-a3b3-d3d672dc93e6"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 0,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "83vx+bCuhJXZmOj8W2d2Bl"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "15OJA0Q/JIlJbDN8f4ukZN",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "next_btn",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 253
}
],
"_prefab": {
"__id__": 254
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 153,
"height": 153
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
500.013,
-343.546,
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": "5b4Uj0zmpFE5VzhVHGBAWJ"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 252
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_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": "baYSh4Y4ZAea/tYktvmon8"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "e68b5eJphElLrpxtQEdyxG",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "finish_box",
"_objFlags": 0,
"_parent": {
"__id__": 237
},
"_children": [
{
"__id__": 256
},
{
"__id__": 259
},
{
"__id__": 262
}
],
"_active": true,
"_components": [
{
"__id__": 265
}
],
"_prefab": {
"__id__": 266
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 714,
"height": 166
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
-204,
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": "a5eWfEmr1EdZgnmySDJK4d"
},
{
"__type__": "cc.Node",
"_name": "result_text",
"_objFlags": 0,
"_parent": {
"__id__": 255
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 257
}
],
"_prefab": {
"__id__": 258
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 252,
"b": 232,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 225,
"height": 56.7
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-88,
10,
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": "40ZEWLMS1FlKQcS/AeT/de"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 256
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "恭喜你获得",
"_N$string": "恭喜你获得",
"_fontSize": 45,
"_lineHeight": 45,
"_enableWrapText": true,
"_N$file": null,
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 1,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "78pnebzHtPcJO38ATGFN1l"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "eaTaVhDcBEkqwz8ACtP7x3",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "coin",
"_objFlags": 0,
"_parent": {
"__id__": 255
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 260
}
],
"_prefab": {
"__id__": 261
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 67,
"height": 70
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
83,
10,
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": "94a/hh/i1OqZ8tzF0PO2X9"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 259
},
"_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": "f6vzC5DcZF/rke3dXO9gJp"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "13IYbTThlC5rDXn6k7swYV",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "coin_num",
"_objFlags": 0,
"_parent": {
"__id__": 255
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 263
}
],
"_prefab": {
"__id__": 264
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 252,
"b": 232,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 55.04,
"height": 56.7
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
130.345,
10,
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": "60ZsGYu1BCvrnglmsM5Wus"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 262
},
"_enabled": true,
"_materials": [
{
"__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": "a9C0Hle4hCgaDZ6K5kIib8"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "52Z0lpksxE1JprOrhHgdow",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 255
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "23a8b623-34a7-4290-b6c8-d6092f00b95d"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "28Z3leVctP5b1kfUHGY9Xn"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "911Shrt8NB/ZWFA9u7l/SL",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "7cG7U7lH9Ie5/sK83LZUCP",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "res",
"_objFlags": 0,
"_parent": {
"__id__": 236
},
"_children": [
{
"__id__": 269
}
],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 272
},
"_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": "91vSIzgb5FmaP2wP8WX25g"
},
{
"__type__": "cc.Node",
"_name": "ending",
"_objFlags": 0,
"_parent": {
"__id__": 268
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 270
}
],
"_prefab": {
"__id__": 271
},
"_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": "e81zMuVRBGJ5DW1nhNw5MW"
},
{
"__type__": "cc.AudioSource",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 269
},
"_enabled": true,
"_clip": {
"__uuid__": "78fa786c-cb39-47d2-a4a8-c6325aa156bb"
},
"_volume": 1,
"_mute": false,
"_loop": false,
"_firstlyEnabled": true,
"playOnLoad": false,
"preload": false,
"_id": "0fWwwcTwZCFY5xSY8L4inc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "f9vxaSJK5EpYuRQDkXL09t",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "4cGmarm1NKC6LGDcWWF/bS",
"sync": false
},
{
"__type__": "8aa900+eYBD775dNwfvQqgE",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 236
},
"_enabled": true,
"_id": "d7wN6OoxNMurVw8/98828K"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 236
},
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
},
"fileId": "",
"sync": false
},
{ {
"__type__": "cc.Canvas", "__type__": "cc.Canvas",
"_name": "", "_name": "",
......
import { asyncDelay, exchangeNodePos, getSprNode, onHomeworkFinish, onHomeworkStart, playAudio } from "../script/util_hy14_pipei"; import { asyncDelay, exchangeNodePos, getSprNode, onHomeworkFinish, onHomeworkStart, playAudio } from "../script/util_hy14_pipei";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent_hy14_pipei"; import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent_hy14_pipei";
import Game, { ItemJigsaw, OptionJigsaw } from "./Game_hy14_pipei"; import Game, { imageZize, ItemJigsaw, OptionJigsaw } from "./Game_hy14_pipei";
import pg from "./pg_hy14_pipei"; import pg from "./pg_hy14_pipei";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -27,7 +27,7 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent { ...@@ -27,7 +27,7 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考 // TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData(); this.initData();
this.initView(); this.initView();
this.initEvent(); this.initListener();
} }
@property(cc.Node) @property(cc.Node)
layout_sort: cc.Node = null; layout_sort: cc.Node = null;
...@@ -41,8 +41,31 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent { ...@@ -41,8 +41,31 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
item: cc.Node = null; item: cc.Node = null;
private initListener() {
pg.event.on("layer_record_score", (score) => {
});
pg.event.on('npc_voice_play_voice_end', () => {
})
pg.event.emit('npc_layer_back_init', this.data)
pg.event.on('layer_ending_touch_replay', () => {
this.replay();
})
pg.event.on('layer_coin_show_coin_end', () => {
pg.event.emit('layer_ending_show', { coin: 3 })
})
pg.event.on("gameOver", () => { this.gameOver() })
cc.find("ScrollView", this.node).on("scroll-began", this.onScroll, this);
}
replay() {
this.initData();
this.initView();
}
initData() { initData() {
Game.getIns().init(this.data); Game.getIns().init(this.data);
...@@ -58,18 +81,10 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent { ...@@ -58,18 +81,10 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
//自动创建卡片 //自动创建卡片
let itembg = cc.find("itembg", this.node); let itembg = cc.find("itembg", this.node);
pg.view.setNetImg(itembg, Game.getIns().image, { w: 1279, h: 666 }); pg.view.setNetImg(itembg, Game.getIns().image, { w: imageZize.width, h: imageZize.height });
this.createCrads(); this.createCrads();
} }
initEvent() {
// this.page_view.on('page-turning', this.pageTurning, this);
// pg.event.on("startGame", () => { this.startGame() })
// pg.event.on("nextPage", () => { this.nextPage() })
pg.event.on("gameOver", () => { this.gameOver() })
cc.find("ScrollView", this.node).on("scroll-began", this.onScroll, this);
}
protected update(dt: number): void { protected update(dt: number): void {
} }
...@@ -136,6 +151,7 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent { ...@@ -136,6 +151,7 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
ch.active = true; ch.active = true;
let desc = cc.find("desc", ch); let desc = cc.find("desc", ch);
desc.getComponent(cc.Label).string = dt.text; desc.getComponent(cc.Label).string = dt.text;
desc.active = true;
let data: any = {}; let data: any = {};
data.text = dt.text; data.text = dt.text;
data.parent = ch; data.parent = ch;
...@@ -286,6 +302,10 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent { ...@@ -286,6 +302,10 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
gameOver() { gameOver() {
this.log("over ~~~~~~~~~~~~~~") this.log("over ~~~~~~~~~~~~~~")
pg.event.once('layer_right_show_excellent_end', () => {
pg.event.emit('layer_coin_show_coin', 3) //1 2 3硬币数量
})
pg.event.emit("layer_right_show_excellent");
} }
...@@ -300,3 +320,4 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent { ...@@ -300,3 +320,4 @@ export default class PuzzleJigsaw extends MyCocosSceneComponent {
} }
} }
...@@ -531,14 +531,16 @@ let pg = { ...@@ -531,14 +531,16 @@ let pg = {
} }
}, },
audio: { audio: {
playAudioByUrl(audio_url) { playAudioByUrl(audio_url, cb = null, loadCb = null) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
if (!audio_url) return resolve(null); if (!audio_url) return resolve(null);
cc.assetManager.loadRemote(audio_url, (err, audioClip: any) => { cc.assetManager.loadRemote(audio_url, (err, audioClip: any) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8); const audioId = cc.audioEngine.play(audioClip, false, 0.8);
cc.audioEngine.setFinishCallback(audioId, () => { cc.audioEngine.setFinishCallback(audioId, () => {
cb && cb();
resolve(audioId); resolve(audioId);
}); });
loadCb && loadCb(audioId);
}); });
}); });
}, },
...@@ -551,6 +553,14 @@ let pg = { ...@@ -551,6 +553,14 @@ let pg = {
}); });
}) })
}, },
playLocalAudio(audio: cc.Node) {
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.getComponent(cc.AudioSource).clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
},
stopAudio(audioId) { stopAudio(audioId) {
if (!audioId) return; if (!audioId) return;
cc.audioEngine.stopEffect(audioId); cc.audioEngine.stopEffect(audioId);
...@@ -581,3 +591,4 @@ let pg = { ...@@ -581,3 +591,4 @@ let pg = {
event: Emitter.getInstance() event: Emitter.getInstance()
}; };
export default pg; export default pg;
...@@ -177,3 +177,4 @@ export class MyCocosSceneComponent extends cc.Component { ...@@ -177,3 +177,4 @@ export class MyCocosSceneComponent extends cc.Component {
} }
} }
} }
export const defaultData = { export const defaultData = {
"points": "", "points": "",
"questionScore": 0, "questionScore": 0,
"questions": [{
"options": [{
"type": "img",
"image": "",
"audio": "",
"text": "",
"time": "",
"right": false
}, {
"type": "img",
"image": "",
"audio": "",
"text": "",
"time": "",
"right": false
}, {
"type": "img",
"image": "",
"audio": "",
"text": "",
"time": "",
"right": false
}
],
"type": "img"
}
],
"bgItem": { "bgItem": {
"url": "http://staging-teach.cdn.ireadabc.com/933163fae966edff0633a0bb97e5c5bc.jpg", "url": "http://staging-teach.cdn.ireadabc.com/933163fae966edff0633a0bb97e5c5bc.jpg",
"rect": { "rect": {
...@@ -108,7 +135,12 @@ export const defaultData = { ...@@ -108,7 +135,12 @@ export const defaultData = {
} }
} }
], ],
"questionText": "" "questionText": "",
"npcTitle": "may",
"npcAudio": "http://staging-teach.cdn.ireadabc.com/36067f9e2415d59fa37c3795a3929087_l.mp3",
"npcAudioName": "bear_3.mp3"
} }
...@@ -442,3 +442,4 @@ export function onHomeworkStart(cb) { ...@@ -442,3 +442,4 @@ export function onHomeworkStart(cb) {
cb && cb(null); cb && cb(null);
} }
} }
...@@ -48,6 +48,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -48,6 +48,7 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
@Output() audioUploaded = new EventEmitter(); @Output() audioUploaded = new EventEmitter();
@Output() audioUploadFailure = new EventEmitter(); @Output() audioUploadFailure = new EventEmitter();
@Output() audioRemoved = new EventEmitter(); @Output() audioRemoved = new EventEmitter();
@Output() audioName = new EventEmitter();
percent = 0; percent = 0;
progress = 0; progress = 0;
recorder: any; recorder: any;
...@@ -186,8 +187,13 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy { ...@@ -186,8 +187,13 @@ export class AudioRecorderComponent implements OnInit, OnChanges, OnDestroy {
break; break;
case 'success': case 'success':
this.isUploading = false; this.isUploading = false;
let url = info.file.response.url;
url = url.substring(0, url.lastIndexOf(".")) + "_l.mp3";
info.file.response.url = url;
info.file.response.audioName = info.file.name;
this.uploadSuccess(info.file.response); this.uploadSuccess(info.file.response);
this.audioUploaded.emit(info.file.response); this.audioUploaded.emit(info.file.response);
this.audioName.emit(info.file.name);
break; break;
case 'progress': case 'progress':
this.progress = parseInt(info.event.percent, 10); this.progress = parseInt(info.event.percent, 10);
......
...@@ -66,15 +66,13 @@ export class ComponentBase { ...@@ -66,15 +66,13 @@ export class ComponentBase {
* 储存音频数据 * 储存音频数据
* @param e * @param e
*/ */
onAudioUploadSuccess(e, key, it = this.item) { onAudioUploadSuccess(e, key, it = this.item, audioName) {
let url = e.url; let url = e.url;
let sp = url.split(".mp3"); it[key] = url;
let u = sp[0] + "_l.mp3"; it[audioName] = e.audioName || "";
it[key] = u; console.log(JSON.stringify(e));
it["audioName"] = e.name || "";
this.save(); this.save();
} }
save() { save() {
(<any>window).courseware.setData(this.item, null, this.saveKey); (<any>window).courseware.setData(this.item, null, this.saveKey);
this.itemStr = JSON.stringify(this.item, null, 4).trim(); this.itemStr = JSON.stringify(this.item, null, 4).trim();
......
...@@ -76,26 +76,45 @@ ...@@ -76,26 +76,45 @@
<div style="padding: 10px;background-color: #fff;"> <div style="padding: 10px;background-color: #fff;">
<div class="border-dashed" style="margin: 20px;width: 1300px;"> <div class="border-dashed" style="margin: 20px;width: 1300px;">
<span style="font-size: 20px;">标题: </span>
<input type="text" nz-input [(ngModel)]="item.npcTitle" (blur)="save()">
<span style="font-size: 20px;">npc音频: </span>
<div style="display:flex ;">
<div>
<app-audio-recorder [audioUrl]="item.npcAudio"
(audioUploaded)="onAudioUploadSuccess($event, 'npcAudio',item,'npcAudioName')">
</app-audio-recorder>
</div>
<div style="margin: 5px">
<span>{{ item.npcAudioName}}</span>
</div>
</div>
<div style="padding: 10px;background-color: #fff;">
<div class="border-dashed" style="margin: 20px;width: 1200px;">
<div class="border-dashed" style="margin: 20px;width: 1000px;">
<h2>热区配置:</h2>
<app-custom-hot-zone [bgItem]="item.bgItem" [hotZoneItemArr]="item.hotZoneItemArr"
[customTypeGroupArr]="customTypeGroupArr" (save)="saveHotZone(item, $event)">
</app-custom-hot-zone>
</div>
</div>
</div>
<div class="border-dashed" style="margin: 20px;width: 1000px;">
<h2>热区配置:</h2>
<app-custom-hot-zone [bgItem]="item.bgItem" [hotZoneItemArr]="item.hotZoneItemArr"
[customTypeGroupArr]="customTypeGroupArr" (save)="saveHotZone(item, $event)">
</app-custom-hot-zone>
</div> </div>
<nz-modal [(nzVisible)]="isVisible" [nzTitle]="null" [nzContent]="modalContent" [nzFooter]="modalFooter"
</div> (nzOnCancel)="handleCancel()">
<nz-modal [(nzVisible)]="isVisible" [nzTitle]="null" [nzContent]="modalContent" [nzFooter]="modalFooter" <ng-template #modalContent>
(nzOnCancel)="handleCancel()"> <p>{{deleteTitle}}</p>
</ng-template>
<ng-template #modalContent>
<p>{{deleteTitle}}</p> <ng-template #modalFooter>
</ng-template> <button nz-button nzType="default" (click)="handleCancel()">取消</button>
<button nz-button nzType="primary" (click)="handleOk()">确定</button>
<ng-template #modalFooter> </ng-template>
<button nz-button nzType="default" (click)="handleCancel()">取消</button> </nz-modal>
<button nz-button nzType="primary" (click)="handleOk()">确定</button> </div>
</ng-template> \ No newline at end of file
</nz-modal>
</div>
\ No newline at end of file
...@@ -119,6 +119,9 @@ export class FormComponent extends ComponentBase implements OnInit, OnChanges, O ...@@ -119,6 +119,9 @@ export class FormComponent extends ComponentBase implements OnInit, OnChanges, O
bgItem: '', bgItem: '',
hotZoneItemArr: [], hotZoneItemArr: [],
npcTitle: "",
npcAudio: "",
npcAudioName: '',
questionText: "", questionText: "",
...@@ -143,6 +146,9 @@ export class FormComponent extends ComponentBase implements OnInit, OnChanges, O ...@@ -143,6 +146,9 @@ export class FormComponent extends ComponentBase implements OnInit, OnChanges, O
this.handleCancel(); this.handleCancel();
} }
init(): void { init(): void {
if (!this.item.npcTitle) this.item.npcTitle = '';
if (!this.item.npcAudio) this.item.npcAudio = '';
if (!this.item.npcAudioName) this.item.npcAudioName = '';
console.log(new MetaFormCreator().create()); console.log(new MetaFormCreator().create());
// if (this.item.questions.length == 0) { // if (this.item.questions.length == 0) {
......
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