mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-09 11:15:07 +00:00
fixed blue bear sound bug
This commit is contained in:
parent
44fb502df0
commit
479d67a056
3 changed files with 4 additions and 1 deletions
|
@ -556,7 +556,8 @@ namespace HeavenStudio.Games
|
|||
|
||||
public static void TreatSound(double beat, bool isCake)
|
||||
{
|
||||
SoundByte.PlayOneShot(isCake ? "games/blueBear/cake" : "games/blueBear/donut", beat);
|
||||
// Debug.Log("Playing Treat Sound on beat " + beat);
|
||||
SoundByte.PlayOneShotGame(isCake ? "blueBear/cake" : "blueBear/donut", beat, forcePlay: true);
|
||||
}
|
||||
|
||||
public void SquashBag(bool isCake)
|
||||
|
|
|
@ -351,6 +351,7 @@ namespace HeavenStudio.Util
|
|||
}
|
||||
|
||||
oneShotAudioSource.PlayOneShot(clip, volume);
|
||||
// Debug.Log("Played Sound");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -402,5 +402,6 @@ MonoBehaviour:
|
|||
- Assets/Scripts/Games/LoveLab/LoveLabHeartMisc.cs
|
||||
- Assets/Scripts/Games/LaunchParty/LaunchPartyRocket.cs
|
||||
- Assets/Scripts/Util/BeatAction.cs
|
||||
- Assets/Scripts/Games/FanClub/NtrIdolAri.cs
|
||||
PathsToSkipImportEvent: []
|
||||
PathsToIgnoreOverwriteSettingOnAttribute: []
|
||||
|
|
Loading…
Reference in a new issue