mirror of
https://github.com/frizbee19/FebGameJam.git
synced 2026-09-11 08:17:01 +00:00
20 lines
330 B
C#
20 lines
330 B
C#
using UnityEngine.Audio;
|
|
using UnityEngine;
|
|
[System.Serializable]
|
|
public class Sound
|
|
{
|
|
public string name;
|
|
public string output;
|
|
public AudioClip clip;
|
|
[Range(0f,1f)]
|
|
public float volume;
|
|
[Range(.1f,3f)]
|
|
public float pitch;
|
|
[HideInInspector]
|
|
public AudioSource source;
|
|
|
|
|
|
|
|
}
|
|
|