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
0be9638b
Commit
0be9638b
authored
Aug 23, 2019
by
18손재민
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/sound'
parents
f5e3d5b6
b0dea69e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
10 deletions
+13
-10
Client.js
js/Client.js
+1
-8
ScenesData.js
js/ScenesData.js
+3
-2
WordSpace.js
js/WordSpace.js
+9
-0
No files found.
js/Client.js
View file @
0be9638b
...
...
@@ -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 @
0be9638b
...
...
@@ -20,7 +20,6 @@ var menuScene = new Phaser.Class(
ResourceLoader
.
loadImage
(
this
);
CSVParsing
.
loadText
(
this
);
Audio
.
loadSound
(
this
);
this
.
load
.
scenePlugin
({
key
:
'
rexuiplugin
'
,
url
:
'
https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/master/plugins/dist/rexuiplugin.min.js
'
,
...
...
@@ -37,7 +36,7 @@ var menuScene = new Phaser.Class(
{
ResourceLoader
.
loadAnimation
(
this
);
BackGround
.
drawMenu
(
this
);
Audio
.
play
Sound
(
this
,
'
login
'
);
Audio
.
loop
Sound
(
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
,
...
...
@@ -662,6 +661,8 @@ var gameScene = new Phaser.Class(
ScenesData
.
changeScene
=
function
(
sceneKey
)
{
Audio
.
killSound
(
ScenesData
.
menuScene
,
'
login
'
);
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
victory
'
);
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
defeat
'
);
ScenesData
.
currentScene
.
scene
.
start
(
sceneKey
);
Input
.
input
=
[];
Input
.
converted
=
''
;
...
...
js/WordSpace.js
View file @
0be9638b
...
...
@@ -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