Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hy02_paopao
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
hy02_paopao
Commits
08adcf58
Commit
08adcf58
authored
Jul 10, 2023
by
yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
e20a93eb
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
417 additions
and
132 deletions
+417
-132
LayerBack_hy02_paopao.ts
...ts/hy02_paopao/common/layer_back/LayerBack_hy02_paopao.ts
+6
-0
layer_ending_hy02_paopao.ts
...02_paopao/common/layer_ending/layer_ending_hy02_paopao.ts
+12
-1
Candy_hy02_paopao.ts
assets/hy02_paopao/common/script/Candy_hy02_paopao.ts
+59
-0
Candy_hy02_paopao.ts.meta
assets/hy02_paopao/common/script/Candy_hy02_paopao.ts.meta
+9
-0
STYuanti-SC-Bold-03.ttf
assets/hy02_paopao/fonts/STYuanti-SC-Bold-03.ttf
+0
-0
STYuanti-SC-Bold-03.ttf.meta
assets/hy02_paopao/fonts/STYuanti-SC-Bold-03.ttf.meta
+5
-0
hy02_paopao.fire
assets/hy02_paopao/scene/hy02_paopao.fire
+326
-131
No files found.
assets/hy02_paopao/common/layer_back/LayerBack_hy02_paopao.ts
View file @
08adcf58
...
@@ -11,6 +11,7 @@ const { ccclass, property } = cc._decorator;
...
@@ -11,6 +11,7 @@ const { ccclass, property } = cc._decorator;
export
default
class
LayerBack
extends
cc
.
Component
{
export
default
class
LayerBack
extends
cc
.
Component
{
private
btn_back
:
cc
.
Node
;
private
btn_back
:
cc
.
Node
;
private
img_npc_voice
:
cc
.
Node
;
private
img_npc_voice
:
cc
.
Node
;
private
bg_forbid
:
cc
.
Node
;
onLoad
()
{
onLoad
()
{
this
.
initView
();
this
.
initView
();
this
.
initEvent
();
this
.
initEvent
();
...
@@ -19,6 +20,7 @@ export default class LayerBack extends cc.Component {
...
@@ -19,6 +20,7 @@ export default class LayerBack extends cc.Component {
initView
()
{
initView
()
{
this
.
bg_forbid
=
pg
.
view
.
find
(
this
,
'
bg_forbid
'
)
this
.
btn_back
=
pg
.
view
.
find
(
this
,
'
btn_back
'
)
this
.
btn_back
=
pg
.
view
.
find
(
this
,
'
btn_back
'
)
this
.
label_title
=
pg
.
view
.
find
(
this
,
'
label_title
'
)
this
.
label_title
=
pg
.
view
.
find
(
this
,
'
label_title
'
)
this
.
img_npc_voice
=
pg
.
view
.
find
(
this
.
label_title
,
'
img_npc_voice
'
)
this
.
img_npc_voice
=
pg
.
view
.
find
(
this
.
label_title
,
'
img_npc_voice
'
)
...
@@ -38,6 +40,7 @@ export default class LayerBack extends cc.Component {
...
@@ -38,6 +40,7 @@ export default class LayerBack extends cc.Component {
pg
.
event
.
on
(
'
npc_layer_back_init
'
,
(
data
)
=>
{
pg
.
event
.
on
(
'
npc_layer_back_init
'
,
(
data
)
=>
{
this
.
updateView
(
data
);
this
.
updateView
(
data
);
if
(
!
this
.
npcAudio
)
{
if
(
!
this
.
npcAudio
)
{
pg
.
view
.
visible
(
this
.
bg_forbid
,
false
)
pg
.
event
.
emit
(
'
npc_voice_play_voice_end
'
);
pg
.
event
.
emit
(
'
npc_voice_play_voice_end
'
);
}
else
{
}
else
{
this
.
playVoiceStart
();
this
.
playVoiceStart
();
...
@@ -55,6 +58,7 @@ export default class LayerBack extends cc.Component {
...
@@ -55,6 +58,7 @@ export default class LayerBack extends cc.Component {
this
.
schedule
(
this
.
playVoiceRunning
,
0.3
)
this
.
schedule
(
this
.
playVoiceRunning
,
0.3
)
pg
.
audio
.
playAudioByUrl
(
this
.
npcAudio
,
()
=>
{
pg
.
audio
.
playAudioByUrl
(
this
.
npcAudio
,
()
=>
{
this
.
playVoiceEnd
();
this
.
playVoiceEnd
();
pg
.
view
.
visible
(
this
.
bg_forbid
,
false
)
pg
.
event
.
emit
(
'
npc_voice_play_voice_end
'
)
pg
.
event
.
emit
(
'
npc_voice_play_voice_end
'
)
},
(
audioId
)
=>
{
},
(
audioId
)
=>
{
this
.
audioId
=
audioId
;
this
.
audioId
=
audioId
;
...
@@ -87,3 +91,5 @@ export default class LayerBack extends cc.Component {
...
@@ -87,3 +91,5 @@ export default class LayerBack extends cc.Component {
}
}
assets/hy02_paopao/common/layer_ending/layer_ending_hy02_paopao.ts
View file @
08adcf58
...
@@ -21,7 +21,8 @@ export default class LayerEnding extends cc.Component {
...
@@ -21,7 +21,8 @@ export default class LayerEnding extends cc.Component {
pg
.
view
.
touchOn
(
this
.
replay_btn
,
this
.
onTouchReplay
,
this
)
pg
.
view
.
touchOn
(
this
.
replay_btn
,
this
.
onTouchReplay
,
this
)
pg
.
view
.
touchOn
(
this
.
next_btn
,
this
.
onTouchNext
,
this
)
pg
.
view
.
touchOn
(
this
.
next_btn
,
this
.
onTouchNext
,
this
)
pg
.
event
.
on
(
'
layer_ending_show
'
,
(
data
)
=>
{
pg
.
event
.
on
(
'
layer_ending_show
'
,
(
data
)
=>
{
this
.
showLayer
(
data
);
// this.showLayer(data);
this
.
onTouchNext
();
})
})
}
}
showLayer
(
data
)
{
showLayer
(
data
)
{
...
@@ -44,14 +45,24 @@ export default class LayerEnding extends cc.Component {
...
@@ -44,14 +45,24 @@ export default class LayerEnding extends cc.Component {
onTouchNext
()
{
onTouchNext
()
{
pg
.
view
.
visible
(
this
.
layer_center
,
false
)
pg
.
view
.
visible
(
this
.
layer_center
,
false
)
const
middleLayer
=
cc
.
find
(
'
middleLayer
'
);
const
middleLayer
=
cc
.
find
(
'
middleLayer
'
);
if
(
!
middleLayer
)
return
this
.
log
(
"
no middleLayer
"
);
const
middleLayerComponent
=
middleLayer
.
getComponent
(
'
middleLayer
'
);
const
middleLayerComponent
=
middleLayer
.
getComponent
(
'
middleLayer
'
);
const
{
index
,
length
}
=
middleLayerComponent
.
getPageInfo
();
// 返回 length:有多少页; index: 当前第几页(从0开始)
const
{
index
,
length
}
=
middleLayerComponent
.
getPageInfo
();
// 返回 length:有多少页; index: 当前第几页(从0开始)
this
.
log
(
"
跳转到下一页
"
);
if
(
index
==
length
-
1
)
{
if
(
index
==
length
-
1
)
{
middleLayerComponent
.
goNextCross
();
// 跳转到下一关卡
middleLayerComponent
.
goNextCross
();
// 跳转到下一关卡
}
else
{
}
else
{
middleLayerComponent
.
goNextPage
();
// 跳转到下一页
middleLayerComponent
.
goNextPage
();
// 跳转到下一页
}
}
}
}
log
(
str
)
{
const
node
=
cc
.
find
(
'
middleLayer
'
);
if
(
node
)
{
node
.
getComponent
(
'
middleLayer
'
).
log
(
str
);
}
else
{
cc
.
log
(
str
);
}
}
}
}
assets/hy02_paopao/common/script/Candy_hy02_paopao.ts
0 → 100644
View file @
08adcf58
// pg.event.emit('img_voice_play_voice_start')
// pg.event.emit('img_voice_play_voice_end')
import
pg
from
"
../../scene/tool/pg_hy02_paopao
"
;
const
{
ccclass
,
property
}
=
cc
.
_decorator
;
@
ccclass
export
default
class
Candy
extends
cc
.
Component
{
@
property
(
cc
.
Float
)
private
jumpHeight
:
number
=
80
;
@
property
(
cc
.
Boolean
)
private
isHide
:
boolean
=
false
;
onLoad
()
{
this
.
initView
();
this
.
playVoiceStart
();
}
initView
()
{
}
initEvent
()
{
// pg.event.on('img_voice_play_voice_start', () => {
// this.playVoiceStart();
// })
// pg.event.on('img_voice_play_voice_end', () => {
// })
}
private
playVoiceCount
:
number
;
playVoiceStart
()
{
this
.
node
.
children
.
forEach
((
ch
,
idx
)
=>
{
let
x
=
ch
.
x
;
let
y
=
ch
.
y
;
ch
.
x
=
0
;
ch
.
y
=
0
;
let
ju
=
cc
.
jumpBy
(
0.5
,
cc
.
v2
(
x
,
y
),
this
.
jumpHeight
,
1
);
let
call
=
cc
.
callFunc
(()
=>
{
if
(
idx
==
this
.
node
.
children
.
length
-
1
)
pg
.
event
.
emit
(
"
camdy_action_end
"
,
this
.
node
);
if
(
this
.
isHide
)
this
.
node
.
active
=
!
this
.
isHide
;
})
// ch.runAction(ju);
cc
.
tween
(
ch
).
sequence
(
ju
,
call
).
start
();
})
}
playVoiceRunning
()
{
}
}
assets/hy02_paopao/common/script/Candy_hy02_paopao.ts.meta
0 → 100644
View file @
08adcf58
{
"ver": "1.0.8",
"uuid": "28693845-7bc7-4258-b8e4-edc0125b4ead",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
assets/hy02_paopao/fonts/STYuanti-SC-Bold-03.ttf
0 → 100644
View file @
08adcf58
File added
assets/hy02_paopao/fonts/STYuanti-SC-Bold-03.ttf.meta
0 → 100644
View file @
08adcf58
{
"ver": "1.1.0",
"uuid": "31794732-3b0e-4ee4-9d36-bcf429614a2b",
"subMetas": {}
}
\ No newline at end of file
assets/hy02_paopao/scene/hy02_paopao.fire
View file @
08adcf58
...
@@ -90,22 +90,22 @@
...
@@ -90,22 +90,22 @@
"__id__": 56
"__id__": 56
},
},
{
{
"__id__": 7
3
"__id__": 7
7
},
},
{
{
"__id__": 9
5
"__id__": 9
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 13
4
"__id__": 13
8
},
},
{
{
"__id__": 13
5
"__id__": 13
9
},
},
{
{
"__id__": 1
36
"__id__": 1
40
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2093,8 +2093,10 @@
...
@@ -2093,8 +2093,10 @@
"_fontSize": 75,
"_fontSize": 75,
"_lineHeight": 85,
"_lineHeight": 85,
"_enableWrapText": true,
"_enableWrapText": true,
"_N$file": null,
"_N$file": {
"_isSystemFontUsed": true,
"__uuid__": "48969b30-fcda-4b40-958a-a59150c71e03"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_spacingX": 0,
"_batchAsBitmap": false,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_styleFlags": 0,
...
@@ -2713,15 +2715,18 @@
...
@@ -2713,15 +2715,18 @@
},
},
{
{
"__id__": 61
"__id__": 61
},
{
"__id__": 72
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 7
1
"__id__": 7
5
},
},
{
{
"__id__": 7
2
"__id__": 7
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2983,6 +2988,9 @@
...
@@ -2983,6 +2988,9 @@
"_components": [
"_components": [
{
{
"__id__": 70
"__id__": 70
},
{
"__id__": 71
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2997,7 +3005,7 @@
...
@@ -2997,7 +3005,7 @@
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width": 150.74,
"width": 150.74,
"height":
63
"height":
50
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -3446,9 +3454,196 @@
...
@@ -3446,9 +3454,196 @@
"_N$verticalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$overflow": 0,
"_N$cacheMode":
0
,
"_N$cacheMode":
2
,
"_id": "2dgZZlq5BHkIY+p4+7NMZS"
"_id": "2dgZZlq5BHkIY+p4+7NMZS"
},
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 61
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 274.52700000000004,
"_right": 0,
"_top": 73.89999999999998,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "f1rtxvmQlHsrRPWEieg/zy"
},
{
"__type__": "cc.Node",
"_name": "bg_forbid",
"_objFlags": 0,
"_parent": {
"__id__": 56
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 73
},
{
"__id__": 74
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1920,
"height": 1080
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "93v1OTrPZIaYYoYOsDJatH"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 72
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 0,
"transition": 0,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_N$normalSprite": null,
"_N$pressedSprite": null,
"pressedSprite": null,
"_N$hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": null,
"_id": "ab15uZn61PSJxzHVt+ND+8"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 72
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "bds251lD9I+oJyyDEBCIrE"
},
{
{
"__type__": "cc.Widget",
"__type__": "cc.Widget",
"_name": "",
"_name": "",
...
@@ -3495,20 +3690,20 @@
...
@@ -3495,20 +3690,20 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 7
4
"__id__": 7
8
},
},
{
{
"__id__":
88
"__id__":
92
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
3
"__id__": 9
7
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 9
4
"__id__": 9
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -3562,26 +3757,26 @@
...
@@ -3562,26 +3757,26 @@
"_name": "layout_center",
"_name": "layout_center",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
3
"__id__": 7
7
},
},
"_children": [
"_children": [
{
{
"__id__": 7
5
"__id__": 7
9
},
},
{
{
"__id__":
78
"__id__":
82
},
},
{
{
"__id__": 8
1
"__id__": 8
5
},
},
{
{
"__id__": 8
4
"__id__": 8
8
}
}
],
],
"_active": false,
"_active": false,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__":
87
"__id__":
91
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -3635,17 +3830,17 @@
...
@@ -3635,17 +3830,17 @@
"_name": "bg_gray",
"_name": "bg_gray",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
4
"__id__": 7
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
76
"__id__":
80
}
}
],
],
"_prefab": {
"_prefab": {
"__id__":
77
"__id__":
81
},
},
"_opacity": 102,
"_opacity": 102,
"_color": {
"_color": {
...
@@ -3699,7 +3894,7 @@
...
@@ -3699,7 +3894,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
5
"__id__": 7
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3729,7 +3924,7 @@
...
@@ -3729,7 +3924,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -3742,17 +3937,17 @@
...
@@ -3742,17 +3937,17 @@
"_name": "aniNode1",
"_name": "aniNode1",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
4
"__id__": 7
8
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
79
"__id__":
83
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 8
0
"__id__": 8
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -3806,7 +4001,7 @@
...
@@ -3806,7 +4001,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
78
"__id__":
82
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3844,7 +4039,7 @@
...
@@ -3844,7 +4039,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -3857,17 +4052,17 @@
...
@@ -3857,17 +4052,17 @@
"_name": "aniNode2",
"_name": "aniNode2",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
4
"__id__": 7
8
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 8
2
"__id__": 8
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 8
3
"__id__": 8
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -3921,7 +4116,7 @@
...
@@ -3921,7 +4116,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
1
"__id__": 8
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3957,7 +4152,7 @@
...
@@ -3957,7 +4152,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -3970,17 +4165,17 @@
...
@@ -3970,17 +4165,17 @@
"_name": "aniNode3",
"_name": "aniNode3",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
4
"__id__": 7
8
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 8
5
"__id__": 8
9
}
}
],
],
"_prefab": {
"_prefab": {
"__id__":
86
"__id__":
90
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4034,7 +4229,7 @@
...
@@ -4034,7 +4229,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
4
"__id__": 8
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4072,7 +4267,7 @@
...
@@ -4072,7 +4267,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -4083,7 +4278,7 @@
...
@@ -4083,7 +4278,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -4096,17 +4291,17 @@
...
@@ -4096,17 +4291,17 @@
"_name": "res",
"_name": "res",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 7
3
"__id__": 7
7
},
},
"_children": [
"_children": [
{
{
"__id__":
89
"__id__":
93
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 9
2
"__id__": 9
6
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4160,17 +4355,17 @@
...
@@ -4160,17 +4355,17 @@
"_name": "coin",
"_name": "coin",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
88
"__id__":
92
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
0
"__id__": 9
4
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 9
1
"__id__": 9
5
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4224,7 +4419,7 @@
...
@@ -4224,7 +4419,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
89
"__id__":
93
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -4241,7 +4436,7 @@
...
@@ -4241,7 +4436,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -4252,7 +4447,7 @@
...
@@ -4252,7 +4447,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -4265,7 +4460,7 @@
...
@@ -4265,7 +4460,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 7
3
"__id__": 7
7
},
},
"_enabled": true,
"_enabled": true,
"_id": "d4ZdiH7OpDIZqWGFcXl+tf"
"_id": "d4ZdiH7OpDIZqWGFcXl+tf"
...
@@ -4273,7 +4468,7 @@
...
@@ -4273,7 +4468,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 7
3
"__id__": 7
7
},
},
"asset": {
"asset": {
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
"__uuid__": "a9b135f6-de46-4257-8be2-55dc863ce747"
...
@@ -4290,20 +4485,20 @@
...
@@ -4290,20 +4485,20 @@
},
},
"_children": [
"_children": [
{
{
"__id__":
96
"__id__":
100
},
},
{
{
"__id__": 1
27
"__id__": 1
31
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 13
2
"__id__": 13
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 13
3
"__id__": 13
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4357,35 +4552,35 @@
...
@@ -4357,35 +4552,35 @@
"_name": "layer_center",
"_name": "layer_center",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
5
"__id__": 9
9
},
},
"_children": [
"_children": [
{
{
"__id__":
97
"__id__":
101
},
},
{
{
"__id__": 10
0
"__id__": 10
4
},
},
{
{
"__id__": 10
2
"__id__": 10
6
},
},
{
{
"__id__": 10
5
"__id__": 10
9
},
},
{
{
"__id__": 1
08
"__id__": 1
12
},
},
{
{
"__id__": 11
1
"__id__": 11
5
},
},
{
{
"__id__": 11
4
"__id__": 11
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 1
26
"__id__": 1
30
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4439,17 +4634,17 @@
...
@@ -4439,17 +4634,17 @@
"_name": "gray_cover",
"_name": "gray_cover",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
98
"__id__":
102
}
}
],
],
"_prefab": {
"_prefab": {
"__id__":
99
"__id__":
103
},
},
"_opacity": 102,
"_opacity": 102,
"_color": {
"_color": {
...
@@ -4503,7 +4698,7 @@
...
@@ -4503,7 +4698,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
97
"__id__":
101
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4533,7 +4728,7 @@
...
@@ -4533,7 +4728,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -4546,13 +4741,13 @@
...
@@ -4546,13 +4741,13 @@
"_name": "layer_middle",
"_name": "layer_middle",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 10
1
"__id__": 10
5
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4604,7 +4799,7 @@
...
@@ -4604,7 +4799,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -4617,17 +4812,17 @@
...
@@ -4617,17 +4812,17 @@
"_name": "replay_btn",
"_name": "replay_btn",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
3
"__id__": 10
7
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 10
4
"__id__": 10
8
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4681,7 +4876,7 @@
...
@@ -4681,7 +4876,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
2
"__id__": 10
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4711,7 +4906,7 @@
...
@@ -4711,7 +4906,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -4724,17 +4919,17 @@
...
@@ -4724,17 +4919,17 @@
"_name": "bg_light",
"_name": "bg_light",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
06
"__id__": 1
10
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
07
"__id__": 1
11
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4788,7 +4983,7 @@
...
@@ -4788,7 +4983,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
5
"__id__": 10
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4818,7 +5013,7 @@
...
@@ -4818,7 +5013,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -4831,17 +5026,17 @@
...
@@ -4831,17 +5026,17 @@
"_name": "finish_cat",
"_name": "finish_cat",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
09
"__id__": 1
13
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 11
0
"__id__": 11
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -4895,7 +5090,7 @@
...
@@ -4895,7 +5090,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
08
"__id__": 1
12
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4933,7 +5128,7 @@
...
@@ -4933,7 +5128,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -4946,17 +5141,17 @@
...
@@ -4946,17 +5141,17 @@
"_name": "next_btn",
"_name": "next_btn",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
2
"__id__": 11
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 11
3
"__id__": 11
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5010,7 +5205,7 @@
...
@@ -5010,7 +5205,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
1
"__id__": 11
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5040,7 +5235,7 @@
...
@@ -5040,7 +5235,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5053,27 +5248,27 @@
...
@@ -5053,27 +5248,27 @@
"_name": "finish_box",
"_name": "finish_box",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
96
"__id__":
100
},
},
"_children": [
"_children": [
{
{
"__id__": 11
5
"__id__": 11
9
},
},
{
{
"__id__": 1
18
"__id__": 1
22
},
},
{
{
"__id__": 12
1
"__id__": 12
5
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
4
"__id__": 12
8
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 12
5
"__id__": 12
9
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5127,17 +5322,17 @@
...
@@ -5127,17 +5322,17 @@
"_name": "result_text",
"_name": "result_text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
4
"__id__": 11
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
16
"__id__": 1
20
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 1
17
"__id__": 1
21
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5191,7 +5386,7 @@
...
@@ -5191,7 +5386,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
5
"__id__": 11
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5222,7 +5417,7 @@
...
@@ -5222,7 +5417,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5235,17 +5430,17 @@
...
@@ -5235,17 +5430,17 @@
"_name": "coin",
"_name": "coin",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
4
"__id__": 11
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
19
"__id__": 1
23
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 12
0
"__id__": 12
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5299,7 +5494,7 @@
...
@@ -5299,7 +5494,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
18
"__id__": 1
22
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5329,7 +5524,7 @@
...
@@ -5329,7 +5524,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5342,17 +5537,17 @@
...
@@ -5342,17 +5537,17 @@
"_name": "coin_num",
"_name": "coin_num",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 11
4
"__id__": 11
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 12
2
"__id__": 12
6
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 12
3
"__id__": 12
7
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5406,7 +5601,7 @@
...
@@ -5406,7 +5601,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 12
1
"__id__": 12
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5437,7 +5632,7 @@
...
@@ -5437,7 +5632,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5450,7 +5645,7 @@
...
@@ -5450,7 +5645,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
4
"__id__": 11
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5480,7 +5675,7 @@
...
@@ -5480,7 +5675,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5491,7 +5686,7 @@
...
@@ -5491,7 +5686,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5504,17 +5699,17 @@
...
@@ -5504,17 +5699,17 @@
"_name": "res",
"_name": "res",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
5
"__id__": 9
9
},
},
"_children": [
"_children": [
{
{
"__id__": 1
28
"__id__": 1
32
}
}
],
],
"_active": true,
"_active": true,
"_components": [],
"_components": [],
"_prefab": {
"_prefab": {
"__id__": 13
1
"__id__": 13
5
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5568,17 +5763,17 @@
...
@@ -5568,17 +5763,17 @@
"_name": "ending",
"_name": "ending",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
27
"__id__": 1
31
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 1
29
"__id__": 1
33
}
}
],
],
"_prefab": {
"_prefab": {
"__id__": 13
0
"__id__": 13
4
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -5632,7 +5827,7 @@
...
@@ -5632,7 +5827,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
28
"__id__": 1
32
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -5649,7 +5844,7 @@
...
@@ -5649,7 +5844,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5660,7 +5855,7 @@
...
@@ -5660,7 +5855,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5673,7 +5868,7 @@
...
@@ -5673,7 +5868,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
5
"__id__": 9
9
},
},
"_enabled": true,
"_enabled": true,
"_id": "03a4TpVrJNOYeDrHrNVjfe"
"_id": "03a4TpVrJNOYeDrHrNVjfe"
...
@@ -5681,7 +5876,7 @@
...
@@ -5681,7 +5876,7 @@
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 9
5
"__id__": 9
9
},
},
"asset": {
"asset": {
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
"__uuid__": "8944c192-3675-466f-9f94-8f824c68e822"
...
@@ -5757,10 +5952,10 @@
...
@@ -5757,10 +5952,10 @@
"__id__": 56
"__id__": 56
},
},
"layer_right": {
"layer_right": {
"__id__": 9
5
"__id__": 9
9
},
},
"layer_coin": {
"layer_coin": {
"__id__": 7
3
"__id__": 7
7
},
},
"_id": "dfknLfL6tLKoTV2dd1uvh+"
"_id": "dfknLfL6tLKoTV2dd1uvh+"
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment