Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
babycare_xiaoxiao
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
翁阳
babycare_xiaoxiao
Commits
485b3e90
Commit
485b3e90
authored
Oct 12, 2020
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
按钮放反了
parent
28894b9f
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
103 additions
and
80 deletions
+103
-80
workspace.xml
.idea/workspace.xml
+28
-27
output.js
output.js
+11
-1
output.js.map
output.js.map
+1
-1
SuccessNoPrizePanel.ts
src/panels/SuccessNoPrizePanel.ts
+3
-0
TaskPanel.ts
src/panels/TaskPanel.ts
+2
-1
PlayScene.ts
src/scene/PlayScene.ts
+57
-49
MapScene.ts
src/scene/map/MapScene.ts
+1
-1
No files found.
.idea/workspace.xml
View file @
485b3e90
This diff is collapsed.
Click to expand it.
output.js
View file @
485b3e90
...
...
@@ -20889,6 +20889,9 @@ var SuccessStarGroup = (function (_super) {
var time2 = 100;
var max = 3;
var interval = 100;
if (count < 1) {
return;
}
Tween.get(this.leftStarEn)
.wait(wait)
.set({ scaleX: max, scaleY: max })
...
...
@@ -21307,11 +21310,12 @@ var TaskItem = (function (_super) {
});
break;
case TaskType.follow:
Main_1.GDispatcher.removeAllEventListenerByType(TaoBaoNet_1.TbNetName.favorShop);
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.favorShop, {}, function (fs, fr) {
if (!fs)
return;
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.doFollowTask, { taskType: _this.data.taskType }, function (cs, cr) { return Main_1.GDispatcher.dispatchEvent(G_EVENT_1.G_EVENT.UPDATE_TASK); });
});
}
, true
);
break;
case TaskType.invites:
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.addStats, { type: 'invite' });
...
...
@@ -23839,14 +23843,20 @@ var MusicBtn = (function (_super) {
if (isOn)
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.openMusic, { isOn: true });
Main_1.GDispatcher.addEventListener(G_EVENT_1.G_EVENT.ON_SHOW, _this.onShow, _this);
Main_1.GDispatcher.addEventListener(G_EVENT_1.G_EVENT.ON_HIDE, _this.onHide, _this);
return _this;
}
MusicBtn.prototype.onShow = function () {
if (isOn)
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.openMusic, { isOn: true });
};
MusicBtn.prototype.onHide = function () {
if (isOn)
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.openMusic, { isOn: false });
};
MusicBtn.prototype.destroy = function () {
Main_1.GDispatcher.removeEventListener(G_EVENT_1.G_EVENT.ON_SHOW, this.onShow, this);
Main_1.GDispatcher.removeEventListener(G_EVENT_1.G_EVENT.ON_HIDE, this.onHide, this);
TaoBaoNet_1.sendTbNet(TaoBaoNet_1.TbNetName.openMusic, { isOn: false });
_super.prototype.destroy.call(this);
};
output.js.map
View file @
485b3e90
This diff is collapsed.
Click to expand it.
src/panels/SuccessNoPrizePanel.ts
View file @
485b3e90
...
...
@@ -184,6 +184,9 @@ export class SuccessStarGroup extends Container {
const
time2
=
100
;
const
max
=
3
;
const
interval
=
100
;
if
(
count
<
1
)
{
return
;
}
Tween
.
get
(
this
.
leftStarEn
)
.
wait
(
wait
)
.
set
({
scaleX
:
max
,
scaleY
:
max
})
...
...
src/panels/TaskPanel.ts
View file @
485b3e90
...
...
@@ -270,13 +270,14 @@ class TaskItem extends Item {
});
break
;
case
TaskType
.
follow
:
GDispatcher
.
removeAllEventListenerByType
(
TbNetName
.
favorShop
);
sendTbNet
(
TbNetName
.
favorShop
,
{},
(
fs
,
fr
)
=>
{
if
(
!
fs
)
return
;
sendTbNet
(
TbNetName
.
doFollowTask
,
{
taskType
:
this
.
data
.
taskType
},
(
cs
,
cr
)
=>
GDispatcher
.
dispatchEvent
(
G_EVENT
.
UPDATE_TASK
)
);
}
}
,
true
);
break
;
case
TaskType
.
invites
:
...
...
src/scene/PlayScene.ts
View file @
485b3e90
This diff is collapsed.
Click to expand it.
src/scene/map/MapScene.ts
View file @
485b3e90
...
...
@@ -230,7 +230,7 @@ export class MapScene extends Scene {
// Tools.gameOver({
// level: 1,
// score: 666,
// stars:
2
,
// stars:
0
,
// isVisitSuccess: true,
// isPrizeLevel: false,
// // tool: {
...
...
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