Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
Lwd
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
Lwd
Commits
9c3aaba0
Commit
9c3aaba0
authored
Apr 01, 2021
by
Lwd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aaaa
parent
fb9c688e
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
4693 additions
and
1830 deletions
+4693
-1830
eff_welldown.anim
play/assets/tmpGame/effect/eff_welldown.anim
+803
-0
eff_welldown.anim.meta
play/assets/tmpGame/effect/eff_welldown.anim.meta
+5
-0
prefab.meta
play/assets/tmpGame/prefab.meta
+12
-0
node_eff.prefab
play/assets/tmpGame/prefab/node_eff.prefab
+1883
-0
node_eff.prefab.meta
play/assets/tmpGame/prefab/node_eff.prefab.meta
+8
-0
Game.fire
play/assets/tmpGame/scene/Game.fire
+1932
-1799
eff_welldown.js
play/assets/tmpGame/script/common/eff_welldown.js
+28
-0
eff_welldown.js.meta
play/assets/tmpGame/script/common/eff_welldown.js.meta
+9
-0
result.js
play/assets/tmpGame/script/game/result.js
+3
-21
btn_close.png
play/assets/tmpGame/textures/btn_close.png
+0
-0
btn_close.png.meta
play/assets/tmpGame/textures/btn_close.png.meta
+6
-6
circle_1.png
play/assets/tmpGame/textures/circle_1.png
+0
-0
circle_2.png
play/assets/tmpGame/textures/circle_2.png
+0
-0
circle_2.png.meta
play/assets/tmpGame/textures/circle_2.png.meta
+4
-4
No files found.
play/assets/tmpGame/effect/eff_welldown.anim
0 → 100644
View file @
9c3aaba0
This diff is collapsed.
Click to expand it.
play/assets/tmpGame/effect/eff_welldown.anim.meta
0 → 100644
View file @
9c3aaba0
{
"ver": "2.1.0",
"uuid": "ce2d6cce-f4b4-4f14-b57c-f026dc181a88",
"subMetas": {}
}
\ No newline at end of file
play/assets/tmpGame/prefab.meta
0 → 100644
View file @
9c3aaba0
{
"ver": "1.1.2",
"uuid": "a777fdf7-eb0b-41df-b0f7-ada8ed99b97d",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
play/assets/tmpGame/prefab/node_eff.prefab
0 → 100644
View file @
9c3aaba0
This diff is collapsed.
Click to expand it.
play/assets/tmpGame/prefab/node_eff.prefab.meta
0 → 100644
View file @
9c3aaba0
{
"ver": "1.2.9",
"uuid": "c020c4aa-c261-4e24-ae6e-a564a5bb6865",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}
\ No newline at end of file
play/assets/tmpGame/scene/Game.fire
View file @
9c3aaba0
This diff is collapsed.
Click to expand it.
play/assets/tmpGame/script/common/eff_welldown.js
0 → 100644
View file @
9c3aaba0
/**
* eff_welldown
*/
var
eff_well
=
cc
.
Class
({
extends
:
cc
.
Component
,
properties
:
{
eff_welldown
:
{
default
:
null
,
type
:
cc
.
Animation
,
displayName
:
"
撒花特效
"
},
},
ctor
:
function
()
{
eff_well
.
inst
=
this
;
g
.
eff_well
=
eff_well
;
},
//显示特效
showEff
:
function
()
{
this
.
node
.
active
=
true
;
this
.
eff_welldown
.
play
();
setTimeout
(()
=>
{
this
.
node
.
active
=
false
;
},
2000
)
}
});
play/assets/tmpGame/script/common/eff_welldown.js.meta
0 → 100644
View file @
9c3aaba0
{
"ver": "1.0.8",
"uuid": "872df374-a19c-4662-9d3d-1f85329b5d49",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
play/assets/tmpGame/script/game/result.js
View file @
9c3aaba0
...
@@ -12,11 +12,6 @@ var result = cc.Class({
...
@@ -12,11 +12,6 @@ var result = cc.Class({
type
:
cc
.
Node
,
type
:
cc
.
Node
,
displayName
:
"
图片
"
displayName
:
"
图片
"
},
},
wellDone
:
{
default
:
null
,
type
:
cc
.
Node
,
displayName
:
"
wellDone
"
},
frame_tips
:
{
frame_tips
:
{
default
:
null
,
default
:
null
,
type
:
cc
.
Node
,
type
:
cc
.
Node
,
...
@@ -27,11 +22,6 @@ var result = cc.Class({
...
@@ -27,11 +22,6 @@ var result = cc.Class({
type
:
cc
.
Label
,
type
:
cc
.
Label
,
displayName
:
"
标签
"
displayName
:
"
标签
"
},
},
eff_sahua
:
{
default
:
null
,
type
:
cc
.
Animation
,
displayName
:
"
撒花特效
"
},
Armature
:
{
Armature
:
{
default
:
null
,
default
:
null
,
type
:
dragonBones
.
ArmatureDisplay
,
type
:
dragonBones
.
ArmatureDisplay
,
...
@@ -69,21 +59,13 @@ var result = cc.Class({
...
@@ -69,21 +59,13 @@ var result = cc.Class({
}
}
this
.
initRichText
(
Info
.
groupLabel
);
this
.
initRichText
(
Info
.
groupLabel
);
this
.
wellDone
.
active
=
false
;
this
.
frame_tips
.
active
=
true
;
this
.
frame_tips
.
active
=
true
;
this
.
eff_sahua
.
node
.
active
=
false
;
}
}
else
{
else
{
//播放撒花动画
//播放撒花动画
this
.
eff_sahua
.
node
.
active
=
true
;
g
.
eff_well
.
inst
.
showEff
();
this
.
eff_sahua
.
play
();
this
.
wellDone
.
active
=
true
;
this
.
frame_tips
.
active
=
false
;
//播放撒花音效
//播放撒花音效
g
.
speaker
.
inst
.
play_congratulation
();
g
.
speaker
.
inst
.
play_congratulation
();
setTimeout
(()
=>
{
this
.
node
.
active
=
false
;
},
3000
)
}
}
},
},
...
@@ -182,7 +164,7 @@ var result = cc.Class({
...
@@ -182,7 +164,7 @@ var result = cc.Class({
if
(
g
.
data_mgr
.
temPlayAudio
.
length
<
1
)
{
if
(
g
.
data_mgr
.
temPlayAudio
.
length
<
1
)
{
if
(
g
.
data_mgr
.
pageId
==
g
.
data_mgr
.
data
.
contentObj
.
pageArr
.
length
-
1
)
{
if
(
g
.
data_mgr
.
pageId
==
g
.
data_mgr
.
data
.
contentObj
.
pageArr
.
length
-
1
)
{
//显示结算撒花
//显示结算撒花
g
.
game
.
inst
.
showResult
();
g
.
eff_well
.
inst
.
showEff
();
}
}
}
}
}
}
...
@@ -218,7 +200,7 @@ var result = cc.Class({
...
@@ -218,7 +200,7 @@ var result = cc.Class({
if
(
g
.
data_mgr
.
temPlayAudio
.
length
<
1
)
{
if
(
g
.
data_mgr
.
temPlayAudio
.
length
<
1
)
{
if
(
g
.
data_mgr
.
pageId
==
g
.
data_mgr
.
data
.
contentObj
.
pageArr
.
length
-
1
)
{
if
(
g
.
data_mgr
.
pageId
==
g
.
data_mgr
.
data
.
contentObj
.
pageArr
.
length
-
1
)
{
//显示结算撒花
//显示结算撒花
g
.
game
.
inst
.
showResult
();
g
.
eff_well
.
inst
.
showEff
();
}
}
this
.
End
=
false
;
this
.
End
=
false
;
}
else
{
}
else
{
...
...
play/assets/tmpGame/textures/btn_close.png
View replaced file @
fb9c688e
View file @
9c3aaba0
2.04 KB
|
W:
|
H:
4.53 KB
|
W:
|
H:
2-up
Swipe
Onion skin
play/assets/tmpGame/textures/btn_close.png.meta
View file @
9c3aaba0
...
@@ -7,8 +7,8 @@
...
@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"premultiplyAlpha": false,
"genMipmaps": false,
"genMipmaps": false,
"packable": true,
"packable": true,
"width":
6
0,
"width":
18
0,
"height":
64
,
"height":
192
,
"platformSettings": {},
"platformSettings": {},
"subMetas": {
"subMetas": {
"btn_close": {
"btn_close": {
...
@@ -22,10 +22,10 @@
...
@@ -22,10 +22,10 @@
"offsetY": 0,
"offsetY": 0,
"trimX": 0,
"trimX": 0,
"trimY": 0,
"trimY": 0,
"width":
6
0,
"width":
12
0,
"height":
64
,
"height":
128
,
"rawWidth":
6
0,
"rawWidth":
12
0,
"rawHeight":
64
,
"rawHeight":
128
,
"borderTop": 0,
"borderTop": 0,
"borderBottom": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderLeft": 0,
...
...
play/assets/tmpGame/textures/circle_1.png
View replaced file @
fb9c688e
View file @
9c3aaba0
49 KB
|
W:
|
H:
29.5 KB
|
W:
|
H:
2-up
Swipe
Onion skin
play/assets/tmpGame/textures/circle_2.png
View replaced file @
fb9c688e
View file @
9c3aaba0
31.6 KB
|
W:
|
H:
29.5 KB
|
W:
|
H:
2-up
Swipe
Onion skin
play/assets/tmpGame/textures/circle_2.png.meta
View file @
9c3aaba0
...
@@ -22,10 +22,10 @@
...
@@ -22,10 +22,10 @@
"offsetY": 0,
"offsetY": 0,
"trimX": 0,
"trimX": 0,
"trimY": 0,
"trimY": 0,
"width": 1
3
8,
"width": 1
4
8,
"height": 1
3
8,
"height": 1
4
8,
"rawWidth": 1
3
8,
"rawWidth": 1
4
8,
"rawHeight": 1
3
8,
"rawHeight": 1
4
8,
"borderTop": 0,
"borderTop": 0,
"borderBottom": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderLeft": 0,
...
...
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