Add burning warning sound to stove
This commit is contained in:
parent
56893af14d
commit
aa5c673300
4 changed files with 6 additions and 45 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue