Firstborn/Assets/InfinityPBR/_InfinityPBR - Locks and Lo.../Scripts/LocksetAudio.cs
Schaken-Mods b8ab71969a Finished lockpicking, tied it to the Skills system
Finished lockpicking. tied it to the Attributes system. when you pick a lock you gain dexterity, the higher your dexterity, the easier it is to pick locks.
2023-05-05 22:02:18 -05:00

69 lines
1.3 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(AudioSource))]
public class LocksetAudio : MonoBehaviour
{
public AudioClip[] clips;
private AudioSource audioSource;
private float _delay;
public void Awake()
{
audioSource = GetComponent<AudioSource>();
}
public void PlayAudioClip(float volume = 0.5f)
{
if (clips.Length > 0)
{
SelectRandomClip();
audioSource.volume = volume;
audioSource.Play();
}
}
public void PlayOnce()
{
SelectRandomClip();
audioSource.PlayOneShot(audioSource.clip);
}
public void DelayPlay(float delay)
{
_delay = delay;
StartCoroutine("Delay");
}
public IEnumerator Delay()
{
yield return new WaitForSeconds(_delay);
PlayOnce();
}
public void PlayLoop()
{
if (!audioSource.isPlaying)
{
SelectRandomClip();
audioSource.Play();
}
}
public void StopLoop()
{
audioSource.Pause();
}
public void SelectRandomClip()
{
if (clips.Length > 0)
{
audioSource.clip = clips[Random.Range(0, clips.Length)];
}
}
}