29 lines
707 B
C#
29 lines
707 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Audio;
|
|
using System;
|
|
|
|
public class AudioManager : MonoBehaviour
|
|
{
|
|
public AudioSound[] clips;
|
|
// Start is called before the first frame update
|
|
public void Awake()
|
|
{
|
|
foreach (AudioSound c in clips)
|
|
{
|
|
c.source = gameObject.AddComponent<AudioSource>();
|
|
c.source.clip = c.clip;
|
|
c.source.volume = c.volume;
|
|
c.source.pitch = c.pitch;
|
|
}
|
|
}
|
|
|
|
// Update is called once per frame
|
|
public void Play(string name)
|
|
{
|
|
AudioSound s = Array.Find(clips, sound => sound.name == name);
|
|
s.source.Play();
|
|
}
|
|
}
|