Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xiaoxiaole
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
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
wildfirecode13
xiaoxiaole
Commits
04b776dc
Commit
04b776dc
authored
Apr 02, 2020
by
zjz1994
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab2.dui88.com/wanghongyuan/xiaoxiaole
into dev
parents
e1f2a46f
b03a492e
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
12 deletions
+14
-12
bonusTime.svga
egret/resource/assets/svgas/bonusTime.svga
+0
-0
MapSkin.exml
egret/resource/skins/MapSkin.exml
+1
-1
MainScene.ts
egret/src/mainScene/MainScene.ts
+1
-1
CountDown.ts
egret/src/mapScene/CountDown.ts
+10
-9
home.json
mock/happyclear/home.json
+2
-1
No files found.
egret/resource/assets/svgas/bonusTime.svga
View file @
04b776dc
No preview for this file type
egret/resource/skins/MapSkin.exml
View file @
04b776dc
...
...
@@ -43,7 +43,7 @@
</e:Skin>
</e:skinName>
</e:Button>
<e:Label
id=
"countdown"
text=
"00:00:00"
verticalAlign=
"middle"
textAlign=
"center"
size=
"
20
"
fontFamily=
"FZY4JW"
anchorOffsetX=
"0"
width=
"87"
anchorOffsetY=
"0"
height=
"37"
strokeColor=
"0x4365ac"
stroke=
"2"
verticalCenter=
"0.5"
horizontalCenter=
"-84.25"
/>
<e:Label
id=
"countdown"
text=
"00:00:00"
verticalAlign=
"middle"
textAlign=
"center"
size=
"
19
"
fontFamily=
"FZY4JW"
anchorOffsetX=
"0"
width=
"87"
anchorOffsetY=
"0"
height=
"37"
strokeColor=
"0x4365ac"
stroke=
"2"
verticalCenter=
"0.5"
horizontalCenter=
"-84.25"
/>
</e:Group>
<e:Button
id=
"shopBtn"
label=
""
x=
"613.08"
y=
"174.01"
visible=
"false"
>
<e:skinName>
...
...
egret/src/mainScene/MainScene.ts
View file @
04b776dc
...
...
@@ -1509,7 +1509,7 @@ export default class MainScene extends Scene {
this
.
eliminate
();
break
;
case
PropType
.
CHANCE_NUM
:
this
.
playAni
(
RecoverName
.
STEP_ANI
,
[
50
,
100
]);
this
.
playAni
(
RecoverName
.
STEP_ANI
,
[
120
,
125
]);
setTimeout
(()
=>
{
this
.
steps
+=
5
;
},
333
)
...
...
egret/src/mapScene/CountDown.ts
View file @
04b776dc
...
...
@@ -2,8 +2,9 @@ export default class CountDown extends egret.EventDispatcher {
_txt
:
eui
.
Label
;
_timer
:
egret
.
Timer
;
_func
;
_addspace
:
boolean
=
false
;
constructor
(
txt
?,
func
?,
addspace
=
false
)
{
_addspace
:
boolean
=
false
;
constructor
(
txt
?,
func
?,
addspace
=
false
)
{
super
();
this
.
_txt
=
txt
;
this
.
_func
=
func
;
...
...
@@ -24,12 +25,12 @@ export default class CountDown extends egret.EventDispatcher {
updateTxt
()
{
if
(
!
this
.
_txt
)
return
;
const
left
=
this
.
_timer
.
repeatCount
-
this
.
_timer
.
currentCount
;
const
h
=
Math
.
floor
(
left
/
3600
);
const
m
=
Math
.
floor
(
(
left
%
3600
)
/
60
);
const
h
=
Math
.
floor
(
left
/
3600
);
const
m
=
Math
.
floor
((
left
%
3600
)
/
60
);
const
s
=
left
%
3600
%
60
;
if
(
this
.
_addspace
){
if
(
this
.
_addspace
)
{
this
.
_txt
.
text
=
`
${
this
.
getNumber
(
h
)}
:
${
this
.
getNumber
(
m
)}
:
${
this
.
getNumber
(
s
)}
`
;
}
else
{
}
else
{
this
.
_txt
.
text
=
`
${
this
.
getNumber
(
h
)}
:
${
this
.
getNumber
(
m
)}
:
${
this
.
getNumber
(
s
)}
`
;
}
...
...
mock/happyclear/home.json
View file @
04b776dc
...
...
@@ -3029,8 +3029,9 @@
"num"
:
3
}
],
"remainEnargy"
:
99
,
"remainEnargy"
:
10
,
"askForEnergy"
:
false
,
"refectionCountdown"
:
77777
,
"canReceiveTreasureBoxNum"
:
10
,
"nextRangeStarsNum"
:
150
}
...
...
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