Page 1 of 1

Loading screen and lobby music

Posted: Fri Jul 16, 2021 7:32 pm
by websbk
During the loading of the level, the music from the lobby is mixed with the music of the loading screen How can this be corrected so that there is only the music of the loading screen?

Re: Loading screen and lobby music

Posted: Sat Jul 17, 2021 7:08 pm
by Lovatto
This happens when loading the level from the Waiting Room or when join to a Room from the Room List or the Play button?
Try this:

in bl_Lobby.cs -> IEnumerator MoveToGameScene() -> add this line:

Code: Select all

if (bl_AudioController.Instance != null) { bl_AudioController.Instance.StopBackground(); }

Re: Loading screen and lobby music

Posted: Sat Jul 17, 2021 11:12 pm
by websbk
Lovatto wrote: Sat Jul 17, 2021 7:08 pm This happens when loading the level from the Waiting Room or when join to a Room from the Room List or the Play button?
Try this:

in bl_Lobby.cs -> IEnumerator MoveToGameScene() -> add this line:

Code: Select all

if (bl_AudioController.Instance != null) { bl_AudioController.Instance.StopBackground(); }
Thanks

Re: Loading screen and lobby music

Posted: Sat Jul 17, 2021 11:46 pm
by websbk
I checked, the music from the lobby is still not removed

Re: Loading screen and lobby music

Posted: Sun Jul 18, 2021 11:54 pm
by Lovatto
Can you describe to me the steps to reproduce the issue?
or a short video will be great.