Music bux fixes

This commit is contained in:
Ava Gaiety Wroten 2020-06-18 23:31:08 -05:00
parent 0ee8dcad77
commit 10d546a9e2

View file

@ -19,8 +19,8 @@ public class MusicStarter : MonoBehaviour
{
await Task.Delay(delayForSetup);
MusicManager m = GameObject.FindWithTag("MusicManager").GetComponent<MusicManager>();
m.StopOtherSongs();
await Task.Delay(delayForSetup - delay);
m.StopOtherSongs(songName);
await Task.Delay(delay);
m.PlaySong(songName);
}
}