diff --git a/Assets/Script/Common/AudioManager.cs b/Assets/Script/Common/AudioManager.cs index 9e8c51c..017cccf 100644 --- a/Assets/Script/Common/AudioManager.cs +++ b/Assets/Script/Common/AudioManager.cs @@ -102,7 +102,7 @@ public class AudioManager : Singleton public void PlayClickSound() { - if (sfxAudioSource != null) + if (isPlaySFX && sfxAudioSource != null) { sfxAudioSource.PlayOneShot(clickSound, sfxVolume); } @@ -111,7 +111,7 @@ public class AudioManager : Singleton // 닫기 사운드(SFX) 재생 public void PlayCloseSound() { - if (sfxAudioSource != null) + if (isPlaySFX && sfxAudioSource != null) { sfxAudioSource.PlayOneShot(closeSound, sfxVolume); }