Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sejong25
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Tear of Sejong
sejong25
Commits
ea644633
Commit
ea644633
authored
Aug 22, 2019
by
18김재민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
패배시 bgm 추가
parent
58f0c50f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
Client.js
js/Client.js
+1
-8
ScenesData.js
js/ScenesData.js
+3
-1
WordSpace.js
js/WordSpace.js
+9
-0
No files found.
js/Client.js
View file @
ea644633
...
...
@@ -207,14 +207,7 @@ socket.on('defeat', function(msg) // object player
let
nicknameText
=
RoomData
.
findPlayer
(
msg
.
id
).
nicknameText
;
let
earnedStrongHopae
=
RoomData
.
findPlayer
(
msg
.
id
).
earnedStrongHopae
;
if
(
WordSpace
.
CurrentPhase
==
1
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase1
'
);
if
(
WordSpace
.
CurrentPhase
==
2
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase2
'
);
if
(
WordSpace
.
CurrentPhase
==
3
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase3
'
);
Audio
.
playSound
(
ScenesData
.
gameScene
,
'
defeat
'
);
RoomData
.
players
[
msg
.
index
]
=
msg
;
RoomData
.
players
[
msg
.
index
].
playerImage
=
playerImage
;
RoomData
.
players
[
msg
.
index
].
position
=
position
;
...
...
js/ScenesData.js
View file @
ea644633
...
...
@@ -36,7 +36,9 @@ var menuScene = new Phaser.Class(
{
ResourceLoader
.
loadAnimation
(
this
);
BackGround
.
drawMenu
(
this
);
Audio
.
playSound
(
this
,
'
login
'
);
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
defeat
'
);
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
victory
'
);
Audio
.
loopSound
(
this
,
'
login
'
);
ScenesData
.
menuScene
.
tutorialFrame
=
0
;
ScenesData
.
menuScene
.
tutorialImage
=
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
/
2
,
game
.
config
.
height
/
2
,
11
,
'
tutorialImage
'
,
1
,
'
center
'
),
-
2
,
-
2
,
-
2
,
...
...
js/WordSpace.js
View file @
ea644633
...
...
@@ -218,6 +218,15 @@ function gameOver()
{
WordSpace
.
pauseCycle
(
true
);
if
(
WordSpace
.
CurrentPhase
==
1
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase1
'
);
if
(
WordSpace
.
CurrentPhase
==
2
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase2
'
);
if
(
WordSpace
.
CurrentPhase
==
3
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase3
'
);
Audio
.
playSound
(
ScenesData
.
gameScene
,
'
defeat
'
);
socket
.
emit
(
'
defeated
'
);
console
.
log
(
'
defeat
'
);
}
...
...
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