코스모스 공작소

[Unity] 사운드 재생중 사운드 세팅 변경시 사운드 미출력 본문

프로그래밍/Unity

[Unity] 사운드 재생중 사운드 세팅 변경시 사운드 미출력

cosmos_studio_ 2022. 12. 9. 10:56
반응형
 

Unity - Scripting API: AudioSettings.OnAudioConfigurationChanged

Description A delegate called whenever the global audio settings are changed, either by AudioSettings.Reset or by an external factor such as the OS control panel changing the sample rate or because the default output device was changed, for example when pl

docs.unity3d.com

  • 위 핸들러는 사운드 세팅이 변경될때 호출되는 콜백으로 적절하게 넣어서 사용
AudioSettings.OnAudioConfigurationChanged += (changed) =>  // changed : 장치 변경으로 인한 것이면  true
        {
            Debug.Log("Change!");
						// 사운드 로직 구성 
        };

 

관련 Unity IssueTraker

https://issuetracker.unity3d.com/issues/android-audio-stops-playing-after-a-bluetooth-speaker-is-connected-to-the-device

 

Unity IssueTracker - [Android] Audio stops playing after a bluetooth speaker is connected to the device

Repro steps: 1. Open attached project 2. Build and Run on Android 3. Notice the sound playing in the app 4. Connect a bluetooth spea...

issuetracker.unity3d.com

 

반응형
Comments