Add burning warning sound to stove

This commit is contained in:
BuyMyMojo 2023-03-04 09:29:20 +11:00
parent 56893af14d
commit aa5c673300
4 changed files with 6 additions and 45 deletions

View file

@ -85,6 +85,11 @@ public class SoundManager : MonoBehaviour
PlaySound(audioClipsRefsSO.warning, Vector3.zero);
}
public void PlayWarningSound(Vector3 position)
{
PlaySound(audioClipsRefsSO.warning, position);
}
public void ChangeVolume()
{
volume += .1f;