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
86d9732c
Commit
86d9732c
authored
Aug 23, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
사운드 잘 나오게 수정
parent
14d6b942
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
18 deletions
+11
-18
BGMsound.js
js/BGMsound.js
+5
-4
Client.js
js/Client.js
+2
-1
Input.js
js/Input.js
+1
-1
ScenesData.js
js/ScenesData.js
+0
-7
WordSpace.js
js/WordSpace.js
+3
-5
No files found.
js/BGMsound.js
View file @
86d9732c
...
...
@@ -23,18 +23,19 @@ Audio.loadSound = function(scene)
scene
.
load
.
audio
(
'
Phase3
'
,
'
assets/sound/Phase3.ogg
'
);
// 승패 BGM
scene
.
load
.
audio
(
'
defeat
'
,
'
assets/sound/victory.ogg
'
);
scene
.
load
.
audio
(
'
victory
'
,
'
assets/sound/defeat.ogg
'
);
scene
.
load
.
audio
(
'
victory
'
,
'
assets/sound/victory.ogg
'
);
scene
.
load
.
audio
(
'
defeat
'
,
'
assets/sound/defeat.ogg
'
);
}
Audio
.
playSound
=
function
(
scene
,
title
)
// 한 번만 재생할 때 사용
{
bgm
=
scene
.
sound
.
add
(
title
);
// 추후 수정 예정
bgm
.
play
();
let
sound
=
scene
.
sound
.
add
(
title
);
sound
.
play
();
}
Audio
.
loopSound
=
function
(
scene
,
title
)
// 반복재생할 때 사용
{
if
(
bgm
!=
null
)
this
.
killSound
(
scene
,
title
);
bgm
=
scene
.
sound
.
add
(
title
);
bgm
.
setLoop
(
true
);
bgm
.
play
();
...
...
js/Client.js
View file @
86d9732c
...
...
@@ -354,6 +354,7 @@ socket.on('defeat', function(msg) // object player
}
if
(
msg
.
id
==
RoomData
.
myself
.
id
)
{
Audio
.
loopSound
(
ScenesData
.
gameScene
,
'
defeat
'
);
RoomData
.
myself
=
RoomData
.
players
[
msg
.
index
];
setTimeout
(()
=>
{
gameEndMenu
(
false
);
...
...
@@ -371,10 +372,10 @@ socket.on('gameEnd', function(msg) // number winnerId
if
(
WordSpace
.
CurrentPhase
==
3
)
Audio
.
killSound
(
ScenesData
.
gameScene
,
'
Phase3
'
);
Audio
.
playSound
(
ScenesData
.
gameScene
,
'
victory
'
);
console
.
log
(
winner
.
nickname
+
'
Win!!!!!!
'
);
if
(
msg
==
RoomData
.
myself
.
id
)
{
Audio
.
loopSound
(
ScenesData
.
gameScene
,
'
victory
'
);
RoomData
.
myself
.
rank
=
1
;
setTimeout
(()
=>
{
gameEndMenu
(
true
);
...
...
js/Input.js
View file @
86d9732c
...
...
@@ -387,7 +387,7 @@ Input.inputField =
Input
.
pushInput
=
function
(
inputKey
)
{
if
(
(
ScenesData
.
currentScene
!=
'
gameScene
'
||
RoomData
.
myself
.
isAlive
)
&&
this
.
justPressed
!=
inputKey
)
if
(
!
WordSpace
.
isGameOver
&&
RoomData
.
myself
.
isAlive
&&
this
.
justPressed
!=
inputKey
)
{
this
.
justPressed
=
inputKey
;
let
output
;
...
...
js/ScenesData.js
View file @
86d9732c
...
...
@@ -600,13 +600,6 @@ var gameScene = new Phaser.Class(
BackGround
.
drawCharacter
(
this
);
Audio
.
playSound
(
this
,
'
startGame
'
);
if
(
WordSpace
.
CurrentPhase
==
1
)
Audio
.
loopSound
(
this
,
'
Phase1
'
);
else
if
(
WordSpace
.
CurrentPhase
==
2
)
Audio
.
loopSound
(
this
,
'
Phase2
'
);
else
Audio
.
loopSound
(
this
,
'
Phase3
'
);
WordSpace
.
attackPaperGroup
=
this
.
physics
.
add
.
group
();
WordSpace
.
wordPhysicsGroup
=
this
.
physics
.
add
.
group
();
...
...
js/WordSpace.js
View file @
86d9732c
...
...
@@ -224,8 +224,6 @@ function gameOver()
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
'
);
...
...
@@ -495,11 +493,11 @@ WordSpace.changePhase = function(newPhase)
WordSpace
.
CurrentPhase
=
newPhase
;
if
(
WordSpace
.
CurrentPhase
==
1
)
Audio
.
killSound
(
'
gameScene
'
,
'
Phase1
'
);
Audio
.
loopSound
(
ScenesData
.
currentScene
,
'
Phase1
'
);
else
if
(
WordSpace
.
CurrentPhase
==
2
)
Audio
.
killSound
(
'
gameScene
'
,
'
Phase2
'
);
Audio
.
loopSound
(
ScenesData
.
currentScene
,
'
Phase2
'
);
else
Audio
.
killSound
(
'
gameScene
'
,
'
Phase3
'
);
Audio
.
loopSound
(
ScenesData
.
currentScene
,
'
Phase3
'
);
//WordSpace.pauseCycle(true);
// 여기서 종이 드르륵 열면됨
...
...
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