Fixed error

This commit is contained in:
Slaith 2022-03-07 21:27:36 -08:00
parent c5ddefb686
commit 11b80f12de
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ namespace RhythmHeavenMania.Util
return audioSource; return audioSource;
} }
public static AudioSource PlayOneShotGame(string name, float beat = -1, bool forcePlay = false , float pitch = 1f, float volume = 1f, bool looping = false) public static AudioSource PlayOneShotGame(string name, float beat = -1, float pitch = 1f, float volume = 1f, bool looping = false, bool forcePlay = false)
{ {
if (GameManager.instance.currentGame == name.Split('/')[0] || forcePlay) if (GameManager.instance.currentGame == name.Split('/')[0] || forcePlay)
{ {
@ -97,7 +97,7 @@ namespace RhythmHeavenMania.Util
return null; return null;
} }
public static AudioSource PlayOneShotScheduledGame(string name, double targetTime, bool forcePlay = false, float pitch = 1f, float volume = 1f, bool looping = false) public static AudioSource PlayOneShotScheduledGame(string name, double targetTime, float pitch = 1f, float volume = 1f, bool looping = false, bool forcePlay = false)
{ {
if (GameManager.instance.currentGame == name.Split('/')[0] || forcePlay) if (GameManager.instance.currentGame == name.Split('/')[0] || forcePlay)
{ {