Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TNGD_CaveCruiser
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
SparkProjects
TNGD_CaveCruiser
Commits
54c29096
Commit
54c29096
authored
Sep 13, 2024
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
上传
parent
82aa9001
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
896 additions
and
189 deletions
+896
-189
MainGame.scene
assets/Bundles/MainGame/MainGame.scene
+2
-2
ManGame.pac.meta
assets/Bundles/MainGame/png/ManGame.pac.meta
+2
-2
GameMgr.ts
assets/Scripts/GameMgr.ts
+7
-2
NoPrizePanel.ts
assets/Scripts/Panels/NoPrizePanel.ts
+8
-1
GuideScene.scene
assets/resources/GuideScene/GuideScene.scene
+2
-2
guide2top.png
assets/resources/GuideScene/png/guide2top.png
+0
-0
guide2top.png.meta
assets/resources/GuideScene/png/guide2top.png.meta
+10
-10
NoPrizePanel.prefab
assets/resources/NoPrizePanel/NoPrizePanel.prefab
+731
-170
bg.png
assets/resources/NoPrizePanel/img/bg.png
+0
-0
box.png
assets/resources/NoPrizePanel/img/box.png
+0
-0
box.png.meta
assets/resources/NoPrizePanel/img/box.png.meta
+134
-0
No files found.
assets/Bundles/MainGame/MainGame.scene
View file @
54c29096
...
...
@@ -343,7 +343,7 @@
"__prefab": null,
"_contentSize": {
"__type__": "cc.Size",
"width":
110.66395568847656
,
"width":
96.26396179199219
,
"height": 45.36
},
"_anchorPoint": {
...
...
@@ -373,7 +373,7 @@
"b": 255,
"a": 255
},
"_string": "
scores
",
"_string": "
Score
",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 36,
...
...
assets/Bundles/MainGame/png/ManGame.pac.meta
View file @
54c29096
...
...
@@ -8,8 +8,8 @@
],
"subMetas": {},
"userData": {
"maxWidth":
4096
,
"maxHeight":
4096
,
"maxWidth":
2048
,
"maxHeight":
2048
,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
...
...
assets/Scripts/GameMgr.ts
View file @
54c29096
...
...
@@ -69,9 +69,14 @@ export default class GameMgr {
hideWaiting
();
if
(
!
success
)
{
changeScene
(
HomeScene
);
// changeScene(HomeScene);
showPanel
(
NoPrizePanel
,
{
highest
:
score
,
score
,
isError
:
true
,
});
return
false
;
}
...
...
assets/Scripts/Panels/NoPrizePanel.ts
View file @
54c29096
...
...
@@ -19,6 +19,10 @@ export default class NoPrizePanel extends Panel {
@
property
(
Label
)
scoreLabel
:
Label
=
null
;
@
property
(
Label
)
highestLabel
:
Label
=
null
;
@
property
(
Node
)
box
:
Node
=
null
;
@
property
(
Node
)
errorTip
:
Node
=
null
;
onLoad
()
{
this
.
closeBtn
.
on
(
Button
.
EventType
.
CLICK
,
this
.
onClose
,
this
);
this
.
againBtn
.
on
(
Button
.
EventType
.
CLICK
,
this
.
clickAgain
,
this
);
...
...
@@ -26,10 +30,13 @@ export default class NoPrizePanel extends Panel {
}
async
start
()
{
const
{
highest
,
score
}
=
this
.
data
;
const
{
highest
,
score
,
isError
}
=
this
.
data
;
this
.
highestLabel
.
string
=
highest
;
this
.
scoreLabel
.
string
=
score
;
this
.
box
.
active
=
!
isError
;
this
.
errorTip
.
active
=
isError
;
}
clickRank
=
()
=>
{
...
...
assets/resources/GuideScene/GuideScene.scene
View file @
54c29096
...
...
@@ -402,7 +402,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 113,
"height": 1
35
"height": 1
41
},
"_anchorPoint": {
"__type__": "cc.Vec2",
...
...
@@ -1030,7 +1030,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 113,
"height": 1
35
"height": 1
41
},
"_anchorPoint": {
"__type__": "cc.Vec2",
...
...
assets/resources/GuideScene/png/guide2top.png
View replaced file @
82aa9001
View file @
54c29096
3.46 KB
|
W:
|
H:
3.5 KB
|
W:
|
H:
2-up
Swipe
Onion skin
assets/resources/GuideScene/png/guide2top.png.meta
View file @
54c29096
...
...
@@ -47,9 +47,9 @@
"trimX": 0,
"trimY": 0,
"width": 113,
"height": 1
35
,
"height": 1
41
,
"rawWidth": 113,
"rawHeight": 1
35
,
"rawHeight": 1
41
,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
...
...
@@ -62,16 +62,16 @@
"vertices": {
"rawPosition": [
-56.5,
-
67
.5,
-
70
.5,
0,
56.5,
-
67
.5,
-
70
.5,
0,
-56.5,
67
.5,
70
.5,
0,
56.5,
67
.5,
70
.5,
0
],
"indexes": [
...
...
@@ -84,9 +84,9 @@
],
"uv": [
0,
1
35
,
1
41
,
113,
1
35
,
1
41
,
0,
0,
113,
...
...
@@ -104,12 +104,12 @@
],
"minPos": [
-56.5,
-
67
.5,
-
70
.5,
0
],
"maxPos": [
56.5,
67
.5,
70
.5,
0
]
},
...
...
assets/resources/NoPrizePanel/NoPrizePanel.prefab
View file @
54c29096
...
...
@@ -34,20 +34,26 @@
"__id__": 32
},
{
"__id__": 42
"__id__": 48
},
{
"__id__": 58
},
{
"__id__": 68
}
],
"_active": true,
"_components": [
{
"__id__":
52
"__id__":
74
},
{
"__id__":
54
"__id__":
76
}
],
"_prefab": {
"__id__":
56
"__id__":
78
},
"_lpos": {
"__type__": "cc.Vec3",
...
...
@@ -277,7 +283,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": -110.077,
"y": 3
38.768
,
"y": 3
69.327
,
"z": 0
},
"_lrot": {
...
...
@@ -439,7 +445,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": 103.5,
"y": 3
38.768
,
"y": 3
69.327
,
"z": 0
},
"_lrot": {
...
...
@@ -813,35 +819,83 @@
},
{
"__type__": "cc.Node",
"_name": "
rank
",
"_name": "
box
",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
"_children": [
{
"__id__": 33
},
{
"__id__": 35
},
"__id__": 39
}
],
"_active": true,
"_components": [
{
"__id__": 45
}
],
"_prefab": {
"__id__": 47
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "box",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 32
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
7
"__id__": 3
4
},
{
"__id__": 3
9
"__id__": 3
6
}
],
"_prefab": {
"__id__":
41
"__id__":
38
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y":
-266
,
"y":
70
,
"z": 0
},
"_lrot": {
...
...
@@ -873,16 +927,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 3
2
"__id__": 3
3
},
"_enabled": true,
"__prefab": {
"__id__": 3
4
"__id__": 3
5
},
"_contentSize": {
"__type__": "cc.Size",
"width": 3
38
,
"height":
101
"width": 3
04
,
"height":
244
},
"_anchorPoint": {
"__type__": "cc.Vec2",
...
...
@@ -893,7 +947,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "
abrILF461IHLR9vLSL+vMk
"
"fileId": "
6a5j8IzGpJtrADadyN5spU
"
},
{
"__type__": "cc.Sprite",
...
...
@@ -901,11 +955,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 3
2
"__id__": 3
3
},
"_enabled": true,
"__prefab": {
"__id__": 3
6
"__id__": 3
7
},
"_customMaterial": null,
"_srcBlendFactor": 2,
...
...
@@ -918,7 +972,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "
316f091a-9765-45a5-b4ad-96bc41e52976
@f9941",
"__uuid__": "
14037985-f5f2-424b-a8ad-32376f086989
@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
...
...
@@ -938,99 +992,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1vtn0gJtDMY783oJj91sa"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 32
},
"_enabled": true,
"__prefab": {
"__id__": 38
},
"_alignFlags": 17,
"_target": null,
"_left": 109.5,
"_right": 0,
"_top": 1027.5,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aeo0UcWUZD4IxJ0HttJwip"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 32
},
"_enabled": true,
"__prefab": {
"__id__": 40
},
"clickEvents": [],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.05,
"_zoomScale": 0.9,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4a29p4UDxHaq06kHXiJU1z"
"fileId": "12vRoY5mtLYZzpfCL05PnS"
},
{
"__type__": "cc.PrefabInfo",
...
...
@@ -1040,42 +1002,36 @@
"asset": {
"__id__": 0
},
"fileId": "
ddAPlQNrpOwYcWrjIyaaaX
",
"fileId": "
32eld1bqVJkqj7GJ3gbPEx
",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "
close
",
"_name": "
Label
",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__":
1
"__id__":
32
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 4
3
"__id__": 4
0
},
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
"__id__": 42
}
],
"_prefab": {
"__id__":
51
"__id__":
44
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y":
-518.508
,
"y":
230.89599999999996
,
"z": 0
},
"_lrot": {
...
...
@@ -1107,16 +1063,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__":
42
"__id__":
39
},
"_enabled": true,
"__prefab": {
"__id__": 4
4
"__id__": 4
1
},
"_contentSize": {
"__type__": "cc.Size",
"width":
79
,
"height":
79
"width":
245.95399475097656
,
"height":
34.208999999999996
},
"_anchorPoint": {
"__type__": "cc.Vec2",
...
...
@@ -1127,19 +1083,19 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "
7cjMRGKp1JQ61po77GlWva
"
"fileId": "
c0N9jlesdOOagp3jLJXaVq
"
},
{
"__type__": "cc.
Sprite
",
"__type__": "cc.
Label
",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__":
42
"__id__":
39
},
"_enabled": true,
"__prefab": {
"__id__": 4
6
"__id__": 4
3
},
"_customMaterial": null,
"_srcBlendFactor": 2,
...
...
@@ -1151,49 +1107,489 @@
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "ad97e5f2-485d-4ebb-a1ef-a63c1c32115a@f9941",
"__expectedType__": "cc.SpriteFrame"
"_string": "Better luck next time",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 27.15,
"_fontSize": 27.15,
"_fontFamily": "Arial",
"_lineHeight": 27.15,
"_overflow": 0,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_fillCenter": {
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x":
0
,
"y":
0
"x":
2
,
"y":
2
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "
efSwtcYzhCi4Ke4PD3X1oJ
"
"fileId": "
2fbt/gre5EnZ7DAJ8EVM71
"
},
{
"__type__": "cc.Widget",
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "79ohZTHe5K6KEZSLGkxH/u",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__":
4
2
"__id__":
3
2
},
"_enabled": true,
"__prefab": {
"__id__": 4
8
"__id__": 4
6
},
"_alignFlags": 17,
"_target": null,
"_left": 335.5,
"_right": 0,
"_top": 1291.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "dcMjr96NtDBquGbQ0P96J5"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "ebTp2VJqVH7KuPBQlkeKsE",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rank",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -266,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 48
},
"_enabled": true,
"__prefab": {
"__id__": 50
},
"_contentSize": {
"__type__": "cc.Size",
"width": 338,
"height": 101
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "abrILF461IHLR9vLSL+vMk"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 48
},
"_enabled": true,
"__prefab": {
"__id__": 52
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "316f091a-9765-45a5-b4ad-96bc41e52976@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1vtn0gJtDMY783oJj91sa"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 48
},
"_enabled": true,
"__prefab": {
"__id__": 54
},
"_alignFlags": 17,
"_target": null,
"_left": 109.5,
"_right": 0,
"_top": 1027.5,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aeo0UcWUZD4IxJ0HttJwip"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 48
},
"_enabled": true,
"__prefab": {
"__id__": 56
},
"clickEvents": [],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.05,
"_zoomScale": 0.9,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4a29p4UDxHaq06kHXiJU1z"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "ddAPlQNrpOwYcWrjIyaaaX",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "close",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 59
},
{
"__id__": 61
},
{
"__id__": 63
},
{
"__id__": 65
}
],
"_prefab": {
"__id__": 67
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -518.508,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 58
},
"_enabled": true,
"__prefab": {
"__id__": 60
},
"_contentSize": {
"__type__": "cc.Size",
"width": 79,
"height": 79
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "7cjMRGKp1JQ61po77GlWva"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 58
},
"_enabled": true,
"__prefab": {
"__id__": 62
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "ad97e5f2-485d-4ebb-a1ef-a63c1c32115a@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "efSwtcYzhCi4Ke4PD3X1oJ"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 58
},
"_enabled": true,
"__prefab": {
"__id__": 64
},
"_alignFlags": 17,
"_target": null,
"_left": 335.5,
"_right": 0,
"_top": 1291.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
...
...
@@ -1216,11 +1612,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__":
42
"__id__":
58
},
"_enabled": true,
"__prefab": {
"__id__":
50
"__id__":
66
},
"clickEvents": [],
"_interactable": true,
...
...
@@ -1279,6 +1675,165 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "errorTip",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 69
},
{
"__id__": 71
}
],
"_prefab": {
"__id__": 73
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 68.079,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 68
},
"_enabled": true,
"__prefab": {
"__id__": 70
},
"_contentSize": {
"__type__": "cc.Size",
"width": 423.998046875,
"height": 143.44
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a2KHIiaeNEQI7nj5i0+PsK"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 68
},
"_enabled": true,
"__prefab": {
"__id__": 72
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_string": "System exception.\nYou can check the coupon pack later\nto see i",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 26,
"_fontSize": 26,
"_fontFamily": "Arial",
"_lineHeight": 44,
"_overflow": 0,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "75SpfhVptECpU7fhvoO/oc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "b4jVSyXyNI+oD306BtBLaw",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
...
...
@@ -1289,7 +1844,7 @@
},
"_enabled": true,
"__prefab": {
"__id__":
53
"__id__":
75
},
"_contentSize": {
"__type__": "cc.Size",
...
...
@@ -1317,16 +1872,16 @@
},
"_enabled": true,
"__prefab": {
"__id__":
55
"__id__":
77
},
"closeBtn": {
"__id__":
42
"__id__":
58
},
"againBtn": {
"__id__": 22
},
"rankBtn": {
"__id__":
32
"__id__":
48
},
"scoreLabel": {
"__id__": 13
...
...
@@ -1334,6 +1889,12 @@
"highestLabel": {
"__id__": 19
},
"box": {
"__id__": 32
},
"errorTip": {
"__id__": 68
},
"_id": ""
},
{
...
...
assets/resources/NoPrizePanel/img/bg.png
View replaced file @
82aa9001
View file @
54c29096
232 KB
|
W:
|
H:
154 KB
|
W:
|
H:
2-up
Swipe
Onion skin
assets/resources/NoPrizePanel/img/box.png
0 → 100644
View file @
54c29096
88.6 KB
assets/resources/NoPrizePanel/img/box.png.meta
0 → 100644
View file @
54c29096
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "14037985-f5f2-424b-a8ad-32376f086989",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "14037985-f5f2-424b-a8ad-32376f086989@6c48a",
"displayName": "box",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "14037985-f5f2-424b-a8ad-32376f086989",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "14037985-f5f2-424b-a8ad-32376f086989@f9941",
"displayName": "box",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 304,
"height": 244,
"rawWidth": 304,
"rawHeight": 244,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-152,
-122,
0,
152,
-122,
0,
-152,
122,
0,
152,
122,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
244,
304,
244,
0,
0,
304,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-152,
-122,
0
],
"maxPos": [
152,
122,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "14037985-f5f2-424b-a8ad-32376f086989@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "14037985-f5f2-424b-a8ad-32376f086989@6c48a"
}
}
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