Commit c1079d7e authored by 18손재민's avatar 18손재민

Merge branch 'sound'

parents 9faf947b 14d6b942
......@@ -23,13 +23,13 @@ Audio.loadSound = function(scene)
scene.load.audio('Phase3', 'assets/sound/Phase3.ogg');
// 승패 BGM
scene.load.audio('victory', 'assets/sound/victory.ogg');
scene.load.audio('defeat', 'assets/sound/defeat.ogg');
scene.load.audio('defeat', 'assets/sound/victory.ogg');
scene.load.audio('victory', 'assets/sound/defeat.ogg');
}
Audio.playSound = function(scene, title) // 한 번만 재생할 때 사용
{
bgm = scene.sound.add(title);
bgm = scene.sound.add(title); // 추후 수정 예정
bgm.play();
}
......@@ -56,3 +56,4 @@ Audio.killSound = function(scene, title)
bgm.stop();
}
// 전반적으로 함수 수정 필요..
\ No newline at end of file
......@@ -661,8 +661,11 @@ var gameScene = new Phaser.Class(
ScenesData.changeScene = function(sceneKey)
{
Audio.killSound(ScenesData.menuScene, 'login');
Audio.killSound(ScenesData.gameScene, 'victory');
Audio.killSound(ScenesData.gameScene, 'defeat');
Audio.killSound(ScenesData.currentScene, 'victory');
Audio.killSound(ScenesData.currentScene, 'defeat');
// Audio.killSound(ScenesData.gameScene, 'victory');
// Audio.killSound(ScenesData.gameScene, 'defeat');
ScenesData.currentScene.scene.start(sceneKey);
Input.input = [];
Input.converted = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment